/*
 * ╔══════════════════════════════════════════════════════════════╗
 * ║          LAVISH FINE JEWELLERS — COMMON STYLESHEET           ║
 * ║          Brand Colour Palette (STRICTLY FOLLOWED)            ║
 * ║                                                              ║
 * ║  Background      Warm Ivory       #F6F2EC                    ║
 * ║  Primary Text    Deep Charcoal    #1F1F1F                    ║
 * ║  Secondary BG    Espresso Brown   #3A2E2A                    ║
 * ║  Accent          Copper Bronze    #B08D57                    ║
 * ║  Soft Accent     Champagne Gold   #D6C2A1                    ║
 * ╚══════════════════════════════════════════════════════════════╝
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* ── Brand Palette ── */
    --ivory:          #F6F2EC;   /* Background / Warm Ivory      */
    --charcoal:       #1F1F1F;   /* Primary Text / Deep Charcoal */
    --espresso:       #3A2E2A;   /* Secondary Background         */
    --copper:         #B08D57;   /* Accent / Copper Bronze       */
    --champagne:      #D6C2A1;   /* Soft Accent / Champagne Gold */

    /* ── Extended Tones (derived, harmonious) ── */
    --copper-dark:    #8C6E3D;   /* Darker copper for hover      */
    --copper-light:   #CBA96E;   /* Lighter copper               */
    --champagne-dark: #BFA882;   /* Darker champagne             */
    --ivory-warm:     #FAF7F2;   /* Lighter warm white           */
    --ivory-deep:     #EDE8DF;   /* Slightly deeper ivory        */
    --espresso-light: #5C4A42;   /* Muted espresso               */
    --stone:          #9A8E82;   /* Mid-tone text / gray         */
    --stone-light:    #C4BAB0;   /* Light stone / borders        */
    --black:          #0D0B09;   /* Near-black                   */

    /* ── Legacy aliases (keep backwards compat with old templates) ── */
    --gold:           var(--copper);
    --gold-light:     var(--copper-light);
    --gold-dark:      var(--copper-dark);
    --soft-black:     var(--charcoal);
    --cream:          var(--ivory);
    --warm-white:     var(--ivory-warm);
    --beige:          var(--ivory-deep);
    --taupe:          var(--champagne-dark);
    --gray:           var(--stone);

    /* ── Typography ── */
    --font-serif:     'Cormorant Garamond', serif;
    --font-elegant:   'Cormorant Garamond', serif;
    --font-display:   'Playfair Display', serif;
    --font-body:      'Montserrat', sans-serif;

    /* ── Spacing ── */
    --section-pad:    90px 60px;
    --section-pad-sm: 60px 30px;

    /* ── Transitions ── */
    --ease:           cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:       cubic-bezier(0, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

/* Primary — Dark fill */
.btn-fill {
    padding: 15px 36px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--charcoal);
    color: var(--ivory);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--charcoal);
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-fill:hover {
    background: var(--copper-dark);
    border-color: var(--copper-dark);
    color: var(--ivory);
    transform: translateY(-2px);
}

/* Outline — Charcoal border */
.btn-outline {
    padding: 15px 36px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--ivory);
}

/* Outline White — for dark backgrounds */
.btn-outline-white {
    padding: 15px 36px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    border: 1px solid rgba(214, 194, 161, 0.5);
    color: var(--champagne);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-outline-white:hover {
    background: rgba(214, 194, 161, 0.1);
    border-color: var(--champagne);
    color: var(--ivory);
}

/* Gold — Copper accent outline */
.btn-gold {
    padding: 15px 36px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--copper);
    color: var(--charcoal);
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-gold:hover {
    background: var(--copper);
    color: var(--charcoal);
}

/* Gold Fill — Copper solid */
.btn-gold-fill {
    padding: 15px 36px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--copper);
    border: 1px solid var(--copper);
    color: var(--charcoal);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-gold-fill:hover {
    background: var(--copper-light);
    border-color: var(--copper-light);
}

/* Admin gold button */
.btn-gold-admin {
    padding: 10px 24px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--copper);
    border: 1px solid var(--copper);
    color: var(--charcoal);
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    border-radius: 0;
}
.btn-gold-admin:hover {
    background: var(--copper-dark);
    border-color: var(--copper-dark);
    color: var(--ivory);
}

/* WhatsApp CTA */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 13px 22px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}
.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    color: #fff;
}
.wa-float i { font-size: 19px; }

/* ============================================================
   BREADCRUMB BAR
   ============================================================ */
.breadcrumb-bar {
    background: var(--ivory-deep);
    padding: 14px 60px;
    border-bottom: 1px solid rgba(176, 141, 87, 0.15);
}
.breadcrumb-bar nav {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 11px;
    color: var(--stone);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb-bar a {
    color: var(--stone);
    transition: color 0.3s;
}
.breadcrumb-bar a:hover { color: var(--copper-dark); }
.breadcrumb-bar .sep  { color: var(--stone-light); }
.breadcrumb-bar .current { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-header {
    text-align: center;
    margin-bottom: 60px;
}
.sec-eyebrow {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--copper-dark);
    margin-bottom: 14px;
    font-weight: 500;
}
.sec-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.1;
}
.sec-title em {
    font-style: italic;
    color: var(--copper-dark);
}
.sec-sub {
    font-family: var(--font-elegant);
    font-size: 16px;
    color: var(--stone);
    font-weight: 300;
    line-height: 1.75;
}

/* ============================================================
   PRODUCT CARD  (shop / category / index slider)
   ============================================================ */
.product-card {
    background: var(--ivory-warm);
    position: relative;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    border: 1px solid rgba(176, 141, 87, 0.1);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(31, 31, 31, 0.09);
}
.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--ivory-deep);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease);
    display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--charcoal);
    color: var(--ivory);
    font-size: 8.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 11px;
    z-index: 2;
}
.product-card-badge.new {
    background: var(--copper-dark);
    color: var(--ivory);
}

.product-card-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}
.product-card-action {
    width: 36px;
    height: 36px;
    background: rgba(246, 242, 236, 0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--charcoal);
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}
.product-card-action:hover,
.product-card-action.wishlisted {
    background: var(--copper);
    color: var(--charcoal);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 9, 0);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    transition: background 0.35s var(--ease);
}
.product-card:hover .product-card-overlay {
    background: rgba(13, 11, 9, 0.18);
}

.btn-quick-view {
    background: rgba(246, 242, 236, 0.97);
    color: var(--charcoal);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    width: 100%;
    font-family: var(--font-body);
}
.product-card:hover .btn-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-card-body {
    padding: 20px 16px;
    background: var(--ivory-warm);
}
.product-card-cat {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--copper-dark);
    margin-bottom: 5px;
}
.product-card-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--charcoal);
}
.product-card-price {
    font-size: 13px;
    color: var(--stone);
}
.product-card-stars {
    font-size: 11px;
    color: var(--copper-dark);
    margin-top: 6px;
}
.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.qv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 11, 9, 0.88);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.qv-overlay.open { display: flex; }

.qv-box {
    background: var(--ivory);
    max-width: 820px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.4s var(--ease-out);
}
@keyframes modalIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.qv-img {
    overflow: hidden;
    background: var(--ivory-deep);
}
.qv-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qv-body {
    padding: 44px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ivory-warm);
}
.qv-cat {
    font-size: 9.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--copper-dark);
    margin-bottom: 8px;
}
.qv-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--charcoal);
}
.qv-price {
    font-family: var(--font-elegant);
    font-size: 20px;
    color: var(--stone);
    margin-bottom: 16px;
}
.qv-desc {
    font-family: var(--font-elegant);
    font-size: 15px;
    color: var(--stone);
    line-height: 1.8;
    margin-bottom: 24px;
}

.qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(13, 11, 9, 0.65);
    color: var(--ivory);
    border: none;
    border-radius: 50%;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}
.qv-close:hover { background: var(--copper-dark); }

.qv-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-view-detail {
    padding: 14px 24px;
    background: var(--charcoal);
    color: var(--ivory);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.btn-view-detail:hover { background: var(--copper-dark); color: var(--ivory); }

.btn-wishlist-qv {
    padding: 13px 24px;
    background: transparent;
    border: 1px solid rgba(176, 141, 87, 0.35);
    color: var(--charcoal);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-wishlist-qv:hover { border-color: var(--copper); background: rgba(176, 141, 87, 0.05); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pagination-wrap a,
.pagination-wrap span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176, 141, 87, 0.25);
    font-size: 12px;
    color: var(--stone);
    transition: all 0.3s;
    text-decoration: none;
}
.pagination-wrap a:hover {
    border-color: var(--copper);
    color: var(--copper-dark);
}
.pagination-wrap .active {
    background: var(--charcoal);
    color: var(--ivory);
    border-color: var(--charcoal);
}

/* ============================================================
   SWIPER PAGINATION BULLETS
   ============================================================ */
.swiper-pagination-bullet {
    background: var(--copper-dark);
    opacity: 0.25;
    width: 8px;
    height: 8px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--copper-dark);
}

/* ============================================================
   FORM INPUTS
   ============================================================ */
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: 9.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--ivory-warm);
    border: 1px solid rgba(176, 141, 87, 0.25);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone-light);
}
.form-group textarea {
    height: 110px;
    resize: vertical;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%239A8E82'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-error {
    font-size: 11px;
    color: #b84040;
    margin-top: 5px;
    display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #b84040;
}
.form-group.has-error .form-error { display: block; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border-bottom: 1px solid rgba(176, 141, 87, 0.18);
    padding: 22px 0;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--charcoal);
    gap: 16px;
    font-family: var(--font-body);
    transition: color 0.25s;
}
.faq-q:hover { color: var(--copper-dark); }
.faq-toggle {
    font-size: 22px;
    color: var(--copper-dark);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    font-size: 13px;
    color: var(--stone);
    line-height: 1.8;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 12px;
}

/* ============================================================
   NEWSLETTER / CTA SECTION
   ============================================================ */
.newsletter-section {
    background: var(--espresso);
    padding: var(--section-pad);
    text-align: center;
}
.nl-content {
    max-width: 680px;
    margin: 0 auto;
}
.nl-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 14px;
    line-height: 1.2;
}
.nl-title em {
    font-style: italic;
    color: var(--champagne);
}
.nl-sub {
    font-size: 13.5px;
    color: var(--champagne-dark);
    margin-bottom: 36px;
    line-height: 1.7;
}
.nl-btn {
    display: inline-flex;
    padding: 17px 50px;
    background: var(--copper);
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
}
.nl-btn:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.38);
    color: #fff;
}
.whatsapp-float i { font-size: 20px; }
.whatsapp-float .wa-text { white-space: nowrap; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--espresso);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
#preloader .pre-logo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 14px;
    color: var(--ivory);
    opacity: 0;
    animation: preIn 0.8s 0.3s forwards;
}
#preloader .pre-line {
    width: 0;
    height: 1px;
    background: var(--copper);
    animation: preLine 1.2s 0.6s forwards;
}
@keyframes preIn  { to { opacity: 1; } }
@keyframes preLine { to { width: 120px; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--espresso);
    color: var(--champagne-dark);
    padding: 40px;
}
.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 1fr 2fr 1.5fr 1.5fr;
    gap: 20px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(176, 141, 87, 0.14);
}

.f-brand-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 7px;
    color: var(--ivory);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.f-brand-tagline {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 18px;
    display: block;
}
.f-brand-desc {
    font-size: 12.5px;
    color: var(--stone);
    line-height: 1.8;
}
.f-brand-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.f-brand-social a {
    font-size: 16px;
    color: var(--stone);
    transition: color 0.3s;
}
.f-brand-social a:hover { color: var(--copper); }

.f-col h4 {
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 500;
    margin-bottom: 20px;
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul li a {
    font-size: 12.5px;
    color: var(--stone);
    transition: color 0.3s;
}
.f-col ul li a:hover { color: var(--copper); }

.f-contact p {
    font-size: 12.5px;
    color: var(--stone);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.6;
}
.f-contact p i {
    flex-shrink: 0;
    color: var(--copper-dark);
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 11px;
    color: var(--stone);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 11px;
    color: var(--stone);
    transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--copper); }

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */
.top-bar {
    background: var(--espresso);
    color: var(--champagne);
    text-align: center;
    padding: 10px 20px;
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(246, 242, 236, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    border-bottom: 1px solid rgba(176, 141, 87, 0.14);
    transition: box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(31, 31, 31, 0.07);
}

.nav-main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
    gap: 16px;
}

.nav-links-left {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: flex-start;
    overflow: visible;
}
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    overflow: visible;
}

.nav-links-left a,
.nav-links-right a {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-links-left a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--copper);
    transition: width 0.3s var(--ease);
}
.nav-links-left a:hover::after { width: 100%; }
.nav-links-right a:hover { color: var(--copper-dark); }

.nav-logo {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--charcoal);
    text-align: center;
    line-height: 1;
    text-decoration: none;
}
.nav-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 8.5px;
    letter-spacing: 3.5px;
    font-weight: 300;
    margin-top: 3px;
    color: black;
    text-transform: uppercase;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.nav-icons a {
    font-size: 17px;
    transition: color 0.3s;
    color: var(--charcoal);
}
.nav-icons a:hover { color: var(--copper); }

.btn-consult {
    padding: 10px 18px;
    background: var(--charcoal);
    color: var(--ivory) !important;
    font-size: 8.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    white-space: nowrap;
    border: 1px solid var(--charcoal);
    flex-shrink: 0;
    font-family: var(--font-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.btn-consult:hover {
    background: transparent;
    color: var(--charcoal) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: 0.3s;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--espresso);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--champagne); }
.mobile-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 28px;
    color: var(--charcoal);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}
.mobile-close:hover { color: var(--copper); }

/* Cart icon */
.nav-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--charcoal);
    transition: color 0.3s;
}
.nav-cart-icon:hover { color: var(--copper-dark); }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--copper-dark);
    color: var(--ivory);
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

/* ============================================================
   GLOBAL RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 50px; }
}

@media (max-width: 1024px) {
    .nav-links-left,
    .nav-links-right { display: none; }
    .hamburger { display: flex; }
    .nav-main {
        grid-template-columns: auto 1fr auto;
        padding: 0 24px;
    }
    .nav-logo { text-align: left; font-size: 22px; letter-spacing: 7px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .qv-box { grid-template-columns: 1fr; max-width: 420px; }
    .qv-img { height: 260px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .breadcrumb-bar { padding: 12px 24px; }
    footer { padding: 60px 30px 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 0 0 50px; }
    .newsletter-section { padding: var(--section-pad-sm); }
    .whatsapp-float { bottom: 20px; right: 20px; padding: 12px 20px; }
    .whatsapp-float .wa-text { font-size: 10px; }
    .wa-float { bottom: 20px; right: 20px; padding: 12px 20px; }
}

@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .qv-box { max-width: 100%; }
    .whatsapp-float { padding: 12px 16px; }
    .whatsapp-float .wa-text { display: none; }
    .wa-float .wa-text { display: none; }
}