/* ============================================================
   Wishlist Boutique — Quiet Luxury Storefront
   Refined, fully responsive. All original class names preserved.
   ============================================================ */

:root {
    --white: #ffffff;
    --ink: #16130f;
    --soft-ink: #3a322a;
    --muted: #837a6f;
    --line: #e7ddcf;
    --line-soft: #f0e9dd;
    --paper: #f7f3ec;
    --cream: #fcfaf5;
    --sand: #ece2d2;
    --gold: #b78b4b;
    --gold-soft: #cda86d;
    --gold-dark: #8a6a38;
    --danger: #b42335;
    --success: #2f7d45;
    --shadow-sm: 0 10px 30px rgba(23, 20, 17, .06);
    --shadow: 0 24px 60px rgba(23, 20, 17, .10);
    --shadow-lg: 0 40px 90px rgba(23, 20, 17, .16);
    --radius: 14px;
    --radius-sm: 10px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Inter", "Segoe UI", system-ui, Arial, sans-serif;
    --shell: 1320px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, .logo-title {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: .002em;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

/* Reusable label/eyebrow ------------------------------------- */
.eyebrow,
.section-head p,
.category-intro p,
.vip-band p,
.product-body .category {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .26em;
    font-size: 11px;
    font-weight: 700;
}

/* ============================================================
   Announcement strip
   ============================================================ */
.top-strip {
    background: var(--ink);
    color: rgba(255, 255, 255, .92);
    text-align: center;
    padding: 9px 20px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* ============================================================
   Header / nav
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
    padding: 14px clamp(20px, 5.5vw, 64px);
    background: rgba(252, 250, 245, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.logo-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
}

.logo-title {
    font-size: 26px;
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
    color: var(--ink);
}

.logo-title span {
    color: var(--gold-dark);
    margin-left: 5px;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    padding: 11px 16px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease);
}

.menu-toggle:hover {
    background: var(--ink);
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft-ink);
    padding: 4px 0;
    transition: color .25s var(--ease);
}

.nav a:not(.cart-link)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.nav a:not(.cart-link):hover {
    color: var(--gold-dark);
}

.nav a:not(.cart-link):hover::after {
    transform: scaleX(1);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 96px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white) !important;
    font-size: 11px;
    letter-spacing: .12em;
    transition: background .25s var(--ease);
}

.cart-link:hover {
    background: var(--gold-dark);
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
}

.nav-backdrop {
    display: none;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: clamp(560px, 78vh, 740px);
    display: flex;
    align-items: center;
    padding: clamp(72px, 9vw, 110px) clamp(20px, 5.5vw, 64px);
    overflow: hidden;
}

.vault-hero {
    background:
        linear-gradient(90deg, rgba(247,243,236,.97) 0%, rgba(247,243,236,.90) 36%, rgba(247,243,236,.42) 66%, rgba(247,243,236,.06) 100%),
        url("assets/vault-hero.webp") center right / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(247,243,236,0), var(--paper));
    pointer-events: none;
}

.hero-content {
    width: min(620px, 100%);
    position: relative;
    z-index: 2;
    animation: rise .9s var(--ease) both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(52px, 8vw, 104px);
    line-height: .94;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero p {
    color: var(--soft-ink);
    line-height: 1.8;
    font-size: clamp(16px, 1.4vw, 18px);
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-note {
    display: inline-flex;
    color: var(--gold-dark);
    border-top: 1px solid var(--gold-soft);
    padding-top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 28px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(138, 106, 56, .28);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    box-shadow: none;
}

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

.btn-danger:hover {
    background: #8e1a29;
    border-color: #8e1a29;
    box-shadow: none;
}

.btn-block {
    width: 100%;
}

/* ============================================================
   Shared section heading
   ============================================================ */
.section {
    padding: clamp(56px, 8vw, 96px) clamp(20px, 5.5vw, 64px);
    max-width: var(--shell);
    margin: 0 auto;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.section-head p {
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1;
}

/* ============================================================
   Category section (home) — with professional sub-sections
   ============================================================ */
.category-section {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5.5vw, 64px) clamp(40px, 5vw, 60px);
    max-width: var(--shell);
    margin: 0 auto;
    background: transparent;
}

.category-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
}

.category-intro p {
    margin-bottom: 10px;
}

.category-intro h2 {
    font-size: clamp(38px, 5.4vw, 62px);
    line-height: 1;
}

.category-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
}

.category-tile {
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.category-card-wide {
    grid-column: 1 / -1;
}

.category-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.category-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23,20,17,0) 52%, rgba(23,20,17,.34) 100%);
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.category-image-link img {
    width: 100%;
    height: clamp(260px, 30vw, 380px);
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.category-card-wide .category-image-link img {
    height: clamp(300px, 33vw, 440px);
}

.category-copy {
    display: grid;
    gap: 12px;
    padding: clamp(22px, 2.4vw, 30px);
}

.category-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    color: var(--ink);
    transition: color .25s var(--ease);
}

.category-title:hover {
    color: var(--gold-dark);
}

.category-tile strong {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Sub-section links — refined editorial style (not chunky chips) */
.subcategory-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
}

.subcategory-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    color: var(--soft-ink);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .25s var(--ease);
}

.subcategory-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.subcategory-links a:hover {
    color: var(--gold-dark);
}

.subcategory-links a:hover::after {
    transform: scaleX(1);
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold-soft);
    box-shadow: var(--shadow);
}

.category-tile:hover .category-image-link img {
    transform: scale(1.05);
}

/* Category page sub-section links — pill style for clarity */
.category-page-links {
    margin: -14px 0 36px;
    padding-top: 0;
    border-top: 0;
    gap: 10px;
}

.category-page-links a {
    min-height: 40px;
    padding: 9px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
}

.category-page-links a::after {
    display: none;
}

.category-page-links a:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

/* ============================================================
   Promise / services strip (sub-sections of "why us")
   ============================================================ */
.promise-section {
    padding: clamp(48px, 6vw, 78px) clamp(20px, 5.5vw, 64px);
    max-width: var(--shell);
    margin: 0 auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
}

.promise-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 2.4vw, 30px);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.promise-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-sm);
}

.promise-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gold-soft);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 18px;
}

.promise-card h3 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.promise-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================================
   Product grid + cards
   ============================================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.product-card {
    position: relative;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 0;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

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

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: transform .7s var(--ease);
}

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

.product-body {
    padding: 22px;
}

.product-body .category {
    margin-bottom: 10px;
    display: block;
}

.product-body h3 {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 45px;
    margin-bottom: 10px;
    color: var(--ink);
}

.price,
.single-price,
.cart-item-price {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
}

.stock-warning {
    color: var(--danger);
    font-weight: 700;
    margin-top: 10px;
    font-size: 13px;
}

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

.product-actions .btn {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: .08em;
}

.empty {
    grid-column: 1 / -1;
    border: 1px dashed var(--line);
    background: var(--cream);
    border-radius: var(--radius);
    padding: 48px 34px;
    text-align: center;
    color: var(--muted);
    line-height: 1.8;
}

/* ============================================================
   VIP / contact band
   ============================================================ */
.vip-band {
    max-width: var(--shell);
    margin: clamp(20px, 3vw, 40px) auto clamp(60px, 7vw, 90px);
    padding: clamp(34px, 5vw, 60px) clamp(26px, 5vw, 64px);
    background:
        radial-gradient(120% 140% at 100% 0%, rgba(183,139,75,.30), rgba(183,139,75,0) 55%),
        var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.vip-band p {
    color: var(--gold-soft);
    margin-bottom: 12px;
}

.vip-band h2 {
    font-size: clamp(30px, 4.2vw, 50px);
    line-height: 1.05;
}

.vip-band .btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
    flex-shrink: 0;
}

.vip-band .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

/* ============================================================
   Cards / forms
   ============================================================ */
.page-card,
.summary-box,
.single-info {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label,
.qty-row label {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .02em;
}

.form-group span {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea,
.qty-row input,
.qty-row select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    padding: 14px 15px;
    border-radius: var(--radius-sm);
    font: inherit;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.qty-row input:focus,
.qty-row select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 3px rgba(183, 139, 75, .14);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.full {
    grid-column: 1 / -1;
}

/* ============================================================
   Single product
   ============================================================ */
.single {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(40px, 6vw, 72px) clamp(20px, 5.5vw, 64px);
    max-width: var(--shell);
    margin: 0 auto;
    align-items: start;
}

.single-img {
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: var(--radius);
    padding: clamp(16px, 2vw, 24px);
}

.single-img > img {
    width: 100%;
    max-height: 720px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.product-gallery {
    margin-top: 16px !important;
}

.product-gallery img {
    background: var(--white);
    border-radius: var(--radius-sm) !important;
    transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.product-gallery img:hover {
    transform: translateY(-2px);
    border-color: var(--gold-soft) !important;
}

.single-info {
    padding: clamp(26px, 3vw, 38px);
    position: sticky;
    top: 104px;
}

.single-info h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.single-info > p {
    color: var(--muted);
    line-height: 1.85;
}

.single-price {
    color: var(--ink) !important;
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.qty-row {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

/* ============================================================
   Cart + checkout
   ============================================================ */
.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

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

.cart-item-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
}

.cart-item-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    background: var(--paper);
    border-radius: var(--radius-sm);
}

.cart-item-info h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 8px;
}

.cart-item-info p {
    color: var(--muted);
    line-height: 1.6;
    margin-top: 6px;
    font-size: 14px;
}

.cart-item-subtotal strong {
    color: var(--ink);
}

.remove-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--danger);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
}

.remove-link:hover {
    text-decoration: underline;
}

.summary-box,
.checkout-form-card {
    padding: 28px;
    position: sticky;
    top: 104px;
}

.summary-box h3 {
    font-size: 28px;
}

.summary-row,
.checkout-product-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    color: var(--muted);
    font-size: 14px;
}

.summary-row strong,
.checkout-product-row strong {
    color: var(--ink);
}

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

.summary-total strong {
    font-family: var(--serif);
    font-size: 24px;
}

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

.checkout-error,
.alert,
.error {
    border: 1px solid #f2b8c1;
    background: #fff4f5;
    color: var(--danger);
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.success {
    border: 1px solid #b8dec4;
    background: #f1fbf4;
    color: var(--success);
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

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

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

/* ============================================================
   Contact
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
}

.modern-contact-card,
.modern-info-card {
    padding: clamp(28px, 3.4vw, 44px);
}

.contact-logo-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    margin-bottom: 26px;
}

.contact-logo {
    width: 120px;
}

.modern-contact-card h1,
.modern-info-card h3 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 16px;
}

.contact-text {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.whatsapp-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

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

.wa-circle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
}

.better-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.better-row:last-child {
    border-bottom: 0;
}

.row-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .04em;
}

.whatsapp-icon {
    background: var(--gold);
    color: var(--ink);
}

.better-row strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

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

/* ============================================================
   Footer — multi-column with sub-section links
   ============================================================ */
.footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #100d0a;
    color: rgba(255, 255, 255, .68);
}

.footer-top {
    max-width: var(--shell);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 60px);
    padding: clamp(48px, 6vw, 76px) clamp(20px, 5.5vw, 64px) clamp(34px, 4vw, 50px);
}

.footer-brand .logo-title {
    color: #fff;
    font-size: 30px;
    margin-bottom: 16px;
}

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

.footer-brand p {
    line-height: 1.8;
    font-size: 14px;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
    display: block;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    padding: 7px 0;
    transition: color .25s var(--ease);
}

.footer-col a:hover {
    color: var(--gold-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 22px 5.5%;
    font-size: 12px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .5);
}

.muted-text {
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width: 900px) {
    .header {
        min-height: 70px;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .nav {
        display: none;
        position: fixed;
        inset: 0 0 0 auto;
        width: min(330px, 86vw);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 26px 26px calc(26px + env(safe-area-inset-bottom));
        background: var(--cream);
        border-left: 1px solid var(--line);
        box-shadow: -30px 0 60px rgba(23, 20, 17, .18);
        overflow-y: auto;
        z-index: 200;
    }

    .nav.open {
        display: flex;
        animation: navSlide .38s var(--ease);
    }

    @keyframes navSlide {
        from { transform: translateX(100%); }
        to   { transform: translateX(0); }
    }

    .nav a,
    .cart-link {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 4px;
        font-size: 14px;
        letter-spacing: .1em;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        color: var(--ink) !important;
    }

    .nav a:not(.cart-link)::after {
        display: none;
    }

    .cart-link {
        margin-top: 20px;
        justify-content: center;
        border-radius: 999px;
        border: none;
        padding: 15px;
        background: var(--ink);
        color: var(--white) !important;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(23, 20, 17, .42);
        opacity: 0;
        visibility: hidden;
        transition: opacity .4s var(--ease), visibility .4s var(--ease);
        z-index: 150;
    }

    .nav-backdrop.show {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        min-height: 600px;
        align-items: flex-start;
        padding-top: clamp(56px, 12vw, 80px);
    }

    .vault-hero {
        background:
            linear-gradient(180deg, rgba(247,243,236,.96) 0%, rgba(247,243,236,.84) 44%, rgba(247,243,236,.30) 100%),
            url("assets/vault-hero.webp") center 28% / cover no-repeat;
    }

    .category-intro {
        display: block;
    }
    .category-intro p {
        margin-bottom: 8px;
    }

    .cart-layout,
    .checkout-layout,
    .single,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .summary-box,
    .checkout-form-card,
    .single-info {
        position: static;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .top-strip {
        font-size: 9.5px;
        letter-spacing: .14em;
        line-height: 1.5;
        padding: 8px 14px;
    }

    .header {
        padding: 12px 5%;
    }

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

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

    .hero {
        min-height: 540px;
    }

    .hero h1 {
        font-size: clamp(44px, 14vw, 60px);
    }

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

    .section,
    .category-section,
    .promise-section,
    .single {
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-head,
    .category-intro {
        display: block;
    }

    .section-head {
        padding-bottom: 18px;
        margin-bottom: 28px;
    }

    .section-head p {
        margin-bottom: 8px;
    }

    /* Categories: single column, full-width cards — readable on phone */
    .category-band {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-image-link img,
    .category-card-wide .category-image-link img {
        height: clamp(220px, 56vw, 300px);
    }

    .category-copy {
        padding: 22px 20px 24px;
    }

    .category-title {
        font-size: 30px;
    }

    .subcategory-links {
        gap: 6px 16px;
    }

    .subcategory-links a {
        font-size: 12px;
    }

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

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

    .product-body {
        padding: 16px;
    }

    .product-body h3 {
        font-size: 14px;
        min-height: auto;
    }

    .price {
        font-size: 20px;
    }

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

    .product-actions .btn {
        width: 100%;
    }

    .cart-item-card {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .cart-item-image img {
        width: 100px;
        height: 100px;
    }

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

    .vip-band {
        display: block;
        text-align: left;
        padding: 30px 24px;
    }

    .vip-band .btn {
        margin-top: 22px;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
        padding-top: 44px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
