/* Crazy Secret Complete Store Theme */
:root {
    --white: #ffffff;
    --bg: #fff8fa;
    --cream: #fffdf9;
    --blue: #cfe1f3;
    --pink: #f7c9d8;
    --rose: #efa7b7;
    --peach: #f4c7b3;
    --gold: #c9a45c;
    --gold-light: #ead7a0;
    --text: #3f3a3a;
    --muted: #8b7b80;
    --border: #f0dde3;
    --danger: #d94b63;
    --success: #62b77c;
    --shadow: 0 15px 35px rgba(201, 164, 92, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #ffffff, var(--bg), #fff2ee);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.header {
    padding: 14px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.logo-title {
    font-family: Georgia, serif;
    font-size: 27px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-title span {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: white;
    padding: 10px 13px;
    border-radius: 14px;
    font-weight: 900;
    color: var(--text);
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav a {
    font-weight: 750;
    color: var(--text);
    font-size: 15px;
}

.nav a:hover {
    color: var(--gold);
}

.cart-link {
    background: linear-gradient(135deg, var(--rose), var(--peach));
    color: white !important;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(239,167,183,.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 62px;
}

.cart-badge {
    background: white;
    color: var(--rose);
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.hero {
    min-height: 78vh;
    padding: 68px 7%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 850;
    font-size: 13px;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.04;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--rose);
}

.hero p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-card {
    background: rgba(255,255,255,.78);
    border: 1px solid var(--border);
    border-radius: 38px;
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hero-card img {
    width: 100%;
    max-width: 440px;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--peach));
    color: white;
    font-weight: 850;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(239,167,183,.34);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--text);
    border: 1px solid var(--gold-light);
    box-shadow: none;
    margin-left: 10px;
}

.btn-danger {
    background: var(--danger);
}

.btn-block {
    width: 100%;
}

.section {
    padding: 75px 7%;
}

.section-head {
    text-align: center;
    margin-bottom: 42px;
}

.section-head h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-family: Georgia, serif;
}

.section-head p {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 850;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 26px;
}

.product-card {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(239,167,183,.13);
    transition: .25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-card img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    background: #fff8fa;
    padding: 12px;
}

.product-body {
    padding: 20px;
}

.product-body h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.category {
    color: var(--muted);
    margin-bottom: 10px;
}

.price {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.single {
    padding: 80px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.single-img {
    background: white;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.single-img img {
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    border-radius: 26px;
    background: #fff8fa;
}

.single-info {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 35px;
}

.single-info h1 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 5vw, 44px);
    margin-bottom: 14px;
}

.single-price {
    color: var(--gold);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.qty-row input {
    width: 90px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.page-card {
    background: rgba(255,255,255,.94);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 28px;
    align-items: start;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.cart-table th {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 13px;
}

.cart-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--pink));
}

.cart-qty {
    width: 75px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.summary-box {
    position: sticky;
    top: 110px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    color: var(--muted);
}

.summary-total {
    border-top: 1px solid var(--border);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full {
    grid-column: span 2;
}

label {
    margin-bottom: 8px;
    color: var(--muted);
    font-weight: 800;
}

label span {
    color: var(--danger);
}

input,
textarea,
select {
    border: 1px solid var(--border);
    background: white;
    padding: 13px;
    border-radius: 15px;
    outline: none;
    color: var(--text);
    font-size: 15px;
}

textarea {
    min-height: 110px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,164,92,.12);
}

.payment-option {
    border: 1px solid var(--border);
    background: white;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment-option strong {
    display: block;
    margin-bottom: 4px;
}

.payment-option p {
    color: var(--muted);
    font-size: 14px;
}

.success-box {
    text-align: center;
    max-width: 720px;
    margin: 70px auto;
}

.success-box h1 {
    font-family: Georgia, serif;
    font-size: 46px;
    margin-bottom: 15px;
}

.order-number {
    color: var(--gold);
    font-weight: 900;
    font-size: 24px;
}

.empty {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    color: var(--muted);
}

.footer {
    padding: 35px 7%;
    text-align: center;
    background: white;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

@media(max-width: 980px) {
    .cart-layout,
    .checkout-layout,
    .single,
    .hero {
        grid-template-columns: 1fr;
    }

    .summary-box {
        position: static;
    }

    .hero {
        text-align: center;
        padding-top: 48px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width: 760px) {
    .header {
        padding: 12px 5%;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
        margin-top: 12px;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 14px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        background: white;
        border: 1px solid var(--border);
        padding: 12px;
        border-radius: 14px;
        text-align: center;
    }

    .header {
        flex-wrap: wrap;
    }

    .logo-box img {
        width: 58px;
        height: 58px;
    }

    .logo-title {
        font-size: 23px;
    }

    .section,
    .single {
        padding: 45px 5%;
    }

    .hero {
        min-height: auto;
        padding: 45px 5%;
    }

    .hero-card {
        padding: 22px;
        border-radius: 28px;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .product-card {
        border-radius: 22px;
    }

    .product-card img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    background: #fff8fa;
    padding: 12px;
}

    .product-body {
        padding: 15px;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }

    .page-card {
        padding: 20px;
        border-radius: 24px;
    }
}

@media(max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    background: #fff8fa;
    padding: 12px;
}

    .single-info {
        padding: 24px;
        border-radius: 26px;
    }

    .cart-table {
        min-width: 610px;
    }

    .hero h1 {
        font-size: 38px;
    }
}


/* ===== FINAL CLIENT MOBILE RESPONSIVENESS FIXES ===== */
.muted-text {
    color: var(--muted);
    line-height: 1.6;
}

@media(max-width: 760px) {
    body {
        background: linear-gradient(135deg, #fff, #fff8fa, #fff5f1);
    }

    .header {
        padding: 10px 4%;
        align-items: center;
    }

    .logo-box {
        max-width: calc(100% - 82px);
    }

    .logo-box img {
        width: 52px;
        height: 52px;
    }

    .logo-title {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
        margin-top: 6px;
        margin-left: auto;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 12px;
    }

    .nav.open {
        display: flex;
    }

    .nav a,
    .cart-link {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 13px;
        border-radius: 15px;
    }

    .hero {
        padding: 34px 5%;
        min-height: auto;
        gap: 25px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-card {
        padding: 18px;
        border-radius: 24px;
    }

    .section {
        padding: 38px 5%;
    }

    .section-head {
        margin-bottom: 24px;
    }

    .section-head h2 {
        font-size: 30px;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-card img {
        height: 220px;
        padding: 10px;
        object-fit: contain;
    }

    .product-body {
        padding: 13px;
    }

    .product-body h3 {
        font-size: 16px;
    }

    .category {
        font-size: 13px;
    }

    .price {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .product-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .btn,
    .btn-outline {
        width: 100%;
        margin: 0;
        padding: 12px 14px;
        font-size: 14px;
    }

    .single {
        padding: 35px 5%;
        gap: 22px;
    }

    .single-img {
        padding: 12px;
        border-radius: 24px;
    }

    .single-info {
        padding: 22px;
        border-radius: 24px;
    }

    .single-info h1 {
        font-size: 30px;
    }

    .single-price {
        font-size: 25px;
    }

    .qty-row {
        flex-direction: column;
        align-items: stretch;
    }

    .qty-row input {
        width: 100%;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .page-card {
        padding: 17px;
        border-radius: 22px;
    }

    .summary-box {
        position: static;
        order: -1;
    }

    .cart-table {
        min-width: 0;
        width: 100%;
    }

    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
    }

    .cart-table tr:first-child {
        display: none;
    }

    .cart-table tr {
        background: white;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 12px;
        margin-bottom: 13px;
    }

    .cart-table td {
        border-bottom: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: center;
        padding: 10px 0;
        text-align: right;
    }

    .cart-table td:last-child {
        border-bottom: none;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 900;
        color: var(--muted);
        text-align: left;
    }

    .cart-img {
        width: 92px;
        height: 92px;
        object-fit: contain;
        background: #fff8fa;
        padding: 5px;
    }

    .cart-qty {
        width: 95px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .full {
        grid-column: span 1;
    }

    input,
    textarea,
    select {
        font-size: 16px;
        width: 100%;
    }

    .payment-option {
        align-items: flex-start;
    }

    .success-box {
        margin: 25px auto;
    }

    .success-box h1 {
        font-size: 32px;
    }

    .footer {
        padding: 25px 5%;
        font-size: 14px;
    }
}

@media(max-width: 430px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 310px;
    }

    .logo-title {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 32px;
    }
}


/* =========================================================
   FINAL FULL FIX: MOBILE-FIRST CART + CHECKOUT
   This overrides old table behavior and removes phone glitches.
========================================================= */

.cart-page,
.checkout-page {
    padding-top: 45px;
}

.mobile-cart-layout,
.checkout-mobile-layout {
    align-items: flex-start;
}

.cart-items-list {
    display: grid;
    gap: 16px;
}

.cart-item-card {
    background: rgba(255,255,255,.95);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 16px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    box-shadow: 0 12px 26px rgba(239,167,183,.12);
}

.cart-item-image {
    width: 130px;
    height: 150px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff8fa;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-info h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 8px;
    word-break: break-word;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-item-controls label {
    margin: 0;
}

.cart-item-controls input {
    width: 92px;
}

.cart-item-subtotal {
    color: var(--muted);
    margin-bottom: 12px;
}

.remove-link {
    display: inline-flex;
    color: var(--danger);
    font-weight: 900;
    border: 1px solid #ffd4dc;
    background: #fff0f3;
    padding: 9px 14px;
    border-radius: 999px;
}

.cart-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-summary-mobile,
.checkout-summary-mobile {
    background: rgba(255,255,255,.96);
}

.checkout-error {
    max-width: 900px;
    margin: 0 auto 18px auto;
    background: #fff0f3;
    border: 1px solid #ffd4dc;
    color: var(--danger);
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    font-weight: 800;
}

.checkout-form {
    display: grid;
    gap: 16px;
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
}

.checkout-form textarea {
    min-height: 105px;
}

.place-order-btn {
    margin-top: 4px;
}

.checkout-product-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.checkout-product-row strong {
    color: var(--text);
    white-space: nowrap;
}

.checkout-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

@media(max-width: 980px) {
    .mobile-cart-layout,
    .checkout-mobile-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-mobile,
    .checkout-summary-mobile {
        position: static;
        order: -1;
    }
}

@media(max-width: 760px) {
    .cart-page,
    .checkout-page {
        padding: 32px 4%;
    }

    .cart-page .section-head,
    .checkout-page .section-head {
        margin-bottom: 20px;
    }

    .cart-page .section-head h2,
    .checkout-page .section-head h2 {
        font-size: 30px;
    }

    .cart-item-card {
        grid-template-columns: 95px 1fr;
        gap: 12px;
        padding: 12px;
        border-radius: 22px;
    }

    .cart-item-image {
        width: 95px;
        height: 115px;
        border-radius: 18px;
    }

    .cart-item-info h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .cart-item-price {
        font-size: 17px;
        margin-bottom: 9px;
    }

    .cart-item-controls {
        gap: 8px;
        margin-bottom: 8px;
    }

    .cart-item-controls input {
        width: 76px;
        padding: 9px;
        border-radius: 12px;
    }

    .cart-item-subtotal {
        font-size: 14px;
        margin-bottom: 9px;
    }

    .remove-link {
        padding: 8px 11px;
        font-size: 13px;
    }

    .cart-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .page-card {
        padding: 16px;
        border-radius: 22px;
    }

    .summary-row {
        font-size: 14px;
    }

    .summary-total {
        font-size: 20px;
    }

    .checkout-form {
        gap: 13px;
    }

    .checkout-form-card {
        order: 2;
    }

    .checkout-summary-mobile {
        order: 1;
    }

    .payment-option {
        padding: 14px;
        border-radius: 16px;
    }

    .checkout-product-row {
        font-size: 14px;
    }

    .checkout-note {
        font-size: 13px;
    }
}

@media(max-width: 430px) {
    .cart-item-card {
        grid-template-columns: 82px 1fr;
    }

    .cart-item-image {
        width: 82px;
        height: 104px;
    }

    .cart-item-info h3 {
        font-size: 16px;
    }

    .cart-item-controls {
        flex-wrap: wrap;
    }

    .cart-item-controls input {
        width: 100%;
        max-width: 100px;
    }

    .checkout-page,
    .cart-page {
        padding-left: 3.5%;
        padding-right: 3.5%;
    }
}


/* CONTACT PAGE + FINAL NO-EMAIL VERSION */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.contact-card,
.contact-info-card {
    text-align: center;
}

.contact-logo {
    width: 190px;
    max-width: 70%;
    margin-bottom: 12px;
}

.contact-card h1 {
    font-family: Georgia, serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 24px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-info-card {
    text-align: left;
}

.contact-info-card h3 {
    font-size: 26px;
    font-family: Georgia, serif;
    margin-bottom: 18px;
}

.contact-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 6px;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row strong {
    color: var(--gold);
}

.contact-row span {
    color: var(--muted);
    line-height: 1.5;
}

@media(max-width: 760px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card,
    .contact-info-card {
        text-align: center;
    }

    .contact-card h1 {
        font-size: 29px;
    }

    .contact-logo {
        width: 150px;
    }

    .contact-row {
        text-align: center;
    }
}


/* =========================================================
   FINAL PREMIUM CONTACT PAGE
========================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: stretch;
}

.modern-contact-card {
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,248,250,.97));
}

.contact-logo-wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 35px rgba(239,167,183,.18);
}

.contact-logo {
    width: 120px;
}

.modern-contact-card h1 {
    font-size: 38px;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.contact-text {
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 28px;
}

.whatsapp-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    transition: .25s ease;
    box-shadow: 0 15px 30px rgba(37,211,102,.25);
}

.whatsapp-main-btn:hover {
    transform: translateY(-2px);
}

.wa-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
}

.modern-info-card h3 {
    font-size: 30px;
    margin-bottom: 22px;
    font-family: Georgia, serif;
}

.better-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.row-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background: #fff8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.better-row strong {
    display: block;
    color: var(--gold);
    margin-bottom: 4px;
}

.better-row span {
    color: var(--muted);
    line-height: 1.6;
}

@media(max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {

    .contact-logo-wrap {
        width: 140px;
        height: 140px;
    }

    .contact-logo {
        width: 90px;
    }

    .modern-contact-card h1 {
        font-size: 28px;
    }

    .whatsapp-main-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 15px;
    }

    .modern-info-card h3 {
        font-size: 25px;
    }

    .better-row {
        align-items: flex-start;
        text-align: left;
    }
}
.size-select-row select{width:100%;padding:12px;border:1px solid #eee;border-radius:12px;background:#fff;font:inherit}.checkout-error{margin:12px 0;padding:12px;border-radius:12px;background:#fff3f3;color:#9b1c1c}
