/* Storefront global */
:root {
            --ink: #1f1a17;
            --muted: #746961;
            --line: #eadfd4;
            --cream: #f8f1e7;
            --sand: #efe2d1;
            --nude: #f5d7c8;
            --gold: #b9965d;
            --olive: #66724c;
            --olive2: #4f5b39;
            --rose: #d92b7f;
            --rose-soft: #f7d7e5;
            --white: #fffdf9;
            --shadow: 0 22px 55px rgba(57, 43, 31, .10);
            --r: 16px
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden
        }

        body {
            margin: 0;
            background: var(--white);
            color: var(--ink);
            font-family: "Instrument Sans", Arial, sans-serif;
            overflow-x: hidden
        }

        body[dir=rtl] {
            font-family: "Instrument Sans", Tahoma, Arial, sans-serif
        }

        body[data-lang=fr] .t-ar,
        body[data-lang=ar] .t-fr {
            display: none !important
        }

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

        img {
            display: block;
            max-width: 100%
        }

        button,
        input,
        select,
        textarea {
            font: inherit
        }

        .container {
            width: min(1180px, calc(100% - 32px));
            margin-inline: auto
        }

        .muted {
            color: var(--muted)
        }

        .topbar {
            background: #1f1a17;
            color: #fff;
            font-size: 12px;
            font-weight: 600
        }

        .topbar .container {
            min-height: 34px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: center;
            gap: 14px
        }

        .topbar span {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            white-space: nowrap
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 30;
            background: rgba(255, 253, 249, .94);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(14px)
        }

        .nav-inner {
            min-height: 78px;
            display: grid;
            grid-template-columns: 205px 1fr auto;
            align-items: center;
            gap: 24px
        }

        .nav-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: #fff;
            color: var(--ink);
            place-items: center;
            cursor: pointer
        }

        .nav-toggle i {
            font-size: 18px
        }

        .brand {
            line-height: 1;
            color: var(--ink)
        }

        .brand-logo {
            width: auto;
            height: 46px;
            max-width: 178px;
            object-fit: contain
        }

        .brand strong {
            display: block;
            font-family: "Playfair Display", Georgia, serif;
            font-size: 30px;
            letter-spacing: 0
        }

        .brand small {
            display: block;
            margin-top: 7px;
            color: var(--rose);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .32em;
            text-transform: uppercase
        }

        .links {
            display: flex;
            justify-content: center;
            gap: 22px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            min-width: 0
        }

        .links a {
            padding: 30px 0 27px;
            border-bottom: 2px solid transparent;
            color: #403730
        }

        .links a.active,
        .links a:hover {
            color: var(--rose);
            border-color: var(--rose)
        }

        .actions {
            display: flex;
            align-items: center;
            gap: 9px
        }

        .lang {
            display: inline-flex;
            border: 1px solid var(--line);
            border-radius: 999px;
            overflow: hidden;
            background: #fff
        }

        .lang button {
            border: 0;
            background: transparent;
            padding: 7px 10px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer
        }

        .lang button.active {
            background: var(--ink);
            color: #fff
        }

        .tool {
            width: 36px;
            height: 36px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: #fff;
            display: grid;
            place-items: center
        }

        .nav-whatsapp {
            border: 1px solid rgba(102, 114, 76, .35);
            border-radius: 999px;
            background: #f4f7ee;
            color: var(--olive2);
            padding: 9px 13px;
            font-size: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 7px
        }

        .nav-whatsapp i {
            font-size: 16px
        }

        .cart {
            position: relative
        }

        .cart:after {
            content: attr(data-count);
            position: absolute;
            top: -4px;
            right: -4px;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background: var(--rose);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            display: grid;
            place-items: center
        }

        .section {
            padding: 48px 0
        }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap
        }

        .section-title {
            margin: 0;
            color: var(--ink);
            font-family: "Playfair Display", Georgia, serif;
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 600;
            letter-spacing: 0
        }

        .section-kicker {
            margin: 0 0 8px;
            color: var(--rose);
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .08em
        }

        .btn {
            border: 0;
            border-radius: 999px;
            background: var(--ink);
            color: #fff;
            padding: 13px 22px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: .18s ease;
            min-width: 0;
            text-align: center
        }

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

        .btn.coral {
            background: var(--rose)
        }

        .btn.ghost {
            background: #fff;
            color: var(--ink);
            border: 1px solid var(--line)
        }

        .btn.olive {
            background: var(--olive);
            color: #fff
        }

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

        .product-card {
            position: relative;
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid rgba(234, 223, 212, .9);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(57, 43, 31, .06);
            transition: .22s ease
        }

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

        .product-card .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: #fff;
            color: var(--ink);
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 6px 10px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .04em
        }

        .product-card .sale {
            left: auto;
            right: 12px;
            background: var(--rose);
            border-color: var(--rose);
            color: #fff
        }

        .product-img {
            flex: 0 0 auto;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #f4e7d8, #f7d7e5);
            overflow: hidden
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: .35s ease
        }

        .product-card:hover img {
            transform: scale(1.045)
        }

        .product-info {
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            padding: 15px 16px 17px
        }

        .product-info h3 {
            margin: 0 0 8px;
            font-size: 14px;
            line-height: 1.35;
            min-height: 38px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: #2b241f
        }

        .rating {
            color: #c7a56a;
            font-size: 11px;
            letter-spacing: 1px;
            margin-bottom: 8px
        }

        .price {
            font-size: 15px;
            font-weight: 800
        }

        .old {
            margin-inline-start: 8px;
            color: #a89b91;
            text-decoration: line-through;
            font-size: 12px;
            font-weight: 600
        }

        .product-cta {
            margin-top: 0;
            width: 100%;
            min-height: 38px;
            border-radius: 999px;
            background: #f7f1ea;
            color: var(--ink);
            border: 1px solid var(--line);
            font-weight: 800;
            text-align: center;
            display: grid;
            place-items: center;
            font-size: 12px;
            text-transform: uppercase
        }

        .product-variants {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
            min-height: 54px;
            align-content: flex-start
        }

        .product-variants span {
            min-width: 24px;
            height: 24px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: #fffdf9;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 8px;
            color: #514840;
            font-size: 10px;
            font-weight: 800
        }

        .product-variants .color-mini {
            gap: 0;
            padding: 0 7px
        }

        .product-variants .color-mini i {
            width: 13px;
            height: 13px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, .12);
            display: block
        }

        .product-stock {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 9px;
            min-height: 16px;
            color: var(--olive2);
            font-size: 11px;
            font-weight: 800
        }

        .product-stock i {
            font-size: 10px
        }

        .quick-buy-form {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .quick-buy-phone {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--line);
            border-radius: 8px;
            font-size: 12px;
            background: #fff;
        }

        .quick-buy-btn {
            width: 100%;
            min-height: 32px;
            border-radius: 999px;
            background: var(--rose);
            color: #fff;
            border: 1px solid var(--rose);
            font-weight: 800;
            text-align: center;
            font-size: 11px;
            text-transform: uppercase;
            cursor: pointer;
            transition: .2s ease;
        }

        .quick-buy-btn:hover {
            background: #c0256a;
            border-color: #c0256a;
        }

        .product-actions {
            display: grid;
            gap: 8px;
            margin-top: auto;
            padding-top: 12px;
        }

        .quick-buy-inline {
            display: block;
            margin: 0;
        }

        .form-card,
        .summary-card,
        .panel {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--r);
            box-shadow: var(--shadow)
        }

        .field {
            display: grid;
            gap: 7px;
            margin-bottom: 14px
        }

        .field label {
            font-size: 12px;
            font-weight: 800
        }

        .field input,
        .field select,
        .field textarea {
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            padding: 12px 13px;
            min-width: 0;
            width: 100%
        }

        .field textarea {
            min-height: 118px;
            resize: vertical
        }

        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px
        }

        .three-col {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .page-hero {
            background: linear-gradient(100deg, #fffdf9 0%, #f8f1e7 55%, #f5d7c8 100%);
            border-bottom: 1px solid var(--line);
            padding: 34px 0
        }

        .breadcrumbs {
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 20px
        }

        .breadcrumbs a {
            color: var(--rose);
            font-weight: 800
        }

        .page-hero h1 {
            margin: 0 0 10px;
            font-size: 34px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 0
        }

        .page-hero p {
            margin: 0;
            max-width: 620px;
            color: var(--muted);
            line-height: 1.7
        }

        .trust-strip {
            background: #fff;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line)
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr)
        }

        .trust {
            min-height: 82px;
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 14px 20px;
            border-inline-end: 1px solid var(--line)
        }

        .trust:last-child {
            border: 0
        }

        .ico {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--olive);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 11px;
            font-weight: 800;
            flex: 0 0 auto
        }

        .trust b {
            display: block;
            font-size: 12px;
            text-transform: uppercase
        }

        .trust small {
            display: block;
            margin-top: 3px;
            color: var(--muted)
        }

        .footer {
            background: var(--cream);
            border-top: 1px solid var(--line);
            padding: 46px 0 34px
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.15fr .8fr .8fr 1.1fr;
            gap: 42px
        }

        .footer .brand {
            display: inline-block;
            margin-bottom: 12px
        }

        .footer .brand-logo {
            height: 42px
        }

        .footer h4 {
            margin: 0 0 14px;
            font-size: 13px;
            text-transform: uppercase;
            color: #2d251f
        }

        .footer p,
        .footer li {
            font-size: 13px;
            line-height: 1.85;
            color: #5e554e
        }

        .footer ul {
            padding: 0;
            margin: 0;
            list-style: none
        }

        .social {
            display: flex;
            gap: 10px;
            margin-top: 18px
        }

        .social a {
            width: 34px;
            height: 34px;
            border: 1px solid var(--line);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 15px;
            font-weight: 800;
            background: #fff;
            transition: .18s ease
        }

        .social a:hover {
            color: #fff;
            background: var(--rose);
            border-color: var(--rose);
            transform: translateY(-1px)
        }

        .wa-float {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 50;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--olive);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 25px;
            font-weight: 900;
            box-shadow: 0 16px 36px rgba(79, 91, 57, .28)
        }

        .product-grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))
        }

        @media(max-width:1100px) {
            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(170px, 1fr))
            }
        }

        @media(max-width:980px) {
            .nav-inner {
                grid-template-columns: minmax(0, 1fr) auto auto;
                min-height: auto;
                padding: 12px 0;
                gap: 10px
            }

            .nav-toggle {
                display: grid;
                grid-column: 2;
                grid-row: 1
            }

            .links {
                grid-column: 1/-1;
                grid-row: 2;
                display: none;
                flex-direction: column;
                gap: 0;
                padding: 8px;
                background: #fff;
                border: 1px solid var(--line);
                border-radius: 12px;
                box-shadow: 0 16px 34px rgba(57, 43, 31, .10);
                overflow: visible
            }

            .nav.is-open .links {
                display: flex
            }

            .links a {
                padding: 13px 12px;
                border-bottom: 1px solid var(--line)
            }

            .links a:last-child {
                border-bottom: 0
            }

            .actions {
                grid-column: 3;
                grid-row: 1;
                justify-content: end
            }

            .product-grid,
            .trust-grid,
            .footer-grid,
            .three-col,
            .two-col {
                grid-template-columns: 1fr 1fr
            }

            .nav-whatsapp {
                display: none
            }
        }

        @media(max-width:640px) {
            .container {
                width: min(100% - 22px, 1180px)
            }

            .topbar .container,
            .trust-grid,
            .footer-grid,
            .three-col,
            .two-col {
                grid-template-columns: 1fr
            }

            .product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px
            }

            .topbar .container {
                padding: 7px 0;
                gap: 6px
            }

            .topbar span {
                justify-content: flex-start;
                white-space: normal
            }

            .nav-inner {
                grid-template-columns: minmax(0, 1fr) 40px auto
            }

            .brand {
                min-width: 0
            }

            .brand-logo {
                height: 40px;
                max-width: 150px
            }

            .brand strong {
                font-size: 26px
            }

            .brand small {
                font-size: 9px;
                letter-spacing: .22em
            }

            .actions {
                gap: 7px
            }

            .lang button {
                padding: 7px 9px
            }

            .tool {
                width: 34px;
                height: 34px
            }

            .links {
                width: 100%;
                font-size: 12px
            }

            .section {
                padding: 36px 0
            }

            .section-head {
                display: block
            }

            .section-head .btn {
                width: 100%;
                margin-top: 14px
            }

            .page-hero {
                padding: 26px 0
            }

            .page-hero h1 {
                font-size: 28px
            }

            .trust {
                border-inline-end: 0;
                border-bottom: 1px solid var(--line);
                padding-inline: 0
            }

            .product-info {
                padding: 12px
            }

            .product-info h3 {
                font-size: 13px;
                min-height: 36px
            }

            .product-cta {
                font-size: 11px
            }

            .footer {
                padding-bottom: 84px
            }

            .wa-float {
                bottom: 16px;
                right: 14px
            }
        }


/* about.blade.php */
.about-grid{display:grid;grid-template-columns:1fr 420px;gap:34px;align-items:center}.about-grid img{border-radius:var(--r);box-shadow:var(--shadow);width:100%;aspect-ratio:4/5;object-fit:cover}.values{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.value{padding:22px;text-align:center}.value .ico{margin:0 auto 12px}.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;background:#fff}.stat{padding:20px;text-align:center;border-inline-end:1px solid var(--line)}.stat:last-child{border:0}.stat strong{display:block;color:var(--teal);font-size:26px}@media(max-width:850px){.about-grid,.values,.stats{grid-template-columns:1fr}}


/* cart.blade.php */
.cart-layout{display:grid;grid-template-columns:1fr 320px;gap:28px}.cart-table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden}.cart-table th{font-size:12px;text-align:start;text-transform:uppercase;color:#4d585b;background:#fff8f4}.cart-table th,.cart-table td{padding:16px;border-bottom:1px solid var(--line)}.cart-product{display:flex;align-items:center;gap:14px}.cart-product img{width:68px;height:86px;object-fit:cover;border-radius:5px}.qty-mini input{width:58px;height:34px;border:1px solid var(--line);border-radius:4px;text-align:center}.summary-card{padding:20px}.summary-row{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--line)}@media(max-width:850px){.cart-layout{grid-template-columns:1fr}.cart-table{display:block;overflow-x:auto}}


/* category.blade.php */
.catalog{display:grid;grid-template-columns:220px 1fr;gap:24px}.filters{padding:18px;align-self:start}.filters h3{margin:0 0 18px;font-size:13px;text-transform:uppercase}.filter-block{border-top:1px solid var(--line);padding:16px 0}.filter-block:first-of-type{border-top:0}.check{display:flex;align-items:center;gap:8px;margin:9px 0;font-size:13px;color:#3e484b}.toolbar{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:16px}.toolbar form{display:flex;gap:10px;align-items:center;flex-wrap:wrap}.toolbar input,.toolbar select{border:1px solid var(--line);border-radius:5px;background:#fff;padding:9px 12px}.pagination{margin-top:26px}.store-pagination{display:grid;gap:12px;justify-items:center;padding:10px 0 2px}.page-summary{color:var(--muted);font-size:13px;font-weight:600}.page-controls{display:flex;align-items:center;justify-content:center;gap:7px;flex-wrap:wrap}.page-btn,.page-number,.page-ellipsis{min-width:38px;height:38px;border:1px solid var(--line);border-radius:999px;background:#fff;display:inline-flex;align-items:center;justify-content:center;color:var(--ink);font-size:13px;font-weight:800;box-shadow:0 8px 20px rgba(57,43,31,.06)}.page-btn{width:42px;color:var(--olive2)}.page-btn i{font-size:13px}.page-number.active{background:var(--ink);border-color:var(--ink);color:#fff}.page-btn:not(.disabled):hover,.page-number:not(.active):hover{border-color:var(--rose);color:var(--rose);transform:translateY(-1px)}.page-btn.disabled{opacity:.38;box-shadow:none;cursor:not-allowed}.page-ellipsis{border-color:transparent;background:transparent;box-shadow:none;min-width:22px}@media(max-width:900px){.catalog{grid-template-columns:1fr}.filters{order:2}.toolbar{display:block}.toolbar form{margin-top:10px}.toolbar input,.toolbar select{width:100%}}


/* checkout.blade.php */
.checkout{display:grid;grid-template-columns:1fr 360px;gap:28px}.form-card{padding:22px}.summary-card{padding:22px}.mini-line{display:grid;grid-template-columns:56px 1fr auto;gap:12px;align-items:center;padding:12px 0;border-bottom:1px solid var(--line)}.mini-line img{width:56px;height:70px;object-fit:cover;border-radius:5px}.summary-row{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--line)}.error{color:#b42318;font-size:12px}@media(max-width:850px){.checkout{grid-template-columns:1fr}}@media(max-width:520px){.mini-line{grid-template-columns:48px 1fr}.mini-line b{grid-column:2}.mini-line img{width:48px;height:62px}}


/* contact.blade.php */
.contact-hero{padding:26px 0;background:#fffaf6}.contact-hero .breadcrumbs{margin-bottom:12px;font-size:11px}.contact-hero h1{margin-bottom:8px;font-family:"Playfair Display",Georgia,serif;font-size:clamp(30px,4vw,44px);font-weight:600;text-transform:none;color:var(--teal)}.contact-hero p{max-width:560px;font-size:14px;line-height:1.75;color:#526063}.contact-shell{display:grid;grid-template-columns:300px minmax(0,1fr);gap:20px;align-items:start;padding-top:26px}.contact-info,.contact-form{background:#fff;border:1px solid rgba(234,223,218,.9);border-radius:8px;box-shadow:0 12px 34px rgba(44,32,24,.055)}.contact-info{padding:18px}.contact-info h3{margin:0 0 8px;font-size:16px;font-weight:600;color:var(--teal)}.contact-info .line{display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:center;padding:12px 0;border-bottom:1px solid #f1e8e3}.contact-info .line:last-child{border:0;padding-bottom:0}.contact-info .ico{width:34px;height:34px;background:#f4fbfa;color:var(--teal);border:1px solid #d8ecea;font-size:10px;font-weight:600}.contact-info p{margin:0;color:#596466;font-size:13px;line-height:1.55}.contact-info strong{display:block;margin-bottom:2px;color:#1d2d30;font-size:12px;font-weight:600}.contact-form{padding:20px}.contact-form .two-col{gap:14px}.contact-form .field{gap:6px;margin-bottom:12px}.contact-form label{font-size:11px;font-weight:600;color:#314044}.contact-form input,.contact-form select,.contact-form textarea{border-color:#eadfda;border-radius:6px;padding:10px 11px;font-size:13px;background:#fffdfb;color:#223033}.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:0;border-color:#9fcfca;box-shadow:0 0 0 3px rgba(0,97,107,.08);background:#fff}.contact-form textarea{min-height:104px}.contact-form .btn{min-height:40px;padding:10px 18px;font-weight:600;text-transform:none;border-radius:6px}.contact-insta{padding-top:18px}.contact-insta .section-head{margin-bottom:14px}.contact-insta .section-title{font-family:"Playfair Display",Georgia,serif;font-size:24px;font-weight:600;text-transform:none}.gallery{display:grid;grid-template-columns:repeat(5,1fr);gap:8px}.gallery img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:7px;filter:saturate(.92);transition:.2s ease}.gallery img:hover{filter:saturate(1);transform:translateY(-2px)}@media(max-width:850px){.contact-shell{grid-template-columns:1fr}.gallery{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.contact-hero{padding:22px 0}.contact-shell{padding-top:20px}.contact-form,.contact-info{padding:16px}.gallery{grid-template-columns:1fr 1fr}}


/* faq.blade.php */
.faq-wrap{max-width:860px}.search-box{width:100%;border:1px solid var(--line);border-radius:7px;padding:14px 16px;margin-bottom:18px}.faq-item{background:#fff;border:1px solid var(--line);border-radius:var(--r);margin-bottom:12px;overflow:hidden}.faq-q{display:flex;justify-content:space-between;gap:16px;padding:18px 20px;font-weight:900}.faq-a{padding:0 20px 18px;color:var(--muted);line-height:1.7}.faq-q span:last-child{color:var(--coral)}


/* home.blade.php */
.home-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#fffdf9 0%,#f8f1e7 58%,#efd6c4 100%);border-bottom:1px solid var(--line)}.home-hero:before{content:"";position:absolute;inset:auto -8% -22% auto;width:420px;height:420px;border-radius:50%;background:rgba(217,43,127,.08)}.hero-grid{position:relative;min-height:620px;display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,560px);gap:54px;align-items:center}.hero-copy{max-width:620px;border:1px solid rgba(255,255,255,.58);border-radius:26px;background:rgba(255,255,255,.46);padding:42px 44px;backdrop-filter:blur(18px) saturate(1.18);-webkit-backdrop-filter:blur(18px) saturate(1.18);box-shadow:0 24px 70px rgba(57,43,31,.10),inset 0 1px 0 rgba(255,255,255,.68)}.hero-badge{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(185,150,93,.35);border-radius:999px;background:rgba(255,255,255,.68);padding:8px 13px;color:var(--olive2);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.hero-copy h1{margin:22px 0 18px;font-family:"Playfair Display",Georgia,serif;font-size:clamp(46px,6vw,78px);font-weight:600;line-height:.98;color:var(--ink);letter-spacing:0}.hero-copy p{margin:0;color:#5e554e;font-size:17px;line-height:1.85;max-width:540px}.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.hero-reassurance{margin-top:18px;color:#746961;font-size:13px}.hero-visual{position:relative;min-height:520px;border-radius:0;overflow:hidden;background:#efe2d1;box-shadow:0 28px 70px rgba(57,43,31,.12)}.hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .7s ease,visibility .7s ease}.hero-slide.is-active{opacity:1;visibility:visible}.hero-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;transform:scale(1.045);transition:transform 5.8s ease}.hero-slide.is-active .hero-photo{transform:scale(1)}.hero-visual:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,253,249,.18),rgba(255,253,249,0));z-index:1;pointer-events:none}.hero-image-note{position:absolute;right:26px;top:58px;z-index:2;max-width:220px;border-radius:18px;background:rgba(255,253,249,.82);padding:18px;backdrop-filter:blur(8px);box-shadow:0 18px 42px rgba(57,43,31,.12)}.hero-image-note b{display:block;margin-bottom:7px}.editorial-mark{position:absolute;left:34px;bottom:34px;z-index:2;color:#fff;font-family:"Playfair Display",Georgia,serif;font-size:54px;line-height:.9;text-shadow:0 8px 24px rgba(0,0,0,.22)}.hero-dots{position:absolute;left:50%;bottom:24px;z-index:5;display:flex;gap:9px;transform:translateX(-50%)}.hero-dot{width:32px;height:4px;border:0;border-radius:999px;background:rgba(255,255,255,.55);cursor:pointer;padding:0}.hero-dot.is-active{background:var(--rose)}.collection-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr;gap:18px}.collection{position:relative;min-height:340px;border-radius:8px;overflow:hidden;color:#fff;display:flex;align-items:end;padding:26px;background:#ddd}.collection img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.collection:before{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(31,26,23,.68),rgba(31,26,23,.10));z-index:1}.collection div{position:relative;z-index:2}.collection h3{margin:0 0 8px;font-family:"Playfair Display",Georgia,serif;font-size:32px;font-weight:600}.collection p{margin:0 0 16px;color:rgba(255,255,255,.86)}.trust-premium{background:#fff;border-block:1px solid var(--line)}.trust-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.trust-card{border:1px solid var(--line);border-radius:8px;background:#fffdf9;padding:20px;box-shadow:0 10px 28px rgba(57,43,31,.05)}.trust-card .icon{width:38px;height:38px;border-radius:50%;background:#f4f7ee;color:var(--olive2);display:grid;place-items:center;font-weight:900;margin-bottom:12px}.trust-card b{display:block;margin-bottom:5px}.story-band{background:linear-gradient(100deg,#f8f1e7,#fffdf9)}.story{display:grid;grid-template-columns:.9fr 1.1fr;gap:44px;align-items:center}.story-card{min-height:360px;border-radius:8px;background:linear-gradient(145deg,#efe2d1,#f5d7c8);box-shadow:var(--shadow);position:relative;overflow:hidden}.story-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.story-card:after{position:absolute;left:28px;bottom:26px;color:#fff;font-family:"Playfair Display",Georgia,serif;font-size:46px;text-shadow:0 8px 24px rgba(0,0,0,.35)}body[data-lang=fr] .story-card:after{content:"Elegance quotidienne"}body[data-lang=ar] .story-card:after{content:"\0623\0646\0627\0642\0629 \064A\0648\0645\064A\0629";right:28px;left:auto}.story h2{margin:0 0 16px;font-family:"Playfair Display",Georgia,serif;font-size:42px;font-weight:600}.story p{font-size:16px;line-height:1.85}.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.review{border:1px solid var(--line);border-radius:8px;background:#fff;padding:22px;box-shadow:0 10px 28px rgba(57,43,31,.05)}.review .stars{color:#c7a56a;letter-spacing:2px;font-size:12px}.review p{line-height:1.7}.review b{display:block;margin-top:16px}.offers{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.offer{min-height:150px;border:1px solid var(--line);border-radius:8px;background:#fff;padding:22px;display:grid;align-content:center;gap:8px}.offer strong{font-family:"Playfair Display",Georgia,serif;font-size:34px;color:var(--ink)}.offer:nth-child(1){background:#4f5b39;color:#fff}.offer:nth-child(1) strong{color:#fff}.offer:nth-child(2){background:#fff1f6}.offer:nth-child(3){background:#f8f1e7}.offer:nth-child(4){background:#fff}.insta-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;align-items:start}.insta-post{display:block;border:1px solid var(--line);border-radius:12px;background:#fff;overflow:hidden;box-shadow:0 14px 34px rgba(57,43,31,.08);transition:.2s ease}.insta-post:hover{transform:translateY(-3px);box-shadow:var(--shadow)}.insta-post-head{height:44px;display:grid;grid-template-columns:28px 1fr auto;gap:8px;align-items:center;padding:8px 10px}.insta-avatar{width:28px;height:28px;border-radius:50%;overflow:hidden;background:#f3ede6;border:1px solid var(--line)}.insta-avatar img{width:100%;height:100%;object-fit:cover}.insta-post-head b{display:block;font-size:10px;line-height:1;color:#1f1a17}.insta-post-head small{display:block;margin-top:3px;color:var(--muted);font-size:9px;line-height:1}.insta-post-head i{font-size:12px;color:#403730}.insta-post-media{aspect-ratio:4/5;background:#f3ede6;overflow:hidden}.insta-post-media img{width:100%;height:100%;object-fit:cover;object-position:center top}.insta-post-body{padding:9px 10px 11px;font-size:10px;color:#1f1a17}.insta-actions{display:flex;justify-content:space-between;align-items:center;margin-bottom:7px}.insta-actions span{display:flex;gap:8px}.insta-actions i{font-size:13px}.insta-actions .fa-heart{color:var(--rose)}.insta-post-body>b{display:block;margin-bottom:5px;font-size:10px}.insta-post-body p{margin:0 0 5px;color:#403730;line-height:1.35}.insta-post-body small{display:block;color:var(--muted);font-size:9px}.insta-cta{margin-top:20px;text-align:center}
@media(max-width:980px){.hero-grid,.story{grid-template-columns:1fr}.hero-grid{min-height:auto;padding:56px 0}.hero-visual{min-height:420px}.collection-grid,.trust-cards,.reviews,.offers{grid-template-columns:1fr 1fr}.insta-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.collection-grid .collection:first-child{grid-column:1/-1}}
@media(max-width:640px){.hero-grid{gap:30px;padding:42px 0 58px}.hero-copy{padding:28px 22px;border-radius:20px}.hero-copy h1{font-size:44px}.hero-copy p{font-size:15px}.hero-actions .btn{width:100%}.hero-visual{min-height:340px;border-radius:22px}.hero-image-note{right:16px;top:18px;max-width:190px}.hero-dots{bottom:18px}.collection-grid,.trust-cards,.reviews,.offers{grid-template-columns:1fr}.insta-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.collection{min-height:260px}.story-card{min-height:260px}.story-card:after{font-size:34px;left:20px;bottom:20px}body[data-lang=ar] .story-card:after{right:20px;left:auto}.story h2{font-size:34px}}
@media(prefers-reduced-motion:reduce){.hero-slide,.hero-copy,.hero-photo{transition:none!important;transform:none!important}}


/* product.blade.php */
.product-shell{padding-top:28px}.product-page{display:grid;grid-template-columns:92px minmax(360px,560px) minmax(320px,1fr);gap:24px;align-items:start}.product-page>*{align-self:start}.thumbs{position:relative;top:auto;display:grid;gap:10px}.thumb-button{border:1px solid var(--line);border-radius:8px;background:#fff;padding:0;overflow:hidden;cursor:pointer;aspect-ratio:3/4}.thumb-button.is-active{border-color:var(--rose);box-shadow:0 0 0 2px rgba(217,43,127,.12)}.thumb-button img,.main-photo img{width:100%;height:100%;object-fit:cover}.main-photo{position:relative;top:auto;aspect-ratio:3/4;border:1px solid var(--line);border-radius:8px;overflow:hidden;background:#f6eee9;box-shadow:0 16px 42px rgba(57,43,31,.08)}.details-card{border:1px solid var(--line);border-radius:8px;background:#fff;padding:24px;box-shadow:0 14px 34px rgba(57,43,31,.07)}.product-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:12px}.pill{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--line);border-radius:999px;background:#fffdf9;padding:7px 10px;font-size:12px;font-weight:800;color:#403730}.pill.sale{border-color:var(--rose);background:#fff1f6;color:var(--rose)}.details-card h1{margin:0 0 12px;font-family:"Playfair Display",Georgia,serif;font-size:clamp(30px,3.5vw,44px);line-height:1.05;font-weight:600}.price-line{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;margin-bottom:10px}.price-line .price{font-size:28px;font-weight:900;color:var(--ink)}.rating-line{display:flex;align-items:center;gap:8px;color:#c7a56a;font-size:12px;margin-bottom:14px}.rating-line .muted{color:var(--muted)}.intro{margin:0 0 18px;color:#5e554e;line-height:1.75}.option-row{margin:18px 0}.option-title{display:flex;justify-content:space-between;gap:12px;margin-bottom:9px;font-weight:900}.option-title small{color:var(--muted);font-weight:600}.choice-grid{display:flex;gap:9px;align-items:center;flex-wrap:wrap}.choice{position:relative}.choice input{position:absolute;opacity:0;pointer-events:none}.choice span{min-height:40px;display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid var(--line);border-radius:999px;background:#fff;padding:9px 14px;font-weight:800;cursor:pointer;transition:.16s ease}.choice input:checked+span{border-color:var(--rose);background:#fff1f6;color:var(--rose);box-shadow:0 0 0 3px rgba(217,43,127,.10)}.swatch{width:16px;height:16px;border-radius:50%;border:1px solid rgba(0,0,0,.12);background:var(--swatch,#efe2d1);box-shadow:inset 0 0 0 2px rgba(255,255,255,.65)}.qty-box{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px;background:#fff;overflow:hidden}.qty-box button{width:38px;height:38px;border:0;background:#fff;cursor:pointer;font-weight:900}.qty-box input{width:54px;height:38px;border:0;border-inline:1px solid var(--line);text-align:center}.buy-actions{display:grid;gap:10px;margin-top:20px}.buy-actions .btn{min-height:48px}.support-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:16px}.support-item{border:1px solid var(--line);border-radius:8px;background:#fffdf9;padding:12px;min-height:86px}.support-item i{color:var(--olive2);font-size:18px;margin-bottom:8px}.support-item b{display:block;font-size:12px}.support-item small{display:block;margin-top:4px;color:var(--muted);line-height:1.35}.stock-note{display:flex;align-items:center;gap:9px;margin-top:14px;border-radius:8px;background:#f4f7ee;color:var(--olive2);padding:11px 12px;font-weight:800}.details-tabs{margin-top:28px}.tab-head{display:flex;gap:0;border:1px solid var(--line);border-radius:8px 8px 0 0;overflow:hidden;background:#fff}.tab-head b{padding:14px 18px;border-inline-end:1px solid var(--line);font-size:12px;text-transform:uppercase}.tab-head b:first-child{background:#fff1f6;color:var(--rose)}.tab-body{padding:20px;background:#fff;border:1px solid var(--line);border-top:0;border-radius:0 0 8px 8px;line-height:1.8}.product-section{padding-top:22px}.product-section .section-head{margin-bottom:16px;align-items:center}.product-section .section-title{font-size:clamp(24px,2.4vw,32px)}.product-section .product-grid{grid-template-columns:repeat(auto-fill,minmax(170px,220px));justify-content:start;gap:16px}.product-section .product-card{border-radius:8px;box-shadow:0 8px 22px rgba(57,43,31,.055)}.product-section .product-card:hover{transform:translateY(-2px)}.product-section .product-img{aspect-ratio:4/5}.product-section .product-info{padding:11px 12px 13px}.product-section .product-info h3{font-size:13px;min-height:34px;margin-bottom:6px}.product-section .rating,.product-section .product-stock{font-size:11px}.product-section .price{font-size:14px}.product-section .product-cta{min-height:36px;font-size:11px;padding:9px 10px}.empty-suggestions{grid-column:1/-1;border:1px solid var(--line);border-radius:8px;background:#fff;padding:22px;text-align:center;color:var(--muted)}@media(max-width:1050px){.product-page{grid-template-columns:78px minmax(300px,1fr);}.details-card{grid-column:1/-1}.support-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:720px){.product-section .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.product-section .section-title{font-size:26px}.product-shell{padding-top:18px}.product-page{grid-template-columns:1fr;gap:14px}.thumbs{position:static;display:flex;order:2;overflow:auto}.thumb-button{width:74px;flex:0 0 74px}.main-photo{position:static;order:1;aspect-ratio:4/5}.details-card{order:3;padding:18px}.support-grid{grid-template-columns:1fr}.tab-head{overflow:auto}.tab-head b{flex:0 0 auto}.buy-actions .btn{width:100%}}

/* Lazy image skeleton */
.lazy-media {
    position: relative;
    overflow: hidden;
    background: #f3ede6;
}

.lazy-media.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    animation: lazySkeletonShimmer 1.25s ease-in-out infinite;
}

.lazy-media.is-loading img {
    opacity: 0;
}

.lazy-media img {
    transition: opacity .24s ease;
}

.product-card.is-card-loading .product-info h3,
.product-card.is-card-loading .rating,
.product-card.is-card-loading .price,
.product-card.is-card-loading .product-variants,
.product-card.is-card-loading .product-stock,
.product-card.is-card-loading .product-cta {
    position: relative;
    color: transparent !important;
    border-color: transparent !important;
    background: #f3ede6 !important;
    border-radius: 6px;
    overflow: hidden;
}

.product-card.is-card-loading .product-info h3::after,
.product-card.is-card-loading .rating::after,
.product-card.is-card-loading .price::after,
.product-card.is-card-loading .product-variants::after,
.product-card.is-card-loading .product-stock::after,
.product-card.is-card-loading .product-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    animation: lazySkeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes lazySkeletonShimmer {
    to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .lazy-media.is-loading::after,
    .product-card.is-card-loading .product-info h3::after,
    .product-card.is-card-loading .rating::after,
    .product-card.is-card-loading .price::after,
    .product-card.is-card-loading .product-variants::after,
    .product-card.is-card-loading .product-stock::after,
    .product-card.is-card-loading .product-cta::after {
        animation: none;
    }
}



/* Paint-time lazy skeleton, visible before JS runs */
.product-img:has(img[loading="lazy"]:not(.is-loaded)),
.main-photo:has(img[loading="lazy"]:not(.is-loaded)),
.thumb-button:has(img[loading="lazy"]:not(.is-loaded)),
.collection:has(img[loading="lazy"]:not(.is-loaded)),
.story-card:has(img[loading="lazy"]:not(.is-loaded)),
.insta-post-media:has(img[loading="lazy"]:not(.is-loaded)),
.gallery:has(img[loading="lazy"]:not(.is-loaded)),
.cart-product:has(img[loading="lazy"]:not(.is-loaded)),
.mini-line:has(img[loading="lazy"]:not(.is-loaded)) {
    position: relative;
    overflow: hidden;
    background: #f3ede6;
}

.product-img:has(img[loading="lazy"]:not(.is-loaded))::after,
.main-photo:has(img[loading="lazy"]:not(.is-loaded))::after,
.thumb-button:has(img[loading="lazy"]:not(.is-loaded))::after,
.collection:has(img[loading="lazy"]:not(.is-loaded))::after,
.story-card:has(img[loading="lazy"]:not(.is-loaded))::after,
.insta-post-media:has(img[loading="lazy"]:not(.is-loaded))::after,
.gallery:has(img[loading="lazy"]:not(.is-loaded))::after,
.cart-product:has(img[loading="lazy"]:not(.is-loaded))::after,
.mini-line:has(img[loading="lazy"]:not(.is-loaded))::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    animation: lazySkeletonShimmer 1.25s ease-in-out infinite;
}

.product-img:has(img[loading="lazy"]:not(.is-loaded)) img,
.main-photo:has(img[loading="lazy"]:not(.is-loaded)) img,
.thumb-button:has(img[loading="lazy"]:not(.is-loaded)) img,
.collection:has(img[loading="lazy"]:not(.is-loaded)) img,
.story-card:has(img[loading="lazy"]:not(.is-loaded)) img,
.insta-post-media:has(img[loading="lazy"]:not(.is-loaded)) img,
.gallery:has(img[loading="lazy"]:not(.is-loaded)) img,
.cart-product:has(img[loading="lazy"]:not(.is-loaded)) img,
.mini-line:has(img[loading="lazy"]:not(.is-loaded)) img {
    opacity: 0;
}

.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-info h3,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .rating,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .price,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-variants,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-stock,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-cta {
    position: relative;
    color: transparent !important;
    border-color: transparent !important;
    background: #f3ede6 !important;
    border-radius: 6px;
    overflow: hidden;
}

.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-info h3::after,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .rating::after,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .price::after,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-variants::after,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-stock::after,
.product-card:has(img[loading="lazy"]:not(.is-loaded)) .product-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%);
    animation: lazySkeletonShimmer 1.25s ease-in-out infinite;
}


/* Hero slider images must never be hidden by skeleton */
.hero-slide img.hero-photo,
.hero-slide.lazy-media.is-loading img.hero-photo {
    opacity: 1 !important;
}

.hero-slide.lazy-media.is-loading::after {
    display: none !important;
}

.brand.lazy-media,.brand.is-loading{background:transparent!important;overflow:visible!important}.brand-logo{opacity:1!important}


/* Local storefront bugfixes: mobile nav, links, WhatsApp, product density */
.links a,
.footer a,
.footer ul a,
.contact-info a,
.faq-item a,
.breadcrumbs a {
    transition: color .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.footer a,
.footer ul a {
    color: var(--rose);
}

.footer a:hover,
.footer ul a:hover,
.footer a:focus-visible,
.footer ul a:focus-visible {
    color: #b81764;
}

.btn,
.product-cta,
.page-btn,
.page-number,
.nav-whatsapp,
.wa-float,
.tool,
.social a {
    transition: color .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.btn:hover,
.product-cta:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
    box-shadow: 0 14px 28px rgba(217, 43, 127, .18);
    transform: translateY(-2px);
}

.btn.ghost:hover,
.product-card .btn.ghost:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

.nav-whatsapp,
.wa-float,
.social a[aria-label="WhatsApp"] {
    background: var(--olive);
    border-color: var(--olive);
    color: #fff;
}

.nav-whatsapp:hover,
.wa-float:hover,
.social a[aria-label="WhatsApp"]:hover {
    background: var(--olive2);
    border-color: var(--olive2);
    color: #fff;
    box-shadow: 0 16px 34px rgba(79, 91, 57, .26);
    transform: translateY(-2px);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

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

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 980px) {
    .nav {
        z-index: 90;
    }

    .nav-inner {
        position: relative;
    }

    .nav-toggle {
        position: relative;
        z-index: 4;
    }

    .nav.is-open .links {
        display: flex;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 5;
        max-height: calc(100vh - 126px);
        overflow-y: auto;
    }

    .nav.is-open .nav-toggle {
        background: var(--rose);
        border-color: var(--rose);
        color: #fff;
    }

    .wa-float {
        position: fixed;
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        z-index: 120;
        display: grid;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .footer {
        padding-bottom: 92px;
    }

    .wa-float {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        font-size: 25px;
    }
}


/* Footer link and WhatsApp color correction */
.footer li,
.footer p {
    color: #5e554e;
}

.footer a,
.footer li a {
    color: #5e554e;
}

.footer a:hover,
.footer li a:hover {
    color: var(--rose);
}

.footer .social a {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
    box-shadow: none;
}

.footer .social a i {
    color: var(--ink);
}

.footer .social a:hover {
    background: #fff;
    border-color: rgba(217, 43, 127, .35);
    color: var(--rose);
    box-shadow: 0 12px 26px rgba(217, 43, 127, .12);
    transform: translateY(-2px);
}

.footer .social a:hover i {
    color: var(--rose);
}

.nav-whatsapp,
.wa-float {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
    box-shadow: none;
}

.nav-whatsapp:hover,
.wa-float:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
    box-shadow: 0 16px 34px rgba(217, 43, 127, .22);
}
