/* ============================================================
   ARESHI FEB — Premium Luxury Design System
   Typography: Playfair Display (headings) + Poppins (body)
   Layered on top of style.css / brand.css for a cohesive luxe feel
   ============================================================ */

:root {
    --af-gold: #C8A96A;
    --af-gold-soft: #d9c191;
    --af-gold-deep: #a8884a;
    --af-ink: #111111;
    --af-charcoal: #1a1a1a;
    --af-noir: #0d0d0d;
    --af-cream: #f8f6f3;
    --af-rose: #f3ede6;
    --af-muted: #8a8a8a;
    --af-line: rgba(200, 169, 106, 0.22);
    --af-shadow-sm: 0 6px 18px rgba(17, 17, 17, .08);
    --af-shadow: 0 18px 50px rgba(17, 17, 17, .14);
    --af-shadow-lg: 0 30px 80px rgba(17, 17, 17, .22);
    --af-radius: 18px;
    --af-radius-sm: 12px;
    --af-ease: cubic-bezier(.22, 1, .36, 1);
    --af-serif: "Playfair Display", Georgia, serif;
    --af-sans: "Poppins", "Inter", system-ui, sans-serif;
    --af-nav-h: 78px;
    --af-announce-h: 36px;
}

/* ---------- Typography ---------- */
body {
    font-family: var(--af-sans);
    background: var(--af-cream);
    color: var(--af-charcoal);
    -webkit-font-smoothing: antialiased;
    letter-spacing: .1px;
    padding-top: calc(var(--af-announce-h) + var(--af-nav-h));
}

/* Hero / full-bleed pages: let the fixed header overlay the content */
body.header-overlay {
    padding-top: 0;
}
h1, h2, h3, h4, h5, .display-serif, .text-gold, .brand-text, .footer-brand-name {
    font-family: var(--af-serif);
    letter-spacing: .2px;
}
p, li, input, button, .form-control, .btn { font-family: var(--af-sans); }
.text-gold { color: var(--af-gold) !important; }
.font-light { font-weight: 300; }

/* Eyebrow / kicker label */
.af-eyebrow {
    font-family: var(--af-sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .72rem;
    color: var(--af-gold);
    font-weight: 600;
}
.af-eyebrow::before,
.af-eyebrow::after { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--af-gold); vertical-align: middle; margin: 0 10px; opacity: .6; }

/* ---------- Buttons ---------- */
.btn-luxury, .btn-outline-luxury, .btn-outline-gold {
    font-family: var(--af-sans);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 500;
    border-radius: 999px;
    padding: .85rem 2.1rem;
    transition: all .4s var(--af-ease);
    position: relative;
    overflow: hidden;
}
.btn-luxury {
    background: linear-gradient(135deg, var(--af-gold), var(--af-gold-deep));
    border: 1px solid var(--af-gold);
    color: #1a140a;
    box-shadow: 0 10px 30px rgba(200, 169, 106, .35);
}
.btn-luxury:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(200, 169, 106, .5); color: #000; }
.btn-outline-luxury { border: 1px solid var(--af-gold); color: var(--af-gold); background: transparent; }
.btn-outline-luxury:hover { background: var(--af-gold); color: #1a140a; transform: translateY(-2px); }
.btn-outline-gold { border: 1px solid rgba(255,255,255,.25); color: #fff; background: transparent; }
.btn-outline-gold:hover { background: #fff; color: #111; }
.bg-gold, .badge.bg-gold { background: var(--af-gold) !important; color: #1a140a !important; }

/* ---------- Fixed site header (announcement + navbar) ---------- */
.af-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* ---------- Announcement bar ---------- */
.af-announce {
    background: linear-gradient(90deg, var(--af-noir), rgba(200,169,106,.18), var(--af-noir));
    color: var(--af-gold-soft);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    height: var(--af-announce-h);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--af-line);
    overflow: hidden;
}
.af-announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.af-announce .af-marquee { display: inline-block; animation: afMarquee 22s linear infinite; }
@keyframes afMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.af-announce i { color: var(--af-gold); }

/* ---------- Glass sticky navbar ---------- */
.navbar-luxury {
    height: var(--af-nav-h);
    background: rgba(13, 13, 13, .55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background .4s var(--af-ease), border-color .4s var(--af-ease), height .4s var(--af-ease), box-shadow .4s var(--af-ease);
    position: static;
}
.navbar-luxury::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--af-gold) 50%, transparent 95%);
    opacity: .25;
    transition: opacity .4s var(--af-ease);
}
.navbar-luxury.scrolled {
    background: rgba(13, 13, 13, .92);
    border-bottom-color: var(--af-line);
    height: 64px;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.navbar-luxury.scrolled::after { opacity: .65; }

.navbar-luxury .navbar-brand {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.navbar-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform .5s var(--af-ease), filter .4s var(--af-ease);
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.35));
}
.navbar-luxury:hover .navbar-logo { transform: scale(1.04); }
.navbar-luxury.scrolled .navbar-logo { transform: scale(.92); }

.brand-text {
    font-family: var(--af-serif);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    background: linear-gradient(180deg, #ffffff 0%, var(--af-gold-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.1;
}

.navbar-luxury .nav-link {
    font-family: var(--af-sans);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85) !important;
    position: relative;
    padding: .5rem .85rem !important;
    transition: color .3s ease;
    white-space: nowrap;
}
.navbar-luxury .nav-link::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 4px;
    width: 0; height: 1.5px;
    background: var(--af-gold);
    transition: width .35s var(--af-ease), left .35s var(--af-ease);
    border-radius: 1px;
}
.navbar-luxury .nav-link:hover, .navbar-luxury .nav-link.active { color: #fff !important; }
.navbar-luxury .nav-link:hover::after, .navbar-luxury .nav-link.active::after { width: 55%; left: 22%; }

/* Nav icon button hover (base transition) */
.cart-count {
    font-family: var(--af-sans);
    font-size: .6rem; font-weight: 700;
    min-width: 17px; min-height: 17px;
    display: grid; place-items: center;
    padding: 0 4px;
    letter-spacing: .5px;
}
.af-bell .dot {
    position: absolute;
    top: 6px; right: 6px;
    width: 8px; height: 8px;
    background: var(--af-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(13,13,13,.6);
}
.user-name { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.9); max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Icon action buttons (wishlist / cart / search / account) */
.navbar-luxury .navbar-nav.align-items-lg-center { gap: .15rem; }
.navbar-luxury .nav-link[aria-label]:not(.dropdown-toggle) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    transition: background .3s var(--af-ease), color .3s var(--af-ease), transform .3s var(--af-ease);
}
.navbar-luxury .nav-link[aria-label] i { transition: transform .3s var(--af-ease), color .3s var(--af-ease); }
.navbar-luxury .nav-link[aria-label]:not(.dropdown-toggle):hover,
.navbar-luxury .nav-link[aria-label]:not(.dropdown-toggle):focus-visible {
    background: rgba(200,169,106,.16);
    color: var(--af-gold) !important;
}
.navbar-luxury .nav-link[aria-label]:hover i { transform: translateY(-2px) scale(1.1); color: var(--af-gold); }

/* Toggler */
.navbar-toggler { border: 1.5px solid rgba(200,169,106,.5); padding: 6px 10px; border-radius: 999px; transition: var(--af-ease); outline: none; }
.navbar-toggler:hover { background: var(--af-gold); border-color: var(--af-gold); }
.navbar-toggler:hover .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13,13,13,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,169,106,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

@media (max-width: 991px) {
    .navbar-luxury { padding: 10px 0; }
    .navbar-luxury .navbar-collapse {
        background: rgba(13,13,13,.97);
        backdrop-filter: blur(18px);
        border-radius: var(--af-radius);
        padding: 18px;
        margin-top: 14px;
        box-shadow: var(--af-shadow-lg);
        border: 1px solid var(--af-line);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        position: absolute;
        top: 100%; left: 14px; right: 14px;
        z-index: 1080;
    }
    .navbar-luxury .nav-link { margin: 0; padding: 11px 14px !important; border-radius: var(--af-radius-sm); }
    .navbar-luxury .nav-link:hover, .navbar-luxury .nav-link.active { background: rgba(200,169,106,.08); }
    .navbar-luxury .nav-link::after { display: none; }
    .navbar-logo { height: 30px; }
    .brand-text { font-size: 1.15rem; letter-spacing: 1.5px; }
}
@media (max-width: 575px) {
    .navbar-luxury .navbar-collapse { padding: 14px; left: 10px; right: 10px; }
    .navbar-logo { height: 28px; }
    .brand-text { font-size: 1.05rem; letter-spacing: 1px; }
}

/* ---------- Mega menu ---------- */
.has-mega { position: static; }
.af-mega {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: rgba(13,13,13,.97);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-top: 1px solid var(--af-line);
    box-shadow: var(--af-shadow-lg);
    padding: 2.4rem 0;
    opacity: 0; visibility: hidden;
    transform: translateY(14px);
    transition: all .4s var(--af-ease);
    z-index: 1040;
}
.af-mega.show { opacity: 1; visibility: visible; transform: translateY(0); }
.af-mega .mega-col h6 { font-family: var(--af-sans); color: var(--af-gold); font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.af-mega .mega-col a { display: block; color: rgba(255,255,255,.8); padding: .34rem 0; font-size: .92rem; transition: color .25s, padding-left .25s; font-weight: 400; }
.af-mega .mega-col a:hover { color: var(--af-gold); padding-left: 8px; }
.af-mega .mega-feature { border-radius: var(--af-radius-sm); overflow: hidden; position: relative; border: 1px solid var(--af-line); }
.af-mega .mega-feature img { width: 100%; height: 240px; object-fit: cover; transition: transform .9s var(--af-ease); }
.af-mega .mega-feature:hover img { transform: scale(1.08); }
.af-mega .mega-feature .mega-feature-cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.75)); color: #fff; }

/* ---------- Full-screen hero ---------- */
.hero-slider-section { position: relative; }
.af-hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.af-hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.2s var(--af-ease), transform 7s linear;
    display: flex; align-items: center;
}
.af-hero-slide.active { opacity: 1; transform: scale(1); }
.af-hero-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(13,13,13,.72) 0%, rgba(13,13,13,.35) 45%, rgba(13,13,13,.15) 100%);
}
.af-hero-content { position: relative; z-index: 2; color: #fff; max-width: 640px; }
.af-hero-content .af-eyebrow { color: var(--af-gold-soft); margin-bottom: 1.2rem; }
.af-hero-title {
    font-family: var(--af-serif);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.02;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.af-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 2rem; font-weight: 300; }
.af-hero-dots { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 3; }
.af-hero-dots button { width: 36px; height: 3px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: background .3s, width .3s; }
.af-hero-dots button.active { background: var(--af-gold); width: 54px; }
.af-hero-scroll { position: absolute; bottom: 30px; right: 40px; z-index: 3; color: #fff; writing-mode: vertical-rl; letter-spacing: 3px; font-size: .7rem; text-transform: uppercase; opacity: .8; }
.af-hero-scroll::after { content: ""; display: block; width: 1px; height: 50px; background: linear-gradient(var(--af-gold), transparent); margin: 10px auto 0; }

/* GSAP reveal helpers */
.gsap-fade { opacity: 0; }

/* ---------- Sections ---------- */
.section-title { margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); position: relative; display: inline-block; }
.section-title h2::after {
    content: ""; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--af-gold);
}
.bg-light { background: #fff !important; }

/* ---------- Category cards ---------- */
.category-card { display: block; text-align: center; }
.category-image { position: relative; overflow: hidden; border-radius: var(--af-radius); aspect-ratio: 3/4; box-shadow: var(--af-shadow-sm); }
.category-image img { width: 100%; height: auto; aspect-ratio: 3/4; display: block; object-fit: cover; transition: transform .9s var(--af-ease); }
@supports not (aspect-ratio: 3 / 4) {
    .category-image { height: 230px; }
    .category-image img { height: 230px; }
}
.category-card:hover .category-image img { transform: scale(1.08); }
.category-overlay {
    position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 1.4rem;
    background: linear-gradient(180deg, transparent 45%, rgba(13,13,13,.78));
    color: #fff; font-family: var(--af-serif); font-size: 1.15rem; letter-spacing: 1px;
    transition: background .4s;
}
.category-card:hover .category-overlay { background: linear-gradient(180deg, rgba(200,169,106,.2) 0%, rgba(13,13,13,.85) 100%); }
.category-name { font-family: var(--af-serif); font-size: 1.05rem; margin-top: .9rem; color: var(--af-charcoal); transition: color .3s; }
.category-card:hover .category-name { color: var(--af-gold-deep); }

/* ---------- Product cards ---------- */
.product-card {
    background: #fff;
    border-radius: var(--af-radius);
    overflow: hidden;
    box-shadow: var(--af-shadow-sm);
    transition: transform .5s var(--af-ease), box-shadow .5s var(--af-ease);
    height: 100%;
    border: 1px solid rgba(0,0,0,.04);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--af-shadow-lg); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--af-rose); }
.product-image .primary-image, .product-image .secondary-image {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: opacity .6s var(--af-ease), transform .9s var(--af-ease);
}
.product-image .secondary-image { opacity: 0; }
.product-card:hover .primary-image { opacity: 0; }
.product-card:hover .secondary-image { opacity: 1; transform: scale(1.06); }
.product-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    font-family: var(--af-sans); font-size: .66rem; letter-spacing: 1.5px; text-transform: uppercase;
    padding: .35rem .7rem; border-radius: 999px; font-weight: 600;
}
.product-badge.sale { background: var(--af-ink); color: #fff; }
.product-badge.new { background: var(--af-gold); color: #1a140a; }

.product-actions {
    position: absolute; right: 14px; top: 14px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 4; transform: translateX(20px); opacity: 0;
    transition: transform .45s var(--af-ease), opacity .45s var(--af-ease);
}
.product-card:hover .product-actions { transform: translateX(0); opacity: 1; }
.product-action-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
    display: grid; place-items: center; color: var(--af-ink);
    box-shadow: var(--af-shadow-sm); transition: all .3s var(--af-ease);
    border: 1px solid rgba(0,0,0,.05);
}
.product-action-btn:hover { background: var(--af-gold); color: #fff; transform: scale(1.1) rotate(4deg); }
.product-action-btn.active-wish { background: var(--af-gold); color: #fff; }

.product-quickview-bar {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
    background: var(--af-noir); color: #fff; text-align: center;
    font-family: var(--af-sans); font-size: .74rem; letter-spacing: 2px; text-transform: uppercase;
    padding: .8rem; cursor: pointer;
    transform: translateY(100%); transition: transform .45s var(--af-ease);
}
.product-card:hover .product-quickview-bar { transform: translateY(0); }

.product-card .p-3 { padding: 1.3rem !important; }
.product-card h5 { font-family: var(--af-serif); font-size: 1.1rem; }

/* ---------- Look cards ---------- */
.look-card { background: #fff; border-radius: var(--af-radius); overflow: hidden; box-shadow: var(--af-shadow-sm); transition: transform .5s var(--af-ease), box-shadow .5s; }
.look-card:hover { transform: translateY(-8px); box-shadow: var(--af-shadow); }
.look-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .9s var(--af-ease); }
.look-card:hover img { transform: scale(1.05); }
.look-badge { display: inline-block; font-family: var(--af-sans); font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--af-gold-deep); border: 1px solid var(--af-line); padding: .3rem .8rem; border-radius: 999px; }

/* ---------- Luxury / value cards ---------- */
.luxury-card { background: #fff; border-radius: var(--af-radius); border: 1px solid rgba(0,0,0,.05); box-shadow: var(--af-shadow-sm); transition: transform .5s var(--af-ease), box-shadow .5s; }
.luxury-card:hover { transform: translateY(-8px); box-shadow: var(--af-shadow); }
.values-banner { filter: saturate(1.05); }

/* ---------- Testimonials ---------- */
.testimonial-card { background: #fff; border-radius: var(--af-radius); padding: 2.2rem; box-shadow: var(--af-shadow-sm); border: 1px solid rgba(0,0,0,.04); height: 100%; }
.testimonial-card p { font-style: italic; font-family: var(--af-serif); font-size: 1.05rem; }

/* ---------- Newsletter ---------- */
.newsletter-form .input-group, .footer-newsletter-form .input-group-footer {
    border: 1px solid var(--af-line); border-radius: 999px; overflow: hidden; background: #fff;
    display: flex; align-items: center; padding: .3rem .3rem .3rem 1.2rem;
}
.newsletter-form .form-control, .footer-newsletter-form .form-control-footer {
    border: none; background: transparent; box-shadow: none; font-family: var(--af-sans);
}
.newsletter-form .btn-luxury, .footer-newsletter-form .btn-footer-subscribe {
    border-radius: 999px; white-space: nowrap;
}

/* ---------- Instagram ---------- */
.instagram-feed { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.instagram-item { position: relative; overflow: hidden; border-radius: var(--af-radius-sm); aspect-ratio: 1; cursor: pointer; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--af-ease); }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(13,13,13,.5); color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity .4s; }
.instagram-item:hover .instagram-overlay { opacity: 1; }

/* ---------- Skeleton loaders ---------- */
.skeleton { background: linear-gradient(100deg, #ece8e1 30%, #f6f3ee 50%, #ece8e1 70%); background-size: 200% 100%; animation: af-shimmer 1.4s infinite linear; border-radius: 8px; }
@keyframes af-shimmer { to { background-position: -200% 0; } }
.skeleton-card { background: #fff; border-radius: var(--af-radius); overflow: hidden; box-shadow: var(--af-shadow-sm); }
.skeleton-card .sk-img { aspect-ratio: 3/4; }
.skeleton-card .sk-line { height: 12px; margin: 12px 16px 0; }
.skeleton-card .sk-line.short { width: 50%; }
.sk-img-wrap { position: relative; overflow: hidden; background: var(--af-rose); }
img.af-lazy { opacity: 0; transition: opacity .6s var(--af-ease); }
img.af-lazy.loaded { opacity: 1; }

/* ---------- Quick view modal ---------- */
.af-modal-overlay {
    position: fixed; inset: 0; background: rgba(13,13,13,.7); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; z-index: 2000;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--af-ease);
    padding: 1rem;
}
.af-modal-overlay.show { opacity: 1; visibility: visible; }
.af-modal {
    background: #fff; border-radius: var(--af-radius); max-width: 920px; width: 100%;
    max-height: 90vh; overflow: auto; transform: translateY(30px) scale(.98);
    transition: transform .5s var(--af-ease); box-shadow: var(--af-shadow-lg);
}
.af-modal-overlay.show .af-modal { transform: translateY(0) scale(1); }
.af-modal-close { position: absolute; top: 16px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--af-cream); color: var(--af-ink); font-size: 1.1rem; cursor: pointer; z-index: 5; transition: background .3s, transform .3s; }
.af-modal-close:hover { background: var(--af-gold); color: #fff; transform: rotate(90deg); }
.af-qv-gallery img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--af-radius-sm); }
.af-qv-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.af-qv-thumbs img { width: 70px; height: 90px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: border-color .3s; }
.af-qv-thumbs img.active { border-color: var(--af-gold); }
.af-qv-attr { display: inline-flex; align-items: center; padding: .35rem .9rem; border: 1px solid var(--af-line); border-radius: 999px; margin: 4px 6px 4px 0; cursor: pointer; font-size: .8rem; transition: all .3s; }
.af-qv-attr.active, .af-qv-attr:hover { background: var(--af-gold); color: #1a140a; border-color: var(--af-gold); }

/* ---------- Sticky add to cart ---------- */
.af-sticky-cart {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1045;
    background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
    border-top: 1px solid var(--af-line); box-shadow: 0 -10px 40px rgba(0,0,0,.12);
    transform: translateY(110%); transition: transform .5s var(--af-ease);
    padding: .9rem 0;
}
.af-sticky-cart.show { transform: translateY(0); }
.af-sticky-cart .af-sc-thumb { width: 54px; height: 70px; object-fit: cover; border-radius: 8px; }

/* ---------- Product page gallery zoom ---------- */
.product-gallery-main { position: relative; overflow: hidden; border-radius: var(--af-radius); background: var(--af-rose); cursor: zoom-in; aspect-ratio: 4/5; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.product-gallery-main.zooming img { transform: scale(2); }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb { width: 84px; height: 104px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color .3s, transform .3s; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--af-gold); transform: translateY(-3px); }
.zoom-hint { position: absolute; bottom: 12px; right: 12px; background: rgba(13,13,13,.6); color: #fff; font-family: var(--af-sans); font-size: .68rem; letter-spacing: 1px; padding: .35rem .7rem; border-radius: 999px; pointer-events: none; opacity: 0; transition: opacity .3s; }
.product-gallery-main:hover .zoom-hint { opacity: 1; }
.size-option { border: 1px solid var(--af-line); border-radius: 8px; padding: .5rem .9rem; cursor: pointer; font-family: var(--af-sans); transition: all .3s var(--af-ease); }
.size-option:hover, .size-option.selected { background: var(--af-gold); color: #1a140a; border-color: var(--af-gold); }
.color-option { width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--af-line); transition: transform .3s; }
.color-option.selected, .color-option:hover { transform: scale(1.12); box-shadow: 0 0 0 2px var(--af-gold); }

/* ---------- Size guide / delivery info ---------- */
.af-info-pill { display: flex; gap: .8rem; padding: 1rem 1.2rem; border: 1px solid var(--af-line); border-radius: var(--af-radius-sm); margin-bottom: .8rem; align-items: center; background: #fff; }
.af-info-pill i { color: var(--af-gold); font-size: 1.2rem; }
.af-size-table th, .af-size-table td { font-family: var(--af-sans); }
.af-size-table thead th { background: var(--af-noir); color: var(--af-gold-soft); }

/* ---------- Coupon UX ---------- */
.coupon-box { display: flex; gap: .6rem; }
.coupon-box .form-control { border-radius: 999px; border: 1px solid var(--af-line); }
.coupon-msg { font-size: .8rem; margin-top: .5rem; }
.coupon-msg.ok { color: #1a7f37; }
.coupon-msg.err { color: #c0392b; }
.coupon-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--af-cream); border: 1px dashed var(--af-gold); border-radius: 999px; padding: .35rem .9rem; font-size: .8rem; }

/* ---------- Notifications dropdown ---------- */
.af-bell { position: relative; }
.af-bell .dot { position: absolute; top: 2px; right: 2px; width: 9px; height: 9px; background: #e74c3c; border-radius: 50%; border: 2px solid var(--af-noir); }
.af-notif-menu { position: absolute; top: 48px; right: 0; width: 340px; background: #fff; border-radius: var(--af-radius); box-shadow: var(--af-shadow-lg); border: 1px solid rgba(0,0,0,.06); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .35s var(--af-ease); z-index: 1100; overflow: hidden; }
.af-notif-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.af-notif-item { display: flex; gap: 12px; padding: 1rem 1.1rem; border-bottom: 1px solid rgba(0,0,0,.05); transition: background .3s; cursor: pointer; }
.af-notif-item:hover { background: var(--af-cream); }
.af-notif-item.unread { background: rgba(200,169,106,.06); }
.af-notif-item i { color: var(--af-gold); font-size: 1.1rem; margin-top: 3px; }
.af-notif-item h6 { font-family: var(--af-sans); font-size: .88rem; margin: 0 0 2px; }
.af-notif-item p { font-size: .78rem; color: var(--af-muted); margin: 0; }

/* ---------- Account / dashboard ---------- */
.account-menu a { font-family: var(--af-sans); letter-spacing: .5px; }
.checkout-card { background: #fff; border-radius: var(--af-radius); box-shadow: var(--af-shadow-sm); border: 1px solid rgba(0,0,0,.04); }
.avatar-placeholder { width: 92px; height: 92px; border-radius: 50%; background: linear-gradient(135deg, var(--af-gold), var(--af-gold-deep)); display: grid; place-items: center; color: #fff; margin: 0 auto; box-shadow: var(--af-shadow); }

/* Order tracking steps */
.af-track-steps { margin-top: 1rem; }
.af-track-line { position: absolute; top: 16px; left: 10%; right: 10%; height: 2px; background: rgba(0,0,0,.1); z-index: 0; }
.af-track-step { position: relative; z-index: 1; flex: 1; }
.af-track-dot { width: 34px; height: 34px; border-radius: 50%; background: #eee; color: #999; display: grid; place-items: center; margin: 0 auto; transition: all .4s; }
.af-track-step.done .af-track-dot { background: var(--af-gold); color: #fff; box-shadow: 0 6px 16px rgba(200,169,106,.4); }
.af-track-step.done ~ .af-track-line, .af-track-line { }
.af-track-step small { font-family: var(--af-sans); font-size: .72rem; }

/* ---------- Account area (sidebar + tables + stats) ---------- */
.account-sidebar { background: #fff; border-radius: var(--af-radius); padding: 1.75rem 1.25rem; border: 1px solid rgba(0,0,0,.05); box-shadow: var(--af-shadow-sm); position: sticky; top: calc(var(--af-announce-h) + var(--af-nav-h) + 20px); }
.account-menu { list-style: none; padding: 0; margin: 0; }
.account-menu li { margin-bottom: 4px; }
.account-menu a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; color: var(--af-charcoal);
    text-decoration: none; border-radius: var(--af-radius-sm);
    font-family: var(--af-sans); font-size: .9rem; letter-spacing: .3px; font-weight: 500;
    transition: background .3s var(--af-ease), color .3s var(--af-ease), transform .3s var(--af-ease);
}
.account-menu a i { width: 20px; text-align: center; color: var(--af-gold); transition: color .3s var(--af-ease); }
.account-menu a:hover { background: rgba(200,169,106,.1); color: var(--af-gold-deep); transform: translateX(3px); }
.account-menu a.active {
    background: linear-gradient(90deg, rgba(200,169,106,.2), rgba(200,169,106,.06));
    color: var(--af-gold-deep); font-weight: 600;
    box-shadow: inset 3px 0 0 var(--af-gold);
}
.account-menu a.active i, .account-menu a:hover i { color: var(--af-gold-deep); }
.account-menu a.text-danger { color: #c0392b; }
.account-menu a.text-danger i { color: #c0392b; }
.account-menu a.text-danger:hover { background: rgba(192,57,43,.08); color: #c0392b; transform: translateX(3px); }

.account-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.account-table th {
    font-family: var(--af-sans); font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--af-gold-deep); font-weight: 600; padding: .85rem 1rem; text-align: left;
    border-bottom: 2px solid var(--af-line); white-space: nowrap;
}
.account-table td { padding: .9rem 1rem; border-bottom: 1px solid rgba(0,0,0,.06); color: var(--af-charcoal); vertical-align: middle; font-size: .92rem; }
.account-table tbody tr { transition: background .25s ease; }
.account-table tbody tr:hover { background: var(--af-cream); }
.account-table tbody tr:last-child td { border-bottom: none; }
.account-table .text-end { text-align: right; }

.stat-card {
    display: flex; align-items: center; gap: 1rem;
    background: #fff; border: 1px solid rgba(0,0,0,.05); border-radius: var(--af-radius);
    padding: 1.1rem 1.25rem; box-shadow: var(--af-shadow-sm); height: 100%;
    transition: transform .4s var(--af-ease), box-shadow .4s var(--af-ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--af-shadow); }
.stat-card > i { font-size: 1.5rem; width: 46px; height: 46px; border-radius: 12px; background: rgba(200,169,106,.12); display: grid; place-items: center; flex-shrink: 0; }
.stat-card h4 { font-family: var(--af-serif); font-size: 1.4rem; color: var(--af-charcoal); line-height: 1.1; }

@media (max-width: 991.98px) {
    .account-sidebar { position: static; }
}

/* ---------- Search overlay (premium) ---------- */
.af-search {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--af-ease), visibility .35s var(--af-ease);
}
.af-search.active { opacity: 1; visibility: visible; }

.af-search__scrim {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .78);
    background: radial-gradient(120% 80% at 50% 0%, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .94) 100%);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    cursor: pointer;
}

.af-search__panel {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin-top: clamp(48px, 12vh, 120px);
    padding: 0 24px;
    transform: translateY(18px) scale(.98);
    transition: transform .45s var(--af-ease);
}
.af-search.active .af-search__panel { transform: translateY(0) scale(1); }

.af-search__close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, .4);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .3s var(--af-ease), color .3s var(--af-ease), transform .3s var(--af-ease);
}
.af-search__close:hover { background: var(--af-gold); color: #111; transform: rotate(90deg); }

.af-search__inner { text-align: center; }
.af-search__eyebrow { display: inline-block; margin-bottom: .9rem; }
.af-search__title {
    font-family: var(--af-serif);
    font-weight: 600;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.af-search__field {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(200, 169, 106, .4);
    border-radius: 999px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    transition: border-color .3s var(--af-ease), background .3s var(--af-ease), box-shadow .3s var(--af-ease);
}
.af-search__field:focus-within {
    border-color: var(--af-gold);
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, .18), 0 24px 70px rgba(0, 0, 0, .45);
}
.af-search__icon {
    position: absolute;
    left: 26px;
    color: var(--af-gold);
    font-size: 1.1rem;
    pointer-events: none;
}
.af-search__input {
    flex: 1;
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 110px 22px 60px;
    font-size: 1.15rem;
    font-family: var(--af-sans);
    color: #fff;
}
.af-search__input:focus { outline: none; }
.af-search__input::placeholder { color: rgba(255, 255, 255, .5); }

.af-search__clear {
    position: absolute;
    right: 74px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .25s var(--af-ease), color .25s var(--af-ease);
}
.af-search__clear:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.af-search__submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--af-gold), var(--af-gold-deep));
    color: #111;
    font-size: 1.1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .3s var(--af-ease), box-shadow .3s var(--af-ease);
}
.af-search__submit:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 10px 30px rgba(200, 169, 106, .4); }

/* Live results */
.af-search__results {
    margin-top: 14px;
    background: rgba(20, 20, 20, .72);
    border: 1px solid rgba(200, 169, 106, .22);
    border-radius: var(--af-radius);
    padding: 8px;
    max-height: 52vh;
    overflow-y: auto;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.af-search__results[hidden] { display: none; }
.af-search__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--af-radius-sm);
    text-decoration: none;
    color: #fff;
    transition: background .2s var(--af-ease);
}
.af-search__item:hover,
.af-search__item.is-active { background: rgba(200, 169, 106, .14); }
.af-search__thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(255, 255, 255, .06);
    flex-shrink: 0;
}
.af-search__meta { display: flex; flex-direction: column; min-width: 0; }
.af-search__name {
    font-family: var(--af-sans);
    font-size: .95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.af-search__cat {
    font-size: .72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--af-gold);
}
.af-search__price { margin-left: auto; font-weight: 600; white-space: nowrap; }
.af-search__price s { color: var(--af-muted); font-weight: 400; margin-right: 6px; }
.af-search__empty {
    padding: 22px 14px;
    text-align: center;
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}
.af-search__viewall {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--af-gold);
    text-decoration: none;
    font-size: .88rem;
    letter-spacing: .5px;
}
.af-search__viewall:hover { text-decoration: underline; }

/* Suggested chips */
.af-search__suggest {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.af-search__suggest-label {
    color: rgba(255, 255, 255, .6);
    font-family: var(--af-sans);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.af-search__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.af-search__chip {
    font-family: var(--af-sans);
    font-size: .82rem;
    color: #fff;
    text-decoration: none;
    padding: .42rem .95rem;
    border: 1px solid rgba(200, 169, 106, .4);
    border-radius: 999px;
    transition: background .3s var(--af-ease), color .3s var(--af-ease), border-color .3s var(--af-ease);
}
.af-search__chip:hover { background: var(--af-gold); color: #111; border-color: var(--af-gold); }

@media (max-width: 575.98px) {
    .af-search__close { top: 16px; right: 16px; width: 42px; height: 42px; }
    .af-search__input { padding: 18px 96px 18px 52px; font-size: 1rem; }
    .af-search__submit { width: 44px; height: 44px; }
    .af-search__clear { right: 64px; }
}

/* ---------- Toast ---------- */
.af-toast {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(140%);
    background: var(--af-noir); color: #fff; padding: .9rem 1.4rem; border-radius: 999px;
    box-shadow: var(--af-shadow-lg); z-index: 3000; font-family: var(--af-sans); font-size: .85rem;
    display: flex; align-items: center; gap: 10px; transition: transform .5s var(--af-ease); border: 1px solid var(--af-line);
}
.af-toast.show { transform: translateX(-50%) translateY(0); }
.af-toast i { color: var(--af-gold); }

/* ---------- Footer refine ---------- */
.footer-luxury {
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(200, 169, 106, .12) 0%, rgba(200, 169, 106, 0) 55%),
        linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, .7);
    padding-top: 0;
    position: relative;
    overflow: hidden;
}
.footer-luxury::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 106, .55), transparent);
}

/* Perks strip */
.footer-perks {
    border-bottom: 1px solid rgba(200, 169, 106, .14);
    padding: 1.8rem 0;
    background: linear-gradient(180deg, rgba(200, 169, 106, .05), transparent);
}
.footer-perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.footer-perk-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: var(--af-gold);
    background: rgba(200, 169, 106, .1);
    border: 1px solid rgba(200, 169, 106, .25);
    margin-bottom: .5rem;
    transition: transform .4s var(--af-ease), background .4s var(--af-ease), color .4s var(--af-ease);
}
.footer-perk:hover .footer-perk-icon {
    background: var(--af-gold);
    color: #1a140a;
    transform: translateY(-4px) scale(1.05);
}
.footer-perk-title {
    font-family: var(--af-sans);
    font-weight: 600;
    font-size: .92rem;
    color: #fff;
    letter-spacing: .3px;
}
.footer-perk-sub {
    font-family: var(--af-sans);
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .3px;
}

.footer-luxury > .container { padding-top: 4rem; }

/* Brand */
.footer-brand-name { font-family: var(--af-serif); font-size: 1.55rem; color: #fff; letter-spacing: 2px; }
.footer-brand-desc { color: rgba(255, 255, 255, .6); line-height: 1.85; font-size: .92rem; max-width: 34ch; }

.footer-contact-item { gap: 14px; transition: transform .35s var(--af-ease), color .35s var(--af-ease); }
.footer-contact-item:hover { color: #fff; transform: translateX(5px); }
.footer-contact-item .contact-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: grid; place-items: center; flex-shrink: 0;
    background: rgba(200, 169, 106, .1);
    border: 1px solid rgba(200, 169, 106, .22);
    color: var(--af-gold);
    transition: background .35s var(--af-ease), color .35s var(--af-ease);
}
.footer-contact-item:hover .contact-icon { background: var(--af-gold); color: #1a140a; }

/* Social */
.footer-social { display: flex; gap: 12px; }
.social-icon {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
    display: inline-grid; place-items: center;
    color: #fff; font-size: .9rem;
    transition: all .35s var(--af-ease);
}
.social-icon:hover {
    background: var(--af-gold); color: #1a140a;
    border-color: var(--af-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(200, 169, 106, .35);
}

/* Headings */
.footer-heading {
    font-family: var(--af-sans);
    color: var(--af-gold-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    padding-bottom: .8rem;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 2px;
    background: linear-gradient(90deg, var(--af-gold), transparent);
    border-radius: 2px;
}

/* Newsletter card */
.footer-newsletter-block {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(200, 169, 106, .16);
    border-radius: var(--af-radius);
    padding: 1.6rem;
}
.footer-newsletter-desc { color: rgba(255, 255, 255, .6); line-height: 1.7; font-size: .9rem; }
.input-group-footer {
    display: flex;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color .3s var(--af-ease), box-shadow .3s var(--af-ease);
}
.input-group-footer:focus-within {
    border-color: var(--af-gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, .16);
}
.form-control-footer {
    flex: 1; min-width: 0;
    background: transparent; border: none; outline: none;
    color: #fff; padding: 14px 20px; font-size: .9rem; font-family: var(--af-sans);
}
.form-control-footer::placeholder { color: rgba(255, 255, 255, .4); }
.btn-footer-subscribe {
    background: linear-gradient(135deg, var(--af-gold), var(--af-gold-deep));
    color: #1a140a; border: none;
    padding: 0 22px; font-weight: 600; font-size: .82rem;
    letter-spacing: .5px; text-transform: uppercase;
    cursor: pointer; white-space: nowrap;
    display: flex; align-items: center; gap: 8px;
    transition: filter .3s var(--af-ease), transform .3s var(--af-ease);
}
.btn-footer-subscribe:hover { filter: brightness(1.08); transform: translateX(2px); }

/* Payment */
.footer-heading-sm {
    font-family: var(--af-sans);
    font-size: .72rem; font-weight: 600;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: .9rem;
}
.payment-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-badge {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
    padding: 7px 15px; border-radius: 8px;
    font-size: .72rem; font-weight: 700; letter-spacing: .5px;
    transition: all .3s var(--af-ease);
}
.pay-badge:hover {
    background: rgba(200, 169, 106, .14);
    border-color: rgba(200, 169, 106, .35);
    color: var(--af-gold);
    transform: translateY(-2px);
}

/* Bottom bar */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    margin: 3rem 0 1.6rem;
}
.footer-copyright { color: rgba(255, 255, 255, .5); font-size: .85rem; }
.footer-tag { color: rgba(200, 169, 106, .7); }
.footer-bottom-links { display: flex; gap: 22px; justify-content: flex-end; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255, 255, 255, .5); text-decoration: none; font-size: .85rem; transition: color .3s var(--af-ease); }
.footer-bottom-links a:hover { color: var(--af-gold); }

@media (max-width: 767.98px) {
    .footer-perks .col-6:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .07); }
    .footer-perks .col-6 { padding-top: .6rem; padding-bottom: .6rem; }
    .footer-luxury > .container { padding-top: 3rem; }
    .footer-bottom-links { justify-content: flex-start; }
}

/* ---------- Back to top ---------- */
.back-to-top { background: linear-gradient(135deg, var(--af-gold), var(--af-gold-deep)); }

/* ---------- Scroll reveal default ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--af-ease), transform .8s var(--af-ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .instagram-feed { grid-template-columns: repeat(3, 1fr); }
    .af-mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(13,13,13,.97); display: none; }
    .af-mega.show { display: block; }
}
@media (max-width: 575.98px) {
    .instagram-feed { grid-template-columns: repeat(2, 1fr); }
    .af-hero-scroll { display: none; }
    .btn-luxury, .btn-outline-luxury { padding: .8rem 1.4rem; }
}

/* ---------- 3D Product Viewer (refined) ---------- */
.product-3d-viewer {
    height: auto;
    border: 1px solid rgba(200, 169, 106, .22);
    background: linear-gradient(160deg, rgba(248,246,243,.9), rgba(248,246,243,.6));
    padding: 0;
    box-shadow: var(--af-shadow);
}
.product-3d-viewer .viewer-stage {
    position: relative;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    background: radial-gradient(120% 120% at 50% 0%, #fff 0%, #f3efe9 70%, #ece6dc 100%);
    transform-style: preserve-3d;
}
.product-3d-viewer .viewer-gallery { z-index: 1; }
.product-3d-viewer .gallery-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.product-3d-viewer .viewer-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8% 10%;
    transition: transform .25s var(--af-ease);
    will-change: transform;
    user-select: none;
}
.product-3d-viewer .viewer-badge {
    z-index: 6;
    background: rgba(17, 17, 17, .72);
    color: var(--af-gold);
    border: 1px solid rgba(200, 169, 106, .4);
    backdrop-filter: blur(8px);
}
.product-3d-viewer .viewer-meta {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 6;
    max-width: 70%;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(17, 17, 17, .55);
    border: 1px solid rgba(200, 169, 106, .3);
    backdrop-filter: blur(10px);
    text-align: left;
    display: none;
}
.product-3d-viewer .viewer-meta-name { font-family: var(--af-serif); font-size: 1.15rem; }
.product-3d-viewer .viewer-meta-price { font-size: .95rem; }
.product-3d-viewer .viewer-stage[data-mode=""] .viewer-meta { display: block; }

/* Thumbnail strip */
.product-3d-viewer .viewer-thumbs {
    display: flex;
    gap: 12px;
    padding: 16px 4px 4px;
    flex-wrap: wrap;
}
.product-3d-viewer .viewer-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(200, 169, 106, .25);
    background: #fff;
    cursor: pointer;
    opacity: .7;
    transition: opacity .3s var(--af-ease), border-color .3s var(--af-ease), transform .3s var(--af-ease);
}
.product-3d-viewer .viewer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-3d-viewer .viewer-thumb:hover { opacity: 1; transform: translateY(-2px); }
.product-3d-viewer .viewer-thumb.active {
    opacity: 1;
    border-color: var(--af-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, .2);
}

/* Dots repositioned under thumbnails */
.product-3d-viewer .viewer-dots { position: static; transform: none; justify-content: center; padding-top: 6px; }

.product-3d-viewer .viewer-controls { z-index: 7; }
.product-3d-viewer .viewer-control-btn {
    background: rgba(17, 17, 17, .72);
    border: 1px solid rgba(200, 169, 106, .4);
    color: var(--af-gold);
}
.product-3d-viewer .viewer-control-btn:hover,
.product-3d-viewer .viewer-control-btn.active { background: var(--af-gold); color: #1a140a; border-color: var(--af-gold); }

.product-3d-viewer canvas { border-radius: 15px; }

@media (max-width: 767.98px) {
    .product-3d-viewer .viewer-stage { height: 360px; }
    .product-3d-viewer .viewer-thumb { width: 60px; height: 60px; }
}

/* ---------- Footer enhancements ---------- */
/* Ornamental divider with centered gem */
.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 3rem;
    max-width: 440px;
}
.footer-ornament-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 106, .65), transparent);
}
.footer-ornament-gem {
    color: var(--af-gold);
    font-size: 1.15rem;
    filter: drop-shadow(0 2px 8px rgba(200, 169, 106, .45));
    transition: transform .5s var(--af-ease);
}
.footer-ornament:hover .footer-ornament-gem { transform: rotate(180deg) scale(1.1); }

/* Gold hover accent on nav links */
.footer-nav a {
    position: relative;
    transition: color .3s var(--af-ease), padding-left .3s var(--af-ease);
}
.footer-nav a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--af-gold);
    transform: translateY(-50%);
    transition: width .3s var(--af-ease);
}
.footer-nav a:hover { color: var(--af-gold); padding-left: 18px; }
.footer-nav a:hover::before { width: 12px; }

/* Newsletter inline message */
.footer-newsletter-msg {
    font-family: var(--af-sans);
    font-size: .82rem;
    margin: 10px 2px 0;
    min-height: 1.1em;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .3s var(--af-ease), transform .3s var(--af-ease);
}
.footer-newsletter-msg.show { opacity: 1; transform: none; }
.footer-newsletter-msg.success { color: #8fd6a8; }
.footer-newsletter-msg.error { color: #f0a0a0; }
.footer-newsletter-msg.loading { color: rgba(255, 255, 255, .55); }

/* Gentle lift on hover for footer blocks */
.footer-brand-block,
.footer-nav-block,
.footer-newsletter-block { transition: transform .4s var(--af-ease); }

/* Larger, lighter payment badges row */
.footer-newsletter-block .payment-badges { margin-top: 4px; }
.pay-badge {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .14);
    letter-spacing: 1px;
}

/* Bottom bar polish */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.6rem;
    padding-bottom: 0;
}
/* Pill-style tag */
.footer-tag {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid rgba(200, 169, 106, .3);
    border-radius: 999px;
    color: var(--af-gold);
    font-size: .78rem;
    letter-spacing: .5px;
}
/* WhatsApp phone links in footer */
.wa-link {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--af-ease);
}
.wa-link:hover { color: #25D366; }

/* Floating WhatsApp button */
.wa-float {
    position: fixed;
    bottom: 96px;
    right: 30px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
    animation: waPulse 2.4s infinite;
    transition: transform .3s var(--af-ease), box-shadow .3s var(--af-ease), color .3s var(--af-ease);
}
.wa-float:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 18px 44px rgba(37, 211, 102, .55);
    animation: none;
}
.wa-float-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #111;
    font-family: var(--af-sans);
    font-size: .8rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--af-shadow);
    transition: opacity .3s var(--af-ease);
}
.wa-float:hover .wa-float-label { opacity: 1; }
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 575.98px) {
    .wa-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 88px; right: 18px; }
    .wa-float-label { display: none; }
}
/* Stronger gold hairline at the very top of the footer */
.footer-luxury::before {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 169, 106, .7) 50%, transparent 100%);
    opacity: 1;
}
.footer-bottom-links a { position: relative; }
.footer-bottom-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 1px;
    background: var(--af-gold);
    transition: width .3s var(--af-ease);
}
.footer-bottom-links a:hover::after { width: 100%; }
