/* ═══════════════════════════════════════════════════════════════════
   ZAVORA THEME — MAIN STYLESHEET
   Premium Arabian Luxury Beauty Brand
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
    --burgundy:       #6D1F2F;
    --burgundy-deep:  #1A0F0D;
    --burgundy-mid:   #3D1018;
    --cream:          #FFF3E6;
    --cream-soft:     #F8E3D4;
    --gold:           #C9A45C;
    --gold-light:     #DFB97A;
    --gold-dark:      #A8843E;
    --text-dark:      #3A1A1F;
    --text-mid:       #6B3A42;
    --text-light:     #FAF0E6;
    --text-muted:     #9A7070;
    --white:          #FFFFFF;
    --border-gold:    rgba(201,164,92,0.25);
    --border-cream:   rgba(255,243,230,0.15);

    --font-heading:   'Cormorant Garamond', Georgia, serif;
    --font-sub:       'Raleway', sans-serif;
    --font-body:      'Lato', sans-serif;
    --font-script:    'Great Vibes', cursive;

    --radius-sm:      4px;
    --radius-md:      8px;
    --radius-lg:      16px;
    --radius-xl:      32px;
    --radius-full:    999px;

    --shadow-sm:      0 2px 12px rgba(26,15,13,0.12);
    --shadow-md:      0 8px 32px rgba(26,15,13,0.18);
    --shadow-lg:      0 20px 60px rgba(26,15,13,0.25);
    --shadow-gold:    0 4px 20px rgba(201,164,92,0.3);

    --transition:     0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --header-height:  80px;
    --container-max:  1280px;
}

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
}

.eyebrow {
    display: block;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-sub {
    font-family: var(--font-sub);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-divider {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy-deep);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,164,92,0.45);
}

.btn--burgundy {
    background: var(--burgundy);
    color: var(--cream);
}
.btn--burgundy:hover { background: var(--burgundy-mid); transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255,243,230,0.5);
}
.btn--outline:hover {
    background: rgba(255,243,230,0.1);
    border-color: var(--cream);
}

.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn--outline-gold:hover { background: rgba(201,164,92,0.1); }

.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255,243,230,0.5);
}
.btn--outline-light:hover { background: rgba(255,243,230,0.1); border-color: var(--cream); }

.btn--add-cart {
    background: var(--burgundy);
    color: var(--cream);
    font-size: 0.75rem;
    padding: 10px 20px;
}
.btn--add-cart:hover { background: var(--burgundy-mid); transform: translateY(-1px); }

.btn--lg { padding: 16px 42px; font-size: 0.88rem; }

/* ─── Logo Mark ─────────────────────────────────────────────────── */
.logo-text-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-drop {
    width: 38px; height: 46px;
    background: var(--burgundy-deep);
    border: 1.5px solid var(--gold);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0% 100%, 0% 38%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-drop--sm { width: 30px; height: 36px; }
.logo-z {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.logo-brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--gold);
}
.logo-text-mark--light .logo-brand-name { color: var(--gold-light); }

/* ─── Header ────────────────────────────────────────────────────── */
/* ─── Header — desktop base ─────────────────────────────────────── */
.zavora-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(26,15,13,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-cream);
    transition: var(--transition);
}
.zavora-header.scrolled {
    background: rgba(26,15,13,0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Desktop nav */
.header-nav-desktop { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 36px; align-items: center; }
.nav-menu li a {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,240,230,0.8);
    position: relative;
    transition: color var(--transition);
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right var(--transition);
}
.nav-menu li a:hover          { color: var(--gold); }
.nav-menu li a:hover::after   { right: 0; }

/* Desktop actions (cart + Shop Now) */
.header-actions--desktop { display: flex; align-items: center; gap: 16px; }
/* Mobile actions: hidden on desktop */
.header-actions--mobile  { display: none; }

.cart-icon {
    position: relative;
    color: var(--cream-soft);
    transition: color var(--transition);
    padding: 4px;
    line-height: 0;
}
.cart-icon:hover { color: var(--gold); }
.cart-count {
    position: absolute;
    top: -4px; right: -4px;
    width: 16px; height: 16px;
    background: var(--gold);
    color: var(--burgundy-deep);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-header-shop {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy-deep);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-header-shop:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Hamburger: hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px 4px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--cream-soft);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* ─── Mobile Full-Screen Overlay Menu ───────────────────────────── */
/*
 * Completely separate from the desktop nav.
 * Sits below the fixed header, slides in from top.
 * z-index: 998 (below header at 1000, above all content).
 */
.zavora-mobile-menu {
    display: none; /* shown only on mobile via responsive.css */
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    height: calc(100vh - var(--header-height));
    background: rgba(26,15,13,0.99);
    z-index: 998;
    flex-direction: column;
    padding: 36px 28px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.zavora-mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Backdrop */
.zavora-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.zavora-menu-backdrop.is-open { opacity: 1; }

.mobile-nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
}
.mobile-nav-list li { width: 100%; }
.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream-soft);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,243,230,0.1);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--gold); }

.mobile-menu-shop-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy-deep);
    font-family: var(--font-sub);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    align-self: flex-start;
}
.mobile-menu-shop-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ─── HERO SLIDER ───────────────────────────────────────────────── */
.zavora-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 1000px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    overflow: hidden;
}
.slider-slide.active { opacity: 1; z-index: 2; }
.slider-slide.prev   { opacity: 0; z-index: 1; }

/* Slide Backgrounds */
.slide-bg { position: absolute; inset: 0; }
.slide-bg--dark   { background: linear-gradient(135deg, var(--burgundy-deep) 0%, #2A0F14 50%, #1A0A08 100%); }
.slide-bg--cream  { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 100%); }
.slide-bg--burgundy { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-mid) 100%); }

.slide-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(109,31,47,0.4) 0%, transparent 70%);
}
.slide-bg-overlay--light {
    background: linear-gradient(90deg, rgba(26,15,13,0.85) 40%, rgba(26,15,13,0.2) 100%);
}
.slide-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201,164,92,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,164,92,0.04) 0%, transparent 50%);
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    max-width: 620px;
}
.slide-content--center {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 60px 40px;
}

.hero-logo-drop {
    width: 56px; height: 68px;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0% 100%, 0% 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.hero-logo-drop span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
}

.slide-eyebrow {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.slide-eyebrow--gold { color: var(--gold-light); }

.slide-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 20px;
}
.slide-headline em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}
.slide-headline--dark { color: var(--text-dark); }
.slide-headline--dark em { color: var(--burgundy); }

.slide-sub {
    font-family: var(--font-sub);
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(250,240,230,0.75);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 420px;
}
.slide-sub--dark { color: var(--text-mid); }

.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Decorative floating product images */
.slide-decor {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 55%;
    pointer-events: none;
    z-index: 5;
}
.slide-decor--centered {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-product-float {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: transform 8s ease-in-out;
}
.slide-product-float--1 {
    width: 340px; height: 340px;
    right: 10%; top: 50%;
    transform: translateY(-55%) rotate(-3deg);
    animation: float1 8s ease-in-out infinite;
}
.slide-product-float--2 {
    width: 220px; height: 220px;
    right: 38%; bottom: 8%;
    animation: float2 10s ease-in-out infinite;
    opacity: 0.7;
}
.slide-product-float--lg {
    width: 420px; height: 420px;
    position: relative;
    animation: float1 8s ease-in-out infinite;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
}

@keyframes float1 {
    0%, 100% { transform: translateY(-55%) rotate(-3deg); }
    50%       { transform: translateY(-50%) rotate(-1deg) scale(1.02); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50%       { transform: translateY(-15px) rotate(1deg); }
}

/* Slide 2: Collection Grid */
.slide-collection-grid {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}
.mini-product-card {
    width: 90px;
    text-align: center;
}
.mini-product-card img {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 6px;
    box-shadow: var(--shadow-sm);
}
.mini-product-card p {
    font-family: var(--font-sub);
    font-size: 0.58rem;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Slide 3: Split layout */
.slide-split {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 10;
}
.slide-split-image {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.slide-split-image img:first-child {
    width: 300px; height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(201,164,92,0.4);
    box-shadow: var(--shadow-lg);
    animation: float1 8s ease-in-out infinite;
}
.slide-split-img2 {
    width: 180px !important; height: 180px !important;
    position: absolute !important;
    bottom: 60px; right: 20px;
    animation: float2 10s ease-in-out infinite !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(201,164,92,0.3) !important;
}
.slide-split-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 40px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-arrow {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201,164,92,0.4);
    background: rgba(26,15,13,0.5);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.slider-arrow:hover {
    background: rgba(201,164,92,0.2);
    border-color: var(--gold);
}

.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(201,164,92,0.35);
    border: 1px solid rgba(201,164,92,0.5);
    transition: var(--transition);
    cursor: pointer;
}
.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: var(--radius-full);
}

.slider-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(201,164,92,0.15);
    z-index: 20;
}
.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 0.1s linear;
}

/* ─── Brand Strip ────────────────────────────────────────────────── */
.zavora-brand-strip {
    background: var(--cream);
    padding: 60px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.brand-strip-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.brand-pillar {
    flex: 1;
    text-align: center;
    padding: 20px 40px;
}
.brand-pillar-divider {
    width: 1px;
    background: var(--border-gold);
    align-self: stretch;
    margin: 10px 0;
}
.pillar-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    background: rgba(201,164,92,0.05);
}
.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.pillar-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* ─── Product Collection ─────────────────────────────────────────── */
.zavora-collection {
    padding: 100px 0;
    background: var(--cream-soft);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
.zavora-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.zavora-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,164,92,0.5);
}
.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--cream-soft);
}
.product-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.zavora-product-card:hover .product-card-image img { transform: scale(1.06); }

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,15,13,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.zavora-product-card:hover .product-card-overlay { opacity: 1; }
.overlay-text {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(255,243,230,0.5);
    padding: 8px 20px;
    border-radius: var(--radius-full);
}

.product-card-body { padding: 22px 24px 24px; }
.product-card-mood {
    font-family: var(--font-sub);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.product-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--burgundy); }
.product-card-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-gold);
}
.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--burgundy);
}
.collection-cta { text-align: center; }

/* ─── Featured Product ───────────────────────────────────────────── */
.zavora-featured {
    padding: 100px 0;
    background: var(--burgundy-deep);
    position: relative;
    overflow: hidden;
}
.zavora-featured::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109,31,47,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.featured-image-frame {
    position: relative;
    display: inline-block;
}
.featured-image-frame img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,164,92,0.2);
    box-shadow: var(--shadow-lg);
    animation: float1 8s ease-in-out infinite;
}
.featured-image-badge {
    position: absolute;
    top: 24px; right: -12px;
    background: var(--gold);
    color: var(--burgundy-deep);
    font-family: var(--font-sub);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.featured-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.1;
}
.featured-title em { font-style: italic; color: var(--gold-light); }

.featured-mood-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.mood-tag {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,164,92,0.35);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.featured-desc {
    font-size: 0.95rem;
    color: rgba(250,240,230,0.7);
    line-height: 1.8;
    margin-bottom: 14px;
}
.featured-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 28px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border-cream);
}
.featured-price-label {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    color: rgba(250,240,230,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.featured-price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
}
.featured-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Brand Story ─────────────────────────────────────────────────── */
.zavora-story {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.zavora-story::before {
    content: 'Z';
    position: absolute;
    left: -40px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(201,164,92,0.04);
    pointer-events: none;
    line-height: 1;
}
.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-content {}
.story-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}
.story-divider {
    width: 50px; height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}
.story-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}
.story-text--accent {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--burgundy);
    margin-bottom: 28px;
}
.story-image-frame {
    position: relative;
}
.story-image-frame img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.story-image-ornament {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 200px; height: 200px;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* ─── Why Zavora ─────────────────────────────────────────────────── */
.zavora-why {
    padding: 100px 0;
    background: var(--burgundy-deep);
}
.zavora-why .section-title { color: var(--cream); }
.zavora-why .section-sub   { color: rgba(250,240,230,0.55); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,164,92,0.3);
    transform: translateY(-4px);
}
.why-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(201,164,92,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold);
}
.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.85rem;
    color: rgba(250,240,230,0.55);
    line-height: 1.7;
}

/* ─── Gallery Strip ──────────────────────────────────────────────── */
.zavora-gallery { overflow: hidden; }
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 280px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,15,13,0.6) 0%, transparent 50%);
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(26,15,13,0.3); }

/* ─── CTA Band ───────────────────────────────────────────────────── */
.zavora-cta-band {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.zavora-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,164,92,0.08) 0%, transparent 70%);
}
.cta-band-inner { text-align: center; position: relative; z-index: 1; }
.cta-band-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 16px;
}
.cta-band-sub {
    font-size: 0.95rem;
    color: rgba(250,240,230,0.7);
    margin-bottom: 36px;
}
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.zavora-footer { background: var(--burgundy-deep); }

.footer-top { padding: 70px 0 50px; }
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: rgba(250,240,230,0.5);
    line-height: 1.6;
    margin: 14px 0 22px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,240,230,0.5);
    transition: var(--transition);
}
.social-link:hover {
    color: var(--gold);
    border-color: rgba(201,164,92,0.4);
    background: rgba(201,164,92,0.06);
}

.footer-col-title {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(250,240,230,0.5);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream-soft); }

.footer-bottom {
    border-top: 1px solid var(--border-cream);
    padding: 20px 0;
}
.footer-bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright {
    font-size: 0.78rem;
    color: rgba(250,240,230,0.35);
}
.footer-sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(201,164,92,0.4);
}

/* ─── Scroll Animations ──────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up--delayed { transition-delay: 0.18s; }

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fade-in-up 0.7s ease forwards; opacity: 0; }

/* ─── General Page Styles ─────────────────────────────────────────── */
.zavora-main { padding-top: 0; }
.zavora-woo-page .zavora-main { padding-top: var(--header-height); }

.archive-header, .page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    padding: 50px 0 30px;
    text-align: center;
}

/* ─── Shop Page ──────────────────────────────────────────────────── */
.zavora-shop { padding-bottom: 80px; }
.shop-header {
    background: var(--cream-soft);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 50px;
}
.shop-content { padding: 0 40px; }

/* WooCommerce breadcrumb */
.woocommerce-breadcrumb {
    font-family: var(--font-sub) !important;
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 20px !important;
}
.woocommerce-breadcrumb a { color: var(--gold) !important; }

/* Ordering / result count */
.woocommerce-ordering select {
    font-family: var(--font-sub) !important;
    font-size: 0.8rem !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-full) !important;
    padding: 8px 16px !important;
    background: var(--cream) !important;
    color: var(--text-dark) !important;
    cursor: pointer !important;
}
.woocommerce-result-count {
    font-family: var(--font-sub) !important;
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   ZAVORA v1.1 — NEW PAGE STYLES & SPACING FIXES
   ═══════════════════════════════════════════════════════════════════ */

/* ─── SPACING OVERRIDES — tighten all major sections ───────────── */
.zavora-brand-strip   { padding: 48px 0; }
.zavora-why           { padding: 70px 0; }
.zavora-home-preview  { padding: 80px 0; background: var(--cream-soft); }
.zavora-story-preview { padding: 80px 0; background: var(--cream); }
.zavora-cta-band      { padding: 70px 0; }

/* Remove old full-page collection & featured spacing from homepage
   (those sections no longer appear on homepage in v1.1) */
.zavora-collection    { padding: 80px 0; }
.zavora-featured      { padding: 80px 0; }
.zavora-story         { padding: 80px 0; }
.zavora-gallery       { max-height: 260px; overflow: hidden; }
.gallery-strip        { height: 260px; }

/* ─── Hero: tighter fit above the fold ────────────────────────── */


/* ─── Product images: less cropped ────────────────────────────── */
.product-card-image {
    aspect-ratio: 1 / 1;
    background: var(--cream-soft);
}
.product-card-image img {
    object-fit: contain !important;
    padding: 12px;
}
/* WooCommerce loop product image — less cropped */
.woocommerce ul.products li.product a img {
    object-fit: contain !important;
    padding: 12px !important;
    background: var(--cream-soft) !important;
}

/* ─── Preview CTA (below 3-product grid on homepage) ──────────── */
.preview-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-gold);
    margin-top: 40px;
}
.preview-cta-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* ─── Story Preview (homepage) ─────────────────────────────────── */
.story-preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.story-preview-frame {
    position: relative;
}
.story-preview-frame img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.story-preview-ornament {
    position: absolute;
    bottom: -16px; left: -16px;
    width: 160px; height: 160px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
}
.story-preview-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.15;
}
.story-preview-body {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 12px;
}
.story-preview-accent {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--burgundy);
    margin-bottom: 26px;
}
.btn--outline-dark {
    background: transparent;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn--outline-dark:hover {
    background: var(--burgundy);
    color: var(--cream);
}

/* ─── ABOUT PAGE ───────────────────────────────────────────────── */
.zavora-about { padding-top: 0; }

.about-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, #2A0F14 60%, var(--burgundy-mid) 100%);
}
.about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(201,164,92,0.08) 0%, transparent 70%);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
}
.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
}
.about-hero-title em { font-style: italic; color: var(--gold-light); }
.about-hero-sub {
    font-family: var(--font-sub);
    font-size: 1rem;
    color: rgba(250,240,230,0.65);
    max-width: 480px;
    margin: 0 auto;
}

.about-section { padding: 80px 0; }
.about-section--cream  { background: var(--cream); }
.about-section--soft   { background: var(--cream-soft); }
.about-section--dark   { background: var(--burgundy-deep); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-grid--reverse { direction: rtl; }
.about-grid--reverse > * { direction: ltr; }

.about-image-frame img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.about-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.15;
}
.about-heading--light { color: var(--cream); }
.about-text p, .about-section--cream p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 14px;
}
.about-text-light {
    font-size: 0.93rem;
    color: rgba(250,240,230,0.65) !important;
    line-height: 1.9;
    margin-bottom: 14px;
}

/* Ritual steps */
.ritual-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}
.ritual-step {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    background: rgba(201,164,92,0.03);
}
.ritual-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 12px;
    line-height: 1;
}
.ritual-step h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.ritual-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-cream);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,164,92,0.3);
    transform: translateY(-4px);
}
.value-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 0.84rem;
    color: rgba(250,240,230,0.5);
    line-height: 1.7;
}
.section-title--light { color: var(--cream); }

/* ─── CONTACT PAGE ─────────────────────────────────────────────── */
.zavora-contact { padding-top: 0; }

.contact-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-mid) 100%);
}
.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 60%, rgba(201,164,92,0.1) 0%, transparent 60%);
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
}
.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 14px;
}
.contact-hero-title em { font-style: italic; color: var(--gold-light); }
.contact-hero-sub {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    color: rgba(250,240,230,0.65);
    max-width: 420px;
    margin: 0 auto;
}

.contact-body {
    padding: 80px 0;
    background: var(--cream-soft);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-col-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Contact Form */
.zavora-contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 18px; }
.form-row--half { flex-direction: row; gap: 16px; }
.form-row--half .form-group { flex: 1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.form-group .required { color: var(--burgundy); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,164,92,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-submit { margin-top: 6px; align-self: flex-start; }

/* Contact Info Cards */
.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
}
.contact-info-card--highlight {
    background: var(--cream);
    border-color: rgba(201,164,92,0.35);
}
.contact-info-icon {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.contact-info-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.contact-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--burgundy);
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }

.contact-social { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-gold);
}
.contact-social-link:last-child { border-bottom: none; }
.contact-social-link:hover { color: var(--gold); }

/* ─── SHOP PAGE v1.1 ───────────────────────────────────────────── */
.shop-hero {
    position: relative;
    padding-top: var(--header-height);
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.shop-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 100%);
    border-bottom: 1px solid var(--border-gold);
}
.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 32px 40px 28px;
}
.shop-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.shop-hero-sub {
    font-family: var(--font-sub);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
.shop-content {
    padding: 50px 40px 80px;
}
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-gold);
}
.no-products-found {
    text-align: center;
    padding: 80px 0;
}
.no-products-found p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ─── Active nav link highlight ───────────────────────────────── */
.nav-menu li.current-menu-item a,
.nav-menu li.current-menu-ancestor a {
    color: var(--gold) !important;
}
.nav-menu li.current-menu-item a::after {
    right: 0 !important;
}

/* ─── WooCommerce page top padding fix ────────────────────────── */
.zavora-woo-page .zavora-main { padding-top: 0; }

/* ─── Logo image — desktop sizing (mobile in responsive.css) ────── */
.zavora-logo-img {
    display: block;
    width: 72px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.logo-link:hover .zavora-logo-img { opacity: 0.85; }

.header-logo .custom-logo-link img,
.header-logo .custom-logo {
    display: block !important;
    width: 72px !important;
    height: auto !important;
    object-fit: contain !important;
}

.zavora-logo-img--footer {
    width: 90px;
    margin-bottom: 14px;
}
.footer-logo-link .custom-logo-link img,
.footer-logo-link .custom-logo {
    display: block !important;
    width: 90px !important;
    height: auto !important;
    object-fit: contain !important;
    margin-bottom: 14px !important;
}

/* Safety: hide any leftover CSS-only logo elements */
.logo-text-mark,
.logo-drop,
.logo-brand-name,
.hero-logo-drop,
.slide-logo-mark { display: none !important; }

/* ─── v1.1.6: Mobile slide elements — hidden on desktop ─────────── */
/* These show only on mobile via responsive.css */
.slide-mobile-img        { display: none; }
.slide-mobile-stack      { display: none; }

/* slide-split--desktop shown on desktop, hidden on mobile */
.slide-split--desktop    { display: flex; height: 100%; }

/* ─── v1.1.8: Contact form success / error states ───────────────── */
.form-success {
    background: rgba(201,164,92,0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}
.form-success-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.form-success p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.form-error-msg {
    background: rgba(109,31,47,0.08);
    border: 1px solid rgba(109,31,47,0.3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 20px;
}
.form-error-msg p {
    font-size: 0.88rem;
    color: var(--burgundy);
}
