/* ============================================================
   HOME SWEET JAMAICA — Bright Luxury Magazine
   ============================================================ */

/* --- VARIABLES & RESET --- */
:root {
    /* 1. COLOR REFINEMENT */
    /* Warm, tactile paper-like backgrounds */
    --color-bg: #FCFBF8;
    --color-surface: #FFFFFF;
    --color-surface-2: #F4F1EB;
    /* Lighter, more natural linen tone */

    /* Ultra-subtle glass & borders */
    --color-glass: rgba(0, 0, 0, 0.02);
    --color-glass-border: rgba(0, 0, 0, 0.06);
    /* Simulates 0.5px visual weight */
    --color-border-fine: rgba(26, 59, 42, 0.15);
    /* Deep green tinted fine border */

    /* Deep, rich, organic accents */
    --color-primary: #12281D;
    /* Darker, almost black-green for high contrast */
    --color-accent: #173525;
    --color-accent-glow: rgba(23, 53, 37, 0.05);

    /* Muted Champagne Gold instead of harsh yellow-gold */
    --color-gold: #C5A467;
    --color-gold-glow: rgba(197, 164, 103, 0.1);

    /* High-contrast, sophisticated typography */
    --color-text: #2A2A2A;
    --color-text-muted: #737373;
    --color-text-dim: #A0A0A0;
    --color-white: #fff;
    --color-heading: #1a1a1a;

    /* 2. TYPOGRAPHY */
    --font-serif: 'Playfair Display', 'Didot', Georgia, serif;
    --font-sans: 'Inter', 'Helvetica Neue', sans-serif;

    /* 3. SPACING & STRUCTURE */
    /* Increased heavily for editorial breathing room */
    --spacing-section: 8rem;
    --spacing-section-lg: 12rem;

    /* Luxury sites favor sharper, more intentional corners. Reduced from 12px. */
    --border-radius: 4px;
    --border-radius-sm: 2px;

    /* 4. ANIMATION */
    /* Slower, more deliberate easing for a cinematic feel */
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

img {
    display: block;
    max-width: 100%;
}

/* --- SCROLL ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children .fade-in:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children .fade-in:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children .fade-in:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children .fade-in:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children .fade-in:nth-child(6) {
    transition-delay: 0.3s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.80);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-glass-border);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    border-bottom: 1px solid var(--color-border-fine);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 5%;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo a {
    color: var(--color-accent);
}

.logo a:hover {
    opacity: 0.8;
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.nav-links a:hover {
    color: var(--color-accent);
}

.btn-nav {
    border: 1px solid var(--color-accent);
    color: var(--color-accent) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem !important;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    background: var(--color-accent);
    color: var(--color-white) !important;
}

/* ============================================================
   HERO — 2-Column Split Layout
   ============================================================ */
.hero.split {
    position: relative;
    min-height: 85vh;
    display: block;
    padding-top: 0;
    /* Offset handled by hero-text */
    box-sizing: border-box;
    overflow: hidden;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-glass-border);
}

.hero-split-container {
    position: relative;
    display: flex;
    min-height: 85vh;
    width: 100%;
    margin: 0;
}

.hero-column {
    flex: 1;
    height: 100%;
    position: relative;
}

/* Gold vertical divider between columns */
.hero-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    z-index: 5;
}

.hero-text {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 6% 0 8%;
    background: linear-gradient(to right, var(--color-bg) 60%, rgba(252, 251, 248, 0.8) 85%, transparent 100%);
}

.hero-content-wrapper {
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-weight: 600;
    display: block;
}

.hero-tagline::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem 0 0;
}

.hero.split h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero.split p {
    font-family: var(--font-sans);
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 460px;
}

.hero-cta {
    display: inline-block;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    color: var(--color-white);
    padding: 0.9rem 2.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hero-cta:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-accent-glow);
}

/* --- Hero Newsletter Opt-In --- */
.hero-newsletter {
    margin-top: 2rem;
    max-width: 400px;
}

.hero-newsletter-form {
    display: flex;
    border: 1px solid var(--color-glass-border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

.hero-newsletter-form:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

.hero-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1.2rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    min-width: 0;
}

.hero-newsletter-form input::placeholder {
    color: var(--color-text-dim);
}

.hero-newsletter-form button {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.hero-newsletter-form button:hover {
    background: #245236;
}

.hero-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.8rem;
    cursor: pointer;
    text-align: left;
}

.hero-consent-label input[type="checkbox"] {
    margin-top: 2px;
    width: 14px;
    height: 14px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.hero-consent-label span {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 300;
}

.hero-newsletter-message {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-newsletter-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-newsletter-message.success {
    color: var(--color-accent);
}

.hero-newsletter-message.error {
    color: #b94a48;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Subtle gradient fade on image edge removed since text has gradient overlay */
.hero-image-inner::before {
    display: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-image img {
    transform: scale(1.0);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 8%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

.section-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 1.5rem;
}

/* ============================================================
   CATEGORY SECTIONS
   ============================================================ */
.category-section {
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 5%;
}

.category-label {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-heading);
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), transparent);
}

/* Hide sections when filtering */
.category-section.hidden {
    display: none;
}

/* ============================================================
   CATEGORY FILTER BAR
   ============================================================ */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 5%;
}

.filter-btn {
    background: var(--color-white);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-accent-glow);
}

.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    font-weight: 600;
}

/* ============================================================
   ARTICLE GRID — Editorial Layout
   ============================================================ */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 59, 42, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 0 30px var(--color-accent-glow);
    color: var(--color-text);
}

.article-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--color-surface), transparent);
    pointer-events: none;
}

.article-card-body {
    padding: 1.5rem;
}

.article-card-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 600;
}

.article-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.article-card-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* Featured card — spans 2 columns */
.article-card.featured {
    grid-column: span 2;
}

.article-card.featured .article-card-image {
    height: 380px;
}

.article-card.featured .article-card-title {
    font-size: 1.8rem;
}

/* Card hidden by filter */
.article-card.hidden {
    display: none;
}

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
    background: var(--color-surface-2);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    border-color: rgba(26, 59, 42, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.img-box {
    background: var(--color-surface-2);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--color-heading);
}

.price {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* ============================================================
   SUBSCRIBE / CTA SECTION
   ============================================================ */
.subscribe-section {
    text-align: center;
    padding: var(--spacing-section) 5%;
}

.subscribe-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 2rem auto 0;
    border: 1px solid var(--color-glass-border);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: var(--color-white);
}

.subscribe-form:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.subscribe-form input::placeholder {
    color: var(--color-text-dim);
}

.subscribe-form button {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.subscribe-form button:hover {
    background: #245236;
}

/* --- Consent Checkbox --- */
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    max-width: 480px;
    margin: 1.2rem auto 0;
    cursor: pointer;
    text-align: left;
}

.consent-label input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.consent-label span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* --- Subscribe Feedback Message --- */
.subscribe-message {
    max-width: 480px;
    margin: 1rem auto 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.subscribe-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.subscribe-message.success {
    color: var(--color-accent);
}

.subscribe-message.error {
    color: #b94a48;
}

.micro-copy {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-dim);
    font-style: italic;
    margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    position: relative;
    padding: 3rem 5%;
    min-height: 200px;
    display: flex;
    background: url('assets/images/home-sweet-jamaica-flag.webp') no-repeat center center/cover;
    color: var(--color-white);
    overflow: hidden;
    border-top: 1px solid var(--color-gold);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(18, 40, 29, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-layout {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 5rem;
}

.footer-logo img {
    height: 140px;
    /* Two columns tall, double size */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.footer-logo a {
    display: block;
}

.footer-logo a:hover img {
    transform: scale(1.05);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-gold-line {
    width: 80px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    /* Make the copyright significantly smaller */
    font-weight: 400;
    letter-spacing: 1px;
}

/* ============================================================
   ARTICLE PAGES — Full Layout
   ============================================================ */
.article-hero {
    height: 70vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--color-bg), transparent);
    pointer-events: none;
}

.article-container {
    max-width: 800px;
    margin: -120px auto 0;
    padding: 3rem 4rem 4rem;
    position: relative;
    z-index: 10;
    background: var(--color-surface);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.article-meta {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    font-weight: 600;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--color-accent);
}

.article-body {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body .intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.article-body h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-heading);
    margin: 3rem 0 1.5rem;
    font-weight: 400;
}

.article-body img {
    width: 100%;
    margin: 2rem 0;
    border-radius: var(--border-radius-sm);
}

.article-body strong {
    color: var(--color-heading);
}

.quote-box {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-accent);
    margin: 3rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-gold);
    line-height: 1.6;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-split-container {
        flex-direction: column;
    }

    .hero-column {
        flex: none;
        width: 100%;
    }

    .hero-text {
        height: auto;
        padding: 4rem 5%;
        justify-content: center;
        text-align: center;
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero.split h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }

    .article-card.featured {
        grid-column: span 1;
    }

    .article-card.featured .article-card-image {
        height: 250px;
    }

    .article-container {
        padding: 2rem 1.5rem;
        margin-top: -80px;
        margin-left: 5%;
        margin-right: 5%;
        border-radius: var(--border-radius-sm);
    }

    .article-title {
        font-size: 2rem;
    }

    .filter-bar {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .subscribe-form {
        flex-direction: column;
        border-radius: var(--border-radius);
    }

    .subscribe-form button {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .footer-gold-line {
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .article-card-image {
        height: 220px;
    }

    .section {
        padding: 4rem 0;
    }
}

/* --- SHOP BUTTONS --- */
.btn-shop {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.6rem 1.4rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: var(--color-gold);
    color: var(--color-heading);
    transform: translateY(-1px);
}

/* Magazine Issues Section */
.magazine-issues {
    background: var(--color-bg-alt);
    padding: 6rem 5%;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.issue-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.issue-card-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 1 / 1.414;
    background: #111;
}

.issue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.issue-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.issue-overlay span {
    color: #fff;
    padding: 1rem 2rem;
    border: 1px solid #fff;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.issue-card:hover .issue-card-image img {
    transform: scale(1.05);
}

.issue-card:hover .issue-overlay {
    opacity: 1;
}

.issue-card-info {
    padding: 1.5rem 0;
    text-align: center;
}

.issue-card-info h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.issue-card-info p {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card {
    text-align: center;
}

/* --- FORM MESSAGES --- */
.form-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
}

.form-message.success {
    color: var(--color-accent);
    font-weight: 500;
}

.form-message.error {
    color: #c0392b;
    font-weight: 500;
}

/* ============================================================
   E-COMMERCE: PRODUCT PAGES, CART, GALLERY
   ============================================================ */

/* --- Cart Badge (Navbar) --- */
.cart-link {
    position: relative;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 1.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.03em;
}

.breadcrumb a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb span {
    color: var(--color-heading);
}

/* --- Product Page Layout --- */
.product-page {
    padding: 6rem 0 4rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* --- Product Gallery --- */
.product-gallery {
    position: sticky;
    top: 6rem;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f0;
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-main-image:hover img {
    transform: scale(1.03);
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
}

.product-thumb {
    width: 70px;
    height: 70px;
    border-radius: 3px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
}

/* --- Product Info --- */
.product-info {
    padding-top: 1rem;
}

.footer-content h3 img {
    height: 160px;
    /* Made slightly larger for impact */
    width: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

.product-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* ============================================================
   ARTICLE CONTENT WRAPPER 
   ============================================================ */
.article-content-wrapper {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 5%;
}

.article-content-wrapper p,
.editorial-split-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ============================================================
   LUXURY EDITORIAL ARTICLE TEMPLATE
   ============================================================ */

/* Asymmetrical Broken Grid */
.editorial-split {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin: 6rem 0;
}

.editorial-split.reverse {
    flex-direction: row-reverse;
}

.editorial-split-text {
    flex: 1;
}

.editorial-split-image {
    flex: 1;
    min-height: 500px;
    border-radius: 2px;
    background-color: var(--color-glass-bg);
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {

    .editorial-split,
    .editorial-split.reverse {
        flex-direction: column;
        gap: 3rem;
        margin: 4rem 0;
    }

    .editorial-split-image {
        width: 100%;
        min-height: 400px;
    }
}

/* Oversized Pull Quote */
.article-pull-quote-oversized {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.1;
    color: var(--color-accent);
    margin: 6rem -6rem;
    padding: 0;
    border: none;
    text-align: center;
    font-style: italic;
    letter-spacing: -0.02em;
    position: relative;
}

.article-pull-quote-oversized::before,
.article-pull-quote-oversized::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 2rem auto;
}

@media (max-width: 900px) {
    .article-pull-quote-oversized {
        margin: 4rem 0;
    }
}

/* True Parallax Divider */
.parallax-divider {
    height: 70vh;
    margin: 6rem calc(-50vw + 50%);
    width: 100vw;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-heading);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.2;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-body);
    margin-bottom: 2rem;
    max-width: 480px;
}

/* --- Size Selector --- */
.product-size {
    margin-bottom: 1.5rem;
}

.product-size label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.product-size select {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: var(--color-white);
    color: var(--color-heading);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* --- Quantity Selector --- */
.product-quantity {
    margin-bottom: 2rem;
}

.product-quantity label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 130px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f0;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-heading);
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}

.qty-btn:hover {
    background: #e8e8e0;
}

.qty-control input[type="number"] {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-control input::-webkit-inner-spin-button,
.qty-control input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* --- Add to Cart / Buy Now Buttons --- */
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-add-to-cart,
.btn-buy-now {
    width: 100%;
    padding: 1rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-add-to-cart:hover {
    background: var(--color-accent-glow);
}

.btn-add-to-cart.added {
    background: #2d6a4f;
    color: white;
    border-color: #2d6a4f;
}

.btn-buy-now {
    background: var(--color-accent);
    color: var(--color-white);
    border: 1px solid var(--color-accent);
}

.btn-buy-now:hover {
    background: var(--color-gold);
    color: var(--color-heading);
    border-color: var(--color-gold);
    transform: translateY(-1px);
}


/* --- Product Details List --- */
.product-details-list {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.product-details-list h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.product-details-list ul {
    list-style: none;
    padding: 0;
}

.product-details-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-body);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.product-details-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* --- Cart Notification Toast --- */
.cart-notification {
    position: fixed;
    top: -80px;
    right: 2rem;
    background: var(--color-heading);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    z-index: 9999;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cart-notification.show {
    top: 5rem;
}

.cart-notif-icon {
    background: var(--color-accent);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.cart-notif-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.cart-notif-link:hover {
    text-decoration: underline;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page {
    padding: 6rem 0 4rem;
    min-height: 60vh;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.cart-empty p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.btn-continue-shopping,
.btn-continue-shopping-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover,
.btn-continue-shopping-link:hover {
    background: var(--color-gold);
    color: var(--color-heading);
}

.btn-continue-shopping-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    background: transparent;
    color: var(--color-muted);
    padding: 0.5rem;
    font-size: 0.8rem;
}

.btn-continue-shopping-link:hover {
    color: var(--color-accent);
    background: transparent;
}

/* --- Cart Items --- */
.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto 30px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 90px;
    height: 90px;
    border-radius: 3px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
}

.cart-item-size {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--color-muted);
}

.cart-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-body);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 2px;
}

.cart-item-qty span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-heading);
    text-align: right;
    min-width: 60px;
}

.cart-item-remove {
    border: none;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 0.25rem;
}

.cart-item-remove:hover {
    color: #c0392b;
}

/* --- Order Summary --- */
.cart-summary {
    background: #f9f9f6;
    padding: 2rem;
    border-radius: 4px;
    position: sticky;
    top: 6rem;
}

.cart-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-body);
    padding: 0.5rem 0;
}

.summary-row.total {
    border-top: 1px solid #ddd;
    margin-top: 0.75rem;
    padding-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.issue-card-info p {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- E-Commerce Responsive --- */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 70px 1fr auto;
        gap: 1rem;
    }

    .cart-item-total {
        display: none;
    }

    .cart-notification {
        right: 1rem;
        left: 1rem;
    }
}

/* ============================================================
   CHROME & CINEMATIC REVEALS (Gemini 3.1 Pro Enhancements)
   ============================================================ */

/* 1. The Wrapper acts as a physical window */
.image-reveal-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Modern editorial ratio */
    background-color: var(--color-surface-2);
}

.article-card.featured .image-reveal-wrapper {
    aspect-ratio: 21 / 9;
}

/* 2. The Image scales down and pans up smoothly */
.parallax-reveal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, opacity;
    transform: scale(1.1) translateY(4%);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.parallax-reveal.is-visible {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.article-card:hover .parallax-reveal.is-visible {
    transform: scale(1.05);
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Refined Article Card Body */
.article-card-body {
    padding: 2.5rem 2rem;
}

.article-card-title {
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.article-card-category {
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    margin-bottom: 1.2rem;
}

/* Balanced Section Headers */
.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    text-wrap: balance;
    margin-bottom: 2rem;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 2.5rem;
}

/* --- Instagram Section --- */
.instagram-section {
    background: var(--color-bg);
}

.instagram-feed-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px dashed var(--color-gold);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--color-surface);
}

.elfsight-app-placeholder p {
    font-family: var(--font-sans);
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.elfsight-app-placeholder p span {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   ARTICLE PAGES (PREMIUM READABILITY)
   ========================================= */

body.article-page {
    background: var(--color-bg);
    color: var(--color-text);
    padding-top: 80px;
    /* Account for fixed global navbar */
}

/* The cinematic Hero section for Articles */
.article-hero {
    padding: 6rem 5% 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out forwards;
}

.article-meta {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: none;
    color: var(--color-heading);
}

/* Base structural layout for articles */
.article-content-wrapper {
    max-width: 800px;
    /* Optimal reading width */
    margin: 0 auto;
    padding: 4rem 5% 8rem;
}

/* Typography specifics for readable long-form text */
.article-content-wrapper p {
    font-size: 1.15rem;
    /* Larger, more readable body text */
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    /* Generous line height for scanning */
}

/* Headings within the article */
.article-content-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin: 4rem 0 2rem;
    color: var(--color-heading);
    line-height: 1.3;
}

.article-content-wrapper h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    margin: 3rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
}

/* Standardized editorial elements */
.article-dropcap {
    float: left;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 0.8;
    margin-right: 1.2rem;
    margin-top: 0.5rem;
    color: var(--color-gold);
}

.article-pull-quote {
    font-family: var(--font-serif);
    font-size: 2rem;
    text-align: center;
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--color-border-fine);
    border-bottom: 1px solid var(--color-border-fine);
    font-style: italic;
    color: var(--color-heading);
    line-height: 1.4;
}

.article-section-break {
    margin: 6rem 0;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect if desired */
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Two column layouts within articles */
.article-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
}

.article-grid-layout img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* Standout summary or data boxes */
.article-sidebar {
    background: var(--color-surface);
    padding: 3rem;
    border-left: 4px solid var(--color-gold);
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
}

.article-sidebar h3 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

/* Make sure lists inside wrappers look good */
.article-content-wrapper ul,
.article-content-wrapper ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-content-wrapper li {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

/* Global fade in animation for article assets */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Responsive tweaks for article pages */
@media (max-width: 768px) {
    .article-hero {
        padding: 4rem 5% 2rem;
    }

    .article-content-wrapper {
        padding: 2rem 5% 4rem;
    }

    .article-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-pull-quote {
        font-size: 1.5rem;
        padding: 2rem 0;
    }

    .article-section-break {
        height: 300px;
        background-attachment: scroll;
    }
}


/* ============================================================
   FLIPBOOK MODAL
   ============================================================ */
.flipbook-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.flipbook-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.flipbook-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    display: block;
}

.flipbook-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.flipbook-close:hover {
    color: var(--color-gold);
}

/* --- Flipbook Wrapper: centers the book in the modal --- */
.flipbook-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 60px);
    /* Leave room for page info at bottom */
    position: relative;
}

/* --- Flipbook Container: gets pixel dimensions from JS --- */
.flipbook-container {
    position: relative;
    /* Width and height are set dynamically by flipbook.js */
    margin: 0 auto;
}

/* --- Individual Pages --- */
.flip-page {
    background-color: #fff;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.flip-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
}

/* --- Lateral Chevron Navigation Arrows --- */
.flipbook-chevron {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    width: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 4px;
}

.flipbook-chevron:hover {
    background: var(--color-gold);
    color: var(--color-dark-surface);
}

.flipbook-chevron.left {
    left: 1.5rem;
}

.flipbook-chevron.right {
    right: 1.5rem;
}

/* --- Page Info Bar --- */
.flipbook-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ============================================================
   UI SNIPER COMPONENTS - LUXURY UPGRADES
   ============================================================ */

/* --- 1. Hero Parallax (Aceternity Style) --- */
.parallax-hero-wrapper {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-hero-image {
    position: absolute;
    top: -20%;
    /* Tucked up to allow parallax scroll room */
    left: 0;
    width: 100%;
    height: 140%;
    /* Lighter gradient overlay to let the beautiful new image shine through, but dark enough for white text to pop */
    background: linear-gradient(135deg, rgba(18, 40, 29, 0.6), rgba(23, 53, 37, 0.5)),
        url('./assets/images/articles/layla-hero-bespoke.png');
    background-size: cover;
    background-position: top center;
    z-index: 1;
    will-change: transform;
}

.parallax-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 900px;
}

.parallax-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.parallax-hero-meta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    display: inline-block;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(197, 164, 103, 0.4);
}

/* --- 2. Advanced Sticky Scroll Image Reveal (Aceternity Style) --- */
.sticky-scroll-container {
    display: flex;
    position: relative;
    padding: var(--spacing-section) 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 6rem;
    align-items: flex-start;
}

.sticky-text-column {
    flex: 1;
    padding-top: 5vh;
    /* Buffer to allow scroll distance before sticking */
    padding-bottom: 5vh;
}

.sticky-text-block {
    margin-bottom: 25vh;
    /* Large gap sets the pace for the image swap */
    transition: var(--transition-smooth);
    opacity: 0.4;
    transform: translateX(-20px);
}

.sticky-text-block:last-child {
    margin-bottom: 0;
}

.sticky-text-block.active {
    opacity: 1;
    transform: translateX(0);
}

.sticky-image-column {
    flex: 1;
    position: sticky;
    top: 20vh;
    height: 60vh;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.sticky-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.sticky-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    /* Slight zoom-out transition */
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}


/* --- 3. Shimmer Text Reveal (Magic UI Style) --- */
.shimmer-text {
    position: relative;
    background: linear-gradient(to right,
            var(--color-heading) 0%,
            var(--color-heading) 40%,
            var(--color-gold) 50%,
            var(--color-heading) 60%,
            var(--color-heading) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    padding-bottom: 5px;
}

.animate-shimmer {
    animation: shimmerSlide 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes shimmerSlide {
    0% {
        background-position: 150% center;
    }

    100% {
        background-position: -50% center;
    }
}


/* --- 4. Nuance Hover Quote (Hover.dev Style) --- */
.nuance-quote-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--color-glass-border);
    background: var(--color-surface);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: default;
}

.nuance-quote-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(197, 164, 103, 0.3);
    /* Subtle gold inner ring */
}

.nuance-quote-container::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--color-gold-glow);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.nuance-quote-container:hover::before {
    opacity: 1;
    color: var(--color-gold);
    top: -30px;
}

.nuance-quote-text {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--color-heading);
    font-weight: 400;
    font-style: italic;
}

/* Added for editorial density */
.editorial-column-container {
    column-count: 2;
    column-gap: 3rem;
    margin-top: 2rem;
}

.editorial-column-container p {
    break-inside: avoid;
}

/* Base structural adjustments for article text */
.article-rich-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5%;
}

.article-rich-text p {
    font-size: 0.95rem;
    /* ~15px */
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.article-dropcap {
    float: left;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 4.5rem;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    color: var(--color-accent);
}

/* ============================================================
   MOBILE RESPONSIVE — Complete Overhaul
   ============================================================ */

/* --- Hamburger Menu Toggle (hidden on desktop) --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* =========== TABLET BREAKPOINT (≤1024px) =========== */
@media (max-width: 1024px) {

    :root {
        --spacing-section: 5rem;
    }

    /* --- Navigation --- */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    /* --- Hero Split → Stacked --- */
    .hero.split {
        min-height: auto;
    }

    .hero-split-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        flex: none;
        width: 100%;
        padding: 120px 6% 3rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .hero-text::after {
        display: none;
    }

    .hero-content-wrapper {
        text-align: center;
    }

    .hero.split h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .hero.split p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-newsletter {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .hero-image-inner {
        position: relative;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* --- Article Grid: 3 cols → 2 cols --- */
    .article-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .article-card.featured {
        grid-column: span 2;
    }

    /* --- Magazine cards: fix overflow --- */
    .article-grid[style*="repeat(2, 1fr)"] {
        max-width: 100% !important;
    }

    /* --- Footer: horizontal → stack --- */
    .footer-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-gold-line {
        margin: 1rem auto;
    }

    /* --- Sticky Scroll → Stacked --- */
    .sticky-scroll-container {
        flex-direction: column;
        gap: 3rem;
    }

    .sticky-image-column {
        position: relative;
        top: auto;
        height: 40vh;
        width: 100%;
    }

    .sticky-text-block {
        margin-bottom: 5vh;
    }

    /* --- Editorial Columns → single column --- */
    .editorial-column-container {
        column-count: 1;
    }

    /* --- Nuance Quote --- */
    .nuance-quote-container {
        margin: 4rem 5%;
        padding: 2.5rem;
    }

    .nuance-quote-text {
        font-size: 1.4rem;
    }
}

/* =========== MOBILE BREAKPOINT (≤768px) =========== */
@media (max-width: 768px) {

    :root {
        --spacing-section: 4rem;
    }

    /* --- Typography scale down --- */
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .category-label {
        font-size: 1.3rem;
    }

    /* --- Logo --- */
    .logo img {
        height: 60px;
    }

    /* --- Nav container tighten --- */
    .nav-container {
        padding: 0.8rem 4%;
    }

    /* --- Hero --- */
    .hero-text {
        padding: 100px 5% 2.5rem;
    }

    .hero.split h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .hero.split p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.75rem 2rem;
        font-size: 0.65rem;
    }

    .hero-image {
        height: 40vh;
    }

    /* --- Article Grid: 2 cols → 1 col --- */
    .article-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 4%;
    }

    .article-card.featured {
        grid-column: span 1;
    }

    .article-card.featured .article-card-image {
        height: 280px;
    }

    .article-card.featured .article-card-title {
        font-size: 1.4rem;
    }

    .article-card-image {
        height: 220px;
    }

    /* --- Magazine Section: Fix the clipped cover cards and FORCE stack --- */
    .article-grid[style*="repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin: 0 auto;
    }

    .article-grid[style*="repeat(2, 1fr)"] .article-card-image {
        height: 350px !important;
    }

    /* --- Filter Bar --- */
    .filter-bar {
        gap: 0.5rem;
        padding: 0 4%;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* --- Category Headers --- */
    .category-header {
        padding: 0 4%;
        gap: 1rem;
    }

    /* --- Product Grid --- */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 4%;
    }

    .img-box {
        height: 200px;
    }

    .product-card h3 {
        font-size: 0.95rem;
    }

    /* --- Subscribe Form --- */
    .subscribe-section {
        padding: var(--spacing-section) 4%;
    }

    .subscribe-form {
        max-width: 100%;
        flex-direction: column;
        border-radius: 8px;
    }

    .subscribe-form input[type="email"] {
        border-bottom: 1px solid var(--color-glass-border);
        border-radius: 8px 8px 0 0;
        text-align: center;
    }

    .subscribe-form button {
        border-radius: 0 0 8px 8px;
        padding: 0.9rem;
    }

    /* --- Footer --- */
    footer {
        padding: 2.5rem 4%;
    }

    .footer-logo img {
        height: 100px;
    }

    .footer-links {
        gap: 1.2rem;
    }

    .footer-links a {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .footer-copyright {
        font-size: 0.65rem;
    }

    /* --- Article Pages --- */
    .article-container {
        margin: -80px auto 0;
        padding: 2rem 1.5rem 3rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-sidebar {
        padding: 2rem;
        margin: 2.5rem 0;
    }

    /* --- Flipbook Modal --- */
    .flipbook-modal-content {
        width: 96%;
        height: 96%;
    }

    .flipbook-chevron {
        width: 36px;
        height: 56px;
        font-size: 1.8rem;
    }

    .flipbook-chevron.left {
        left: 0.5rem;
    }

    .flipbook-chevron.right {
        right: 0.5rem;
    }

    .flipbook-close {
        top: -30px;
        font-size: 2.2rem;
    }

    /* --- Parallax Hero (Article Pages) --- */
    .parallax-hero-wrapper {
        height: 60vh;
    }

    .parallax-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    /* --- Hero Newsletter (mobile form fix) --- */
    .hero-newsletter {
        max-width: 100%;
    }

    .hero-newsletter-form {
        flex-direction: column;
        border-radius: 8px;
    }

    .hero-newsletter-form input[type="email"] {
        border-bottom: 1px solid var(--color-glass-border);
        text-align: center;
        padding: 0.85rem;
    }

    .hero-newsletter-form button {
        border-radius: 0;
        padding: 0.85rem;
    }
}

/* =========== SMALL PHONE BREAKPOINT (≤480px) =========== */
@media (max-width: 480px) {

    :root {
        --spacing-section: 3rem;
    }

    .logo img {
        height: 50px;
    }

    .hero-text {
        padding: 90px 4% 2rem;
    }

    .hero.split h1 {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .hero.split p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .hero-image {
        height: 35vh;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header {
        padding: 0 4%;
    }

    /* --- Magazine covers: single column on tiny phones --- */
    .article-grid[style*="repeat(2, 1fr)"] .article-card-image {
        height: 300px !important;
    }

    .article-card-body {
        padding: 1rem;
    }

    .article-card-title {
        font-size: 1.1rem;
    }

    .article-card-excerpt {
        font-size: 0.8rem;
    }

    /* --- Product Grid: 2 cols → 1 col --- */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* --- Footer --- */
    .footer-logo img {
        height: 80px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    /* --- Article pages --- */
    .article-container {
        padding: 1.5rem 1rem 2.5rem;
        margin-top: -60px;
    }

    .article-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .article-hero {
        height: 50vh;
    }

    .article-dropcap {
        font-size: 3.5rem;
        line-height: 3rem;
    }

    .article-pull-quote {
        font-size: 1.2rem;
        margin: 3rem 0;
        padding: 1.5rem 0;
    }

    .article-section-break {
        height: 200px;
        margin: 3rem 0;
    }

    /* --- Flipbook - even more compact --- */
    .flipbook-chevron {
        width: 30px;
        height: 44px;
        font-size: 1.4rem;
    }

    .flipbook-controls {
        font-size: 0.7rem;
    }

    /* --- Nuance Quote --- */
    .nuance-quote-container {
        padding: 2rem 1.5rem;
        margin: 3rem 4%;
    }

    .nuance-quote-text {
        font-size: 1.2rem;
    }

    .nuance-quote-container::before {
        font-size: 4rem;
    }
}

/* =========== MOBILE OVERLAY (for hamburger menu) =========== */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* =========== HAMBURGER ANIMATION =========== */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}