/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Font loading optimization - using Google Fonts CDN instead of direct woff2 files */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-display: swap;
    font-optical-sizing: auto;
}

.container {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', 'Didot', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-display: swap;
    font-optical-sizing: auto;
}

/* Font Awesome optimization with Firefox compatibility */
.fab, .fas, .far, .fal, .fad, .fa {
    font-family: "Font Awesome 7 Free", "Font Awesome 7 Pro", "Font Awesome 7 Brands" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
    /* Firefox specific fixes */
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Ensure icons are visible even if fonts don't load */
    min-width: 1em;
    min-height: 1em;
    display: inline-block;
}

/* Prevent layout shifts during font loading */
.nav-link, .btn, .social-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Font loading states */
body:not(.fonts-loaded) {
    visibility: hidden;
}

body.fonts-loaded {
    visibility: visible;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ensure icons have proper dimensions before fonts load */
.fab, .fas, .far, .fal, .fad, .fa {
    width: 1em;
    height: 1em;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

/* Screen reader only text for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header social icons - simplified like footer */
.header-socials a {
    width: 40px;
    height: 40px;
    background: none;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1002;
    /* Firefox compatibility fixes */
    min-width: 40px;
    min-height: 40px;
    /* Ensure icons are visible */
    text-align: center;
    vertical-align: middle;
}

/* Fallback for social icons if Font Awesome doesn't load on deployment */
.header-socials a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Show fallback when Font Awesome is not loaded */
.header-socials:not(.fa-loaded) a:before {
    opacity: 1;
}

/* Instagram fallback */
.header-socials a[title="Instagram"]:before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 6px;
}

/* TikTok fallback */
.header-socials a[title="TikTok"]:before {
    background: #000;
    border-radius: 3px;
}

/* X (Twitter) fallback */
.header-socials a[title="X (Twitter)"]:before {
    background: #000;
    border-radius: 3px;
}

/* YouTube fallback */
.header-socials a[title="YouTube"]:before {
    background: #ff0000;
    border-radius: 3px;
}

.header-socials a:hover {
    color: #000000 !important;
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Prevent FOUC (Flash of Unstyled Content) */
.navbar, .hero, .podcast-cta, .about, .beauty-reviews, .contact, .footer {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.fonts-loaded .navbar,
body.fonts-loaded .hero,
body.fonts-loaded .podcast-cta,
body.fonts-loaded .about,
body.fonts-loaded .beauty-reviews,
body.fonts-loaded .contact,
body.fonts-loaded .footer {
    opacity: 1;
}

/* Magazine-style typography classes */
.magazine-title {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.magazine-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.editorial-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Color Variables */
:root {
    --magazine-black: #1a1a1a;
    --magazine-pink: #e91e63;
    --magazine-beige: #f5f5dc;
    --magazine-cream: #faf8f3;
    --magazine-gold: #d4af37;
    --magazine-gray: #6b6b6b;
    --magazine-white: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.1);
    will-change: transform, background-color, box-shadow;
}

/* Header states */
.navbar.hero-visible .nav-logo {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    visibility: hidden;
}

.navbar.hero-visible .nav-menu {
    justify-content: center;
    width: 100%;
}

.navbar.hero-visible .nav-container {
    justify-content: center;
}

/* Ensure social icons are always visible on desktop - moved to media query */

/* Force social icons to always be visible on desktop - moved to media query */

/* Social icons are now fixed positioned outside the nav container */

/* Hide Home button on home page */
body.home-page .nav-link[href="#home"],
body.home-page .nav-link[href="index.html"] {
    display: none;
}

/* Ensure proper spacing when Home button is hidden */
body.home-page .nav-menu {
    gap: 2rem;
}

body.home-page .navbar.hero-visible .nav-menu {
    gap: 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: -20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    will-change: opacity, transform, visibility;
}

.nav-logo h1 {
    color: var(--magazine-black);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--magazine-black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--magazine-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--magazine-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.feature-link {
    background: var(--magazine-pink);
    color: var(--magazine-white) !important;
    padding: 10px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}

.feature-link:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    background: var(--magazine-black);
}

.feature-link::after {
    display: none;
}

/* Header Social Media */
.header-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1001;
    pointer-events: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 70px;
    overflow: hidden;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    color: var(--magazine-white);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: fit-content;
    box-sizing: border-box;
}

.scroll-indicator:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.scroll-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    font-size: clamp(2rem, 4vw, 2.5rem);
    animation: bounceArrow 1.5s infinite;
    display: block;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@-webkit-keyframes bounceArrow {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #333 50%, #000 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

.hero-slide.active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* Alternative transition styles - uncomment one to use */

/* Option 1: Slide from right */
/*
.hero-slide {
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active {
    transform: translateX(0);
}
*/

/* Option 2: Fade with zoom */
/*
.hero-slide {
    opacity: 0;
    transform: scale(1.2);
    transition: all 1.5s ease-out;
}
.hero-slide.active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
*/

/* Option 3: Curtain reveal */
/*
.hero-slide {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active {
    opacity: 1;
    transform: scaleX(1);
}
*/

/* Option 4: Slide up with fade */
/*
.hero-slide {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
}
*/

/* Option 5: Rotate and fade */
/*
.hero-slide {
    opacity: 0;
    transform: rotate(5deg) scale(1.1);
    transition: all 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
    -webkit-animation: fadeInUp 1s ease-out;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Carousel Navigation */
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    z-index: 5;
    width: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-sizing: border-box;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-size: 18px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}


.hero-logo {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--magazine-white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: clamp(1px, 2vw, 3px);
    display: block;
    width: 100%;
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--magazine-cream);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: clamp(1px, 1.5vw, 2px);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-transform: uppercase;
}

.hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--magazine-pink);
    color: var(--magazine-white);
    border: 2px solid var(--magazine-pink);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--magazine-black);
    color: var(--magazine-white);
    border-color: var(--magazine-black);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--magazine-white);
    border: 2px solid var(--magazine-white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--magazine-white);
    color: var(--magazine-black);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Promo Banner */
.promo-banner {
    background: var(--magazine-black);
    color: var(--magazine-white);
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.promo-banner strong {
    color: var(--magazine-pink);
    font-weight: 700;
}

.subscribe-link {
    color: var(--magazine-pink);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.subscribe-link:hover {
    color: var(--magazine-white);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subscribe-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--magazine-white);
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

.subscribe-link:hover::after {
    width: 100%;
}

/* Social Media Section */
.social-section {
    padding: 4rem 0;
    background: white;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

/* Removed social link hover effects */

.instagram:hover { background: linear-gradient(135deg, #e1306c, #f56040); color: white; }
.facebook:hover { background: linear-gradient(135deg, #1877f2, #42a5f5); color: white; }
.x:hover { background: linear-gradient(135deg, #000000, #333333); color: white; }
.youtube:hover { background: linear-gradient(135deg, #ff0000, #ff6b6b); color: white; }
.tiktok:hover { background: linear-gradient(135deg, #000000, #333333); color: white; }

/* Podcast CTA Section */
.podcast-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--magazine-cream) 0%, var(--magazine-white) 100%);
    position: relative;
    overflow: hidden;
}

.podcast-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e91e63" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.podcast-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.podcast-content > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
    min-width: 300px;
}

.podcast-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--magazine-black);
    margin-bottom: 1.5rem;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.podcast-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--magazine-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.podcast-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--magazine-pink);
    font-family: 'Bodoni Moda', serif;
    height: 3rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--magazine-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Modern Media Player */
.podcast-player {
    background: var(--magazine-white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.player-container {
    padding: 2rem;
}

.player-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.episode-info h3 {
    font-size: 1.1rem;
    color: var(--magazine-pink);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.episode-info p {
    font-size: 1.3rem;
    color: var(--magazine-black);
    margin-bottom: 0.5rem;
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    line-height: 1.3;
}

.episode-date {
    font-size: 0.9rem;
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.player-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.play-btn, .pause-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--magazine-pink), var(--magazine-gold));
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.play-btn:hover, .pause-btn:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.4);
}

.player-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--magazine-pink), var(--magazine-gold));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
}

.time-display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
}

/* Volume Container */
.player-volume-container {
    position: relative;
}

.volume-btn {
    background: transparent;
    border: 2px solid var(--magazine-pink);
    color: var(--magazine-pink);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.1rem;
}

.volume-btn:hover {
    background: var(--magazine-pink);
    color: white;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* Volume Menu */
.volume-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: var(--magazine-white);
    border: 2px solid var(--magazine-pink);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 200px;
    margin-bottom: 0.5rem;
}

.volume-menu.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.volume-slider-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.volume-slider-container i {
    color: var(--magazine-pink);
    font-size: 0.9rem;
}

.volume-slider-container input[type="range"] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--magazine-pink);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3);
}

.volume-display {
    text-align: center;
    font-size: 0.9rem;
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Listeners Counter Animation */
#listenersCounter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 60px;
    position: relative;
    height: 3rem;
}

#headphonesIcon {
    font-size: 2rem;
    color: var(--magazine-pink);
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0%, 100% { 
        -webkit-transform: scale(1);
        transform: scale(1); 
    }
    50% { 
        -webkit-transform: scale(1.1);
        transform: scale(1.1); 
    }
}

@keyframes pulse {
    0%, 100% { 
        -webkit-transform: scale(1);
        transform: scale(1); 
    }
    50% { 
        -webkit-transform: scale(1.1);
        transform: scale(1.1); 
    }
}

.counter-container {
    display: none;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 0.2em;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--magazine-pink);
    font-family: 'Bodoni Moda', serif;
    animation: countUp 0.5s ease-out;
    min-width: 1.2em;
    text-align: center;
}

.counter-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--magazine-pink);
    font-family: 'Bodoni Moda', serif;
}

@-webkit-keyframes countUp {
    from { 
        -webkit-transform: scale(0.5); 
        transform: scale(0.5); 
        opacity: 0; 
    }
    to { 
        -webkit-transform: scale(1); 
        transform: scale(1); 
        opacity: 1; 
    }
}

@keyframes countUp {
    from { 
        -webkit-transform: scale(0.5); 
        transform: scale(0.5); 
        opacity: 0; 
    }
    to { 
        -webkit-transform: scale(1); 
        transform: scale(1); 
        opacity: 1; 
    }
}

/* Newsletter Subscription Modal */
.newsletter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.newsletter-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-content {
    background: var(--magazine-black);
    color: var(--magazine-white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    border: 2px solid var(--magazine-pink);
}

.newsletter-modal-overlay.show .newsletter-modal-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.newsletter-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--magazine-gray);
}

.newsletter-modal-header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    color: var(--magazine-white);
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--magazine-pink);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.newsletter-modal-close:hover {
    background: var(--magazine-pink);
    color: var(--magazine-white);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.newsletter-modal-body {
    padding: 2rem;
    text-align: center;
}

.newsletter-modal-body h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--magazine-pink);
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.newsletter-modal-body p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--magazine-cream);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.newsletter-modal-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-modal-form input {
    padding: 15px 20px;
    border: 2px solid var(--magazine-gray);
    background: var(--magazine-black);
    color: var(--magazine-white);
    font-size: 1rem;
    border-radius: 0;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-modal-form input:focus {
    outline: none;
    border-color: var(--magazine-pink);
}

.newsletter-modal-form input::placeholder {
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
}

.newsletter-modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.newsletter-modal-footer .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 120px;
}

/* Magazine Purchase Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--magazine-white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    color: var(--magazine-black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--magazine-gray);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--magazine-pink);
    color: white;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    color: var(--magazine-pink);
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.modal-body h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    color: var(--magazine-black);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--magazine-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-features {
    margin-bottom: 2rem;
}

.feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--magazine-black);
}

.feature i {
    color: var(--magazine-pink);
    font-size: 1.2rem;
}

.modal-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    min-width: 200px;
}

.btn-primary {
    background: var(--magazine-pink);
    color: white;
}

.btn-primary:hover {
    background: #c2185b;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--magazine-gray);
    border: 2px solid var(--magazine-gray);
}

.btn-secondary:hover {
    background: var(--magazine-gray);
    color: white;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.player-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.player-controls-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--magazine-pink);
    background: transparent;
    color: var(--magazine-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: var(--magazine-pink);
    color: white;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#speedBtn {
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 50px;
    border-radius: 20px;
}

/* YouTube Section */
.youtube-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--magazine-white) 0%, var(--magazine-cream) 100%);
    position: relative;
    overflow: hidden;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="youtube-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23e91e63" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23youtube-grain)"/></svg>');
    opacity: 0.3;
}

.youtube-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.youtube-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--magazine-black);
    margin-bottom: 2rem;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.youtube-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.youtube-embed iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.youtube-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--magazine-gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
}

/* Responsive YouTube Embed */
@media (max-width: 768px) {
    .youtube-section {
        padding: 4rem 0;
    }
    
    .youtube-embed iframe {
        height: 250px;
    }
    
    .youtube-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .youtube-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .youtube-embed iframe {
        height: 200px;
    }
    
    .youtube-content h2 {
        font-size: 1.8rem;
    }
}

/* About Section */
.about {
    min-height: 80vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 50%, #d0d0d0 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.about-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--magazine-black);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: clamp(1px, 2vw, 3px);
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.about-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--magazine-black);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    color: var(--magazine-black);
    border: 2px solid var(--magazine-black);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
}

.btn-outline:hover {
    background: var(--magazine-pink);
    color: var(--magazine-white);
    border-color: var(--magazine-pink);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

/* Newsletter Section */
.newsletter {
    background: var(--magazine-black);
    color: var(--magazine-white);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: clamp(1px, 2vw, 3px);
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.newsletter-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--magazine-pink);
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--magazine-cream);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid var(--magazine-gray);
    background: var(--magazine-black);
    color: var(--magazine-white);
    font-size: 1rem;
    border-radius: 0;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--magazine-pink);
}

.newsletter-form input::placeholder {
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
}

/* Featured Collection Section */
.featured-collection {
    padding: 6rem 0;
    background: var(--magazine-cream);
}

.featured-collection h2 {
    font-size: 3rem;
    color: var(--magazine-black);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.collection-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--magazine-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--magazine-white);
    border: 1px solid var(--magazine-beige);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    border-color: var(--magazine-pink);
}

.product-image {
    position: relative;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-placeholder {
    font-size: 3rem;
    color: #d4af37;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--magazine-pink);
    color: var(--magazine-white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.product-badge.pre-order {
    background: var(--magazine-black);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--magazine-black);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.3rem;
    color: var(--magazine-pink);
    font-weight: 700;
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    letter-spacing: 1px;
}

.collection-cta {
    text-align: center;
}

/* Instagram Gallery Section */
.instagram-gallery {
    padding: 6rem 0;
    background: var(--magazine-beige);
}

.instagram-gallery h2 {
    font-size: 3rem;
    color: var(--magazine-black);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image i {
    font-size: 2rem;
    color: #999;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
}

/* Beauty Testimonials Section */
.beauty-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--magazine-cream) 0%, var(--magazine-beige) 100%);
    position: relative;
    overflow: hidden;
}

.beauty-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="beauty-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e91e63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23beauty-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.beauty-testimonials .container {
    position: relative;
    z-index: 2;
}

.beauty-testimonials h2 {
    font-size: 3rem;
    color: var(--magazine-black);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--magazine-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--magazine-pink), var(--magazine-gold));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.testimonial-content {
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    color: var(--magazine-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--magazine-black);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--magazine-pink), var(--magazine-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--magazine-black);
    margin-bottom: 0.25rem;
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Beauty Reviews Section */
.beauty-reviews {
    padding: 6rem 0;
    background: var(--magazine-white);
}

.beauty-reviews h2 {
    font-size: 3rem;
    color: var(--magazine-black);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Bodoni Moda', serif;
    text-transform: uppercase;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--magazine-gray);
    margin-bottom: 4rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Articles Carousel */
.articles-carousel-container {
    position: relative;
    margin-bottom: 3rem;
}

.articles-carousel {
    overflow: hidden;
    position: relative;
}

.articles-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.articles-track .review-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
    max-width: 350px;
}

.carousel-clone {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
    max-width: 350px;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--magazine-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-btn:hover {
    background: var(--magazine-pink);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.prev-btn {
    margin-left: -25px;
}

.next-btn {
    margin-right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--magazine-gray);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.carousel-dot.active {
    background: var(--magazine-pink);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--magazine-gold);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--magazine-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
}

.review-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--magazine-pink);
    color: var(--magazine-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.review-content {
    padding: 2rem;
}

.review-rating {
    font-size: 1.2rem;
    color: var(--magazine-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-content h3 {
    font-size: 1.3rem;
    color: var(--magazine-black);
    margin-bottom: 1rem;
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    line-height: 1.3;
}

.review-excerpt {
    font-size: 1rem;
    color: var(--magazine-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--magazine-gray);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--magazine-black);
}

.reviews-cta {
    text-align: center;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Animations */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

/* Responsive Design */

/* Large Desktop Screens (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .about-content h2 {
        font-size: 5rem;
    }
}

/* MacBook and Similar Screens (1024px to 1366px) */
@media (max-width: 1366px) and (min-width: 1024px) {
    .container {
        max-width: 1000px;
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content h2 {
        font-size: 3.2rem;
    }
    
    .podcast-text h2 {
        font-size: 2.3rem;
    }
    
    .beauty-reviews h2 {
        font-size: 2.3rem;
    }
    
    .newsletter-content h2 {
        font-size: 2.3rem;
    }
    
    .podcast-content {
        gap: 2.5rem;
    }
    
    .articles-track .review-card {
        flex: 0 0 calc(33.333% - 1.2rem);
        min-width: 280px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .hero-buttons {
        gap: 1.8rem;
    }
    
    /* Social icons positioning for MacBook screens */
    .header-socials {
        right: 25px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    /* Ensure proper alignment on MacBook screens */
    .hero-content {
        max-width: 100vw;
    }
    
    .scroll-indicator {
        bottom: 3.5rem;
    }
    
    .carousel-dots {
        bottom: 1.5rem;
    }
}

/* Standard Desktop Screens (1367px to 1439px) */
@media (max-width: 1439px) and (min-width: 1367px) {
    .container {
        max-width: 1100px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .about-content h2 {
        font-size: 3.5rem;
    }
    
    .podcast-text h2 {
        font-size: 2.5rem;
    }
    
    .beauty-reviews h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-content h2 {
        font-size: 2.5rem;
    }
    
    .podcast-content {
        gap: 3rem;
    }
    
    .articles-track .review-card {
        flex: 0 0 calc(33.333% - 1.5rem);
        min-width: 280px;
    }
}

/* Small Desktop/Large Tablet (768px to 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .container {
        max-width: 900px;
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content h2 {
        font-size: 3rem;
    }
    
    .podcast-text h2 {
        font-size: 2.2rem;
    }
    
    .beauty-reviews h2 {
        font-size: 2.2rem;
    }
    
    .newsletter-content h2 {
        font-size: 2.2rem;
    }
    
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .articles-track .review-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    /* Ensure proper alignment on tablet screens */
    .hero-content {
        max-width: 100vw;
    }
    
    .scroll-indicator {
        bottom: 3.5rem;
    }
    
    .carousel-dots {
        bottom: 1.5rem;
    }
}

/* Desktop and Tablet (769px and above) */
@media (min-width: 769px) {
    /* Force social icons to always be visible on desktop */
    .header-socials {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure social icons are always visible when hero is visible */
    .navbar.hero-visible .header-socials {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide mobile play buttons and speed button on desktop */
    .mobile-play-btn, .mobile-pause-btn, .mobile-speed-btn {
        display: none !important;
    }
}

/* Mobile and Small Tablet (768px and below) */
@media (max-width: 768px) {
    /* Enhanced Mobile Navigation */
    .navbar {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    /* Mobile header states */
    /* When in hero section - center all navigation links */
    .navbar.hero-visible .nav-menu {
        justify-content: center;
        width: 100%;
        gap: 0.6rem;
    }
    
    .navbar.hero-visible .nav-container {
        justify-content: center;
    }
    
    .navbar.hero-visible .nav-logo {
        opacity: 0;
        visibility: hidden;
    }
    
    /* When scrolled past hero - show logo on left, Latest Issue on right */
    .navbar:not(.hero-visible) .nav-logo {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
    }
    
    /* Mobile layout when scrolled past hero - use CSS Grid for better control */
    .navbar:not(.hero-visible) .nav-container {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .navbar:not(.hero-visible) .nav-menu {
        justify-self: end !important;
        display: flex !important;
        gap: 0.8rem !important;
    }
    
    .nav-logo {
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* Ensure logo is visible when scrolled past hero on mobile */
    .navbar:not(.hero-visible) .nav-logo {
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        justify-self: start !important;
    }
    
    /* Stack logo text on mobile using CSS */
    .nav-logo h1 {
        font-size: 0; /* Hide original text */
        letter-spacing: 0.5px;
        line-height: 1.1;
        text-align: center;
    }
    
    .nav-logo h1::before {
        content: "Bonita";
        display: block;
        font-size: 0.9rem;
        line-height: 1;
    }
    
    .nav-logo h1::after {
        content: "Beauty";
        display: block;
        font-size: 0.9rem;
        line-height: 1;
    }
    
    .hamburger {
        display: none; /* Hide hamburger menu */
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: center; /* Default center - will be overridden by specific rules */
        position: static;
        background: none;
        backdrop-filter: none;
        width: 100%; /* Default full width for hero state */
        height: auto;
        text-align: center;
        transition: none;
        box-shadow: none;
        padding: 0;
        z-index: auto;
        overflow-y: visible;
    }
    
    /* Override width for non-hero state to work with grid */
    .navbar:not(.hero-visible) .nav-menu {
        width: auto !important;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
        margin: 0;
        color: var(--magazine-black);
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }
    
    /* Mobile navigation link visibility based on hero state */
    /* When in hero section (logo hidden) - show all links */
    .navbar.hero-visible .nav-link[href="#reviews"],
    .navbar.hero-visible .nav-link[href="#podcast"],
    .navbar.hero-visible .nav-link[href="#about"],
    .navbar.hero-visible .nav-link[href="#contact"] {
        display: inline-block;
    }
    
    /* When scrolled past hero (logo visible) - hide Articles, About Us, and Contact */
    .navbar:not(.hero-visible) .nav-link[href="#reviews"],
    .navbar:not(.hero-visible) .nav-link[href="#about"],
    .navbar:not(.hero-visible) .nav-link[href="#contact"] {
        display: none !important;
    }
    
    /* Force mobile layout when scrolled past hero - CSS Grid approach */
    @media (max-width: 768px) {
        .navbar:not(.hero-visible) .nav-container {
            display: grid !important;
            grid-template-columns: 1fr auto !important;
            align-items: center !important;
            gap: 1rem !important;
        }
        
        .navbar:not(.hero-visible) .nav-menu {
            justify-self: end !important;
            display: flex !important;
            gap: 0.8rem !important;
            width: auto !important;
            justify-content: flex-end !important;
        }
        
        .navbar:not(.hero-visible) .nav-logo {
            opacity: 1 !important;
            visibility: visible !important;
            position: static !important;
            transform: none !important;
            justify-self: start !important;
        }
    }
    
    .nav-link:hover {
        color: var(--magazine-pink);
        border-bottom-color: var(--magazine-pink);
        transform: none;
    }
    
    .feature-link {
        background: var(--magazine-pink);
        color: white !important;
        padding: 0.6rem 1.2rem;
        border-radius: 0;
        margin: 0;
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.8rem;
        box-shadow: 0 2px 6px rgba(233, 30, 99, 0.2);
    }
    
    .feature-link:hover {
        background: var(--magazine-black);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    }
    
    .header-socials {
        display: none !important; /* Hide social icons on mobile */
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Ensure social icons are hidden on mobile even when hero is visible */
    .navbar.hero-visible .header-socials {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .header-socials .social-link {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        background: none;
        color: #000000;
        border: none;
        padding: 0;
    }
    
    /* Enhanced Hero Section */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    
    .hero-content {
        max-width: 100vw;
        padding: 0 1rem;
    }
    
    .scroll-indicator {
        bottom: 3.5rem;
    }
    
    .scroll-text {
        font-size: 1.2rem;
    }
    
    .scroll-arrow {
        font-size: 2.2rem;
    }
    
    /* Enhanced About Section */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        padding: 2rem;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* Enhanced Services Section */
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .service-card {
        padding: 2rem;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Enhanced Contact Section */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
        gap: 1rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-item {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Enhanced Podcast Section for Mobile */
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .podcast-text h2 {
        font-size: 2.5rem;
    }
    
    .podcast-text p {
        font-size: 1.1rem;
    }
    
    .podcast-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .player-container {
        padding: 1.5rem;
    }
    
    .player-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .episode-info p {
        font-size: 1.1rem;
    }
    
    .play-btn, .pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .player-actions {
        gap: 0.5rem;
        align-items: center;
    }
    
    .player-controls-center {
        gap: 0.8rem;
        order: 1;
        align-items: center;
    }
    
    /* Hide play button from header on mobile */
    .player-controls {
        display: none;
    }
    
    /* Show mobile play buttons on mobile */
    .mobile-play-btn, .mobile-pause-btn {
        display: flex;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, var(--magazine-pink), var(--magazine-gold));
        color: white;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    }
    
    /* Initially hide pause button on mobile */
    .mobile-pause-btn {
        display: none;
    }
    
    .mobile-play-btn:hover, .mobile-pause-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 25px rgba(233, 30, 99, 0.4);
    }
    
    .player-actions {
        order: 3;
    }
    
    /* Hide desktop speed button on mobile */
    .desktop-speed-btn {
        display: none !important;
    }
    
    /* Show mobile speed button on mobile */
    .mobile-speed-btn {
        display: flex !important;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    /* Mobile volume menu */
    .volume-menu {
        min-width: 180px;
        padding: 0.8rem;
    }
    
    .volume-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Mobile modal styles */
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.3rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        min-width: auto;
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Newsletter Modal Mobile Styles */
    .newsletter-modal-content {
        width: 95%;
        margin: 1rem;
        max-width: 400px;
    }
    
    .newsletter-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .newsletter-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-modal-body {
        padding: 1.5rem;
    }
    
    .newsletter-modal-body h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-modal-body p {
        font-size: 1rem;
    }
    
    .newsletter-modal-footer {
        flex-direction: column;
        gap: 0.8rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
    
    .newsletter-modal-footer .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Final override for mobile navigation positioning - CSS Grid */
    .navbar:not(.hero-visible) .nav-container {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .navbar:not(.hero-visible) .nav-menu {
        justify-self: end !important;
        display: flex !important;
        width: auto !important;
        justify-content: flex-end !important;
        gap: 0.8rem !important;
    }
    
    .navbar:not(.hero-visible) .nav-logo {
        justify-self: start !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Enhanced Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
    
    .featured-collection h2 {
        font-size: 2rem;
    }
    
    .instagram-gallery h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .carousel-nav {
        padding: 0 15px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-dots {
        bottom: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Articles Carousel Mobile */
    .articles-track .review-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }
    
    .carousel-clone {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        margin-left: -20px;
    }
    
    .next-btn {
        margin-right: -20px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .container {
        padding: 0 1rem;
    }
    
    /* Enhanced Typography for Small Screens */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .beauty-reviews h2 {
        font-size: 2rem;
    }
    
    /* Enhanced Navigation for Small Screens */
    .nav-logo h1::before,
    .nav-logo h1::after {
        font-size: 0.8rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 0;
    }
    
    .feature-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Enhanced Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Enhanced Beauty Card */
    .beauty-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .beauty-card h3 {
        font-size: 1.3rem;
    }
    
    .beauty-card p {
        font-size: 0.9rem;
    }
    
    /* Enhanced Articles Carousel for Small Screens */
    .articles-track .review-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }
    
    .carousel-clone {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        margin-left: -17px;
    }
    
    .next-btn {
        margin-right: -17px;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Enhanced Contact Form */
    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Enhanced Footer */
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    /* Enhanced Promo Banner */
    .promo-banner {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Enhanced Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
}

/* Additional Mobile Enhancements */
@media (max-width: 768px) {
    /* Improved touch targets */
    .btn, .carousel-btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Enhanced hero carousel for mobile */
    .hero-carousel {
        height: 100vh;
    }
    
    .hero-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Improved carousel dots for mobile */
    .carousel-dots {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.3);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        width: auto;
        justify-content: center;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
        margin: 0 0.25rem;
    }
    
    /* Enhanced promo banner for mobile */
    .promo-banner {
        position: sticky;
        top: 0;
        z-index: 999;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        background: linear-gradient(135deg, var(--magazine-pink), var(--magazine-gold));
        color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Better form inputs for mobile */
    .contact-form input,
    .contact-form textarea {
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        transition: border-color 0.3s ease;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: var(--magazine-pink);
        outline: none;
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    }
    
    /* Improved review cards for mobile */
    .review-card {
        margin-bottom: 1rem;
    }
    
    .review-image {
        height: 200px;
    }
    
    .review-content {
        padding: 1.5rem;
    }
    
    .review-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .review-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    
    /* Enhanced back to top button for mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        padding: 3rem 2rem 2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }
}
