/* ==========================================================================
   ABWFM — American Baguette with French Mustard
   Design System & Global Styles
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400;1,700&display=swap');

/* ==========================================================================
   1. CSS VARIABLES — Design Tokens
   ========================================================================== */

:root {
    /* — Brand Colors — */
    --color-cream:          #f5edd6;
    --color-cream-light:    #faf8f0;
    --color-cream-dark:     #e8dfc5;
    --color-mustard:        #d4a843;
    --color-mustard-light:  #e8c96a;
    --color-mustard-dark:   #b8912e;
    --color-blue-us:        #3b4d81;
    --color-blue-us-light:  #5269a3;
    --color-blue-us-dark:   #2c3a62;
    --color-red-fr:         #c0392b;
    --color-red-fr-light:   #e74c3c;
    --color-black:          #1a1a1a;
    --color-dark:           #2d2d2d;
    --color-gray-700:       #444444;
    --color-gray-500:       #777777;
    --color-gray-400:       #999999;
    --color-gray-300:       #cccccc;
    --color-gray-200:       #e5e5e5;
    --color-gray-100:       #f0f0f0;
    --color-white:          #ffffff;

    /* — Semantic Colors — */
    --color-bg:             var(--color-cream-light);
    --color-bg-alt:         var(--color-cream);
    --color-text:           var(--color-black);
    --color-text-muted:     var(--color-gray-500);
    --color-text-light:     var(--color-gray-400);
    --color-primary:        var(--color-mustard);
    --color-primary-hover:  var(--color-mustard-dark);
    --color-secondary:      var(--color-blue-us);
    --color-secondary-hover:var(--color-blue-us-dark);
    --color-accent:         var(--color-red-fr);

    /* — Typography — */
    --font-sans:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif:           'Playfair Display', Georgia, 'Times New Roman', serif;

    --text-xs:              0.75rem;
    --text-sm:              0.875rem;
    --text-base:            1rem;
    --text-lg:              1.125rem;
    --text-xl:              1.25rem;
    --text-2xl:             1.5rem;
    --text-3xl:             1.875rem;
    --text-4xl:             2.25rem;
    --text-5xl:             3rem;
    --text-6xl:             3.75rem;

    --leading-tight:        1.2;
    --leading-normal:       1.6;
    --leading-relaxed:      1.75;

    /* — Spacing — */
    --space-xs:             0.25rem;
    --space-sm:             0.5rem;
    --space-md:             1rem;
    --space-lg:             1.5rem;
    --space-xl:             2rem;
    --space-2xl:            3rem;
    --space-3xl:            4rem;
    --space-4xl:            6rem;

    /* — Borders & Radius — */
    --radius-sm:            0.375rem;
    --radius-md:            0.625rem;
    --radius-lg:            1rem;
    --radius-xl:            1.5rem;
    --radius-full:          9999px;

    /* — Shadows — */
    --shadow-sm:            0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:            0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg:            0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl:            0 16px 50px rgba(0,0,0,0.15);
    --shadow-glow:          0 0 30px rgba(212,168,67,0.2);

    /* — Transitions — */
    --transition-fast:      150ms ease;
    --transition-base:      250ms ease;
    --transition-slow:      400ms ease;

    /* — Layout — */
    --container-max:        1200px;
    --container-narrow:     900px;
    --header-height:        77px;
}


/* ==========================================================================
   2. CSS RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: var(--leading-tight);
    color: var(--color-black);
}

h1 { font-size: var(--text-5xl); font-weight: 700; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 700; }
h4 { font-size: var(--text-xl);  font-weight: 600; font-family: var(--font-sans); }
h5 { font-size: var(--text-lg);  font-weight: 600; font-family: var(--font-sans); }

p {
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
}

.text-muted    { color: var(--color-text-muted); }
.text-light    { color: var(--color-text-light); }
.text-accent   { color: var(--color-accent); }
.text-primary  { color: var(--color-primary); }
.text-serif    { font-family: var(--font-serif); }
.text-center   { text-align: center; }
.text-sm       { font-size: var(--text-sm); }
.text-lg       { font-size: var(--text-lg); }

.highlight {
    color: var(--color-mustard-dark);
    font-style: italic;
    font-family: var(--font-serif);
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--dark {
    background-color: var(--color-black);
    color: var(--color-cream-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-cream);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__header h2 {
    margin-bottom: var(--space-sm);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-mustard) 0%, var(--color-mustard-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(212,168,67,0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212,168,67,0.45);
}

.btn--secondary {
    background: var(--color-blue-us);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(59,77,129,0.3);
}

.btn--secondary:hover {
    background: var(--color-blue-us-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59,77,129,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-black);
    border-color: var(--color-gray-300);
}

.btn--outline:hover {
    border-color: var(--color-mustard);
    color: var(--color-mustard-dark);
    background: rgba(212,168,67,0.05);
}

.btn--spotify {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
}

.btn--spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
    color: white;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.35);
}

.btn--red {
    background: var(--color-red-fr);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}

.btn--red:hover {
    background: var(--color-red-fr-light);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-sm);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: var(--text-lg);
}

.btn__icon {
    font-size: 1.2em;
}


/* ==========================================================================
   6. CARDS
   ========================================================================== */

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card__body {
    padding: var(--space-lg);
}

.card__title {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__meta {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.card__text {
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    line-height: var(--leading-normal);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.card__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}


/* ==========================================================================
   7. BADGES & TAGS
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.25rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--mustard {
    background: rgba(212,168,67,0.15);
    color: var(--color-mustard-dark);
}

.badge--blue {
    background: rgba(59,77,129,0.12);
    color: var(--color-blue-us);
}

.badge--red {
    background: rgba(192,57,43,0.12);
    color: var(--color-red-fr);
}

.badge--dark {
    background: var(--color-black);
    color: var(--color-cream);
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: var(--text-xs);
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--color-mustard);
    color: var(--color-white);
}


/* ==========================================================================
   8. HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,248,240,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header__logo img {
    height: 82px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-black);
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-mustard);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-black);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--active {
    color: var(--color-black);
}

.nav__link--active::after {
    width: 100%;
}

/* Mobile hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-cream-light);
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--color-mustard);
    }

    .nav__links.open {
        display: flex;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        display: none !important;
    }

    .header__logo-text {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .header__logo-text {
        display: block;
    }
}


/* ==========================================================================
   8b. LOCALE PICKER
   ========================================================================== */

.locale-picker {
    position: relative;
}

.locale-picker__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.locale-picker__toggle:hover {
    background: rgba(212,168,67,0.1);
    border-color: var(--color-mustard);
    color: var(--color-black);
}

.locale-picker__flag {
    font-size: 1.15em;
    line-height: 1;
}

.locale-picker__code {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.locale-picker__chevron {
    transition: transform var(--transition-fast);
    opacity: 0.6;
}

.locale-picker__toggle[aria-expanded="true"] .locale-picker__chevron {
    transform: rotate(180deg);
}

.locale-picker__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 120px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-base);
    z-index: 1001;
    overflow: hidden;
}

.locale-picker__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.locale-picker__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.locale-picker__option:hover {
    background: rgba(212,168,67,0.1);
    color: var(--color-black);
}

.locale-picker__option--active {
    background: rgba(212,168,67,0.15);
    color: var(--color-mustard-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .locale-picker {
        order: 10;
        margin-top: var(--space-sm);
    }

    .locale-picker__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.08);
        display: none;
        backdrop-filter: none;
        background: var(--color-white);
    }

    .locale-picker__dropdown.open {
        display: block;
    }
}


/* ==========================================================================
   9. HERO SECTION — YouTuber Showcase
   ========================================================================== */

.hero {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: linear-gradient(160deg, var(--color-cream-light) 0%, var(--color-cream) 40%, rgba(212,168,67,0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Animated background shapes */
.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--color-mustard);
    top: -200px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--color-blue-us);
    bottom: -150px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 250px;
    height: 250px;
    background: var(--color-red-fr);
    top: 40%;
    left: 30%;
    animation: floatShape 25s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero__badge {
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-family: var(--font-serif);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero__title span {
    background: linear-gradient(135deg, var(--color-mustard) 0%, var(--color-mustard-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Stats row */
.hero__stats {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero__stat-number {
    font-size: var(--text-2xl);
    line-height: 1;
}

.hero__stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Eva's photo */
.hero__photo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero__photo {
    max-height: 600px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero__photo-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212,168,67,0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0 var(--space-xl);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        order: 2;
    }

    .hero__photo-wrapper {
        order: 1;
    }

    .hero__photo {
        max-height: 400px;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-lg) 0 var(--space-md);
    }

    .hero__photo {
        max-height: 270px;
    }

    .hero__stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
}


/* ==========================================================================
   10. SHORTS GRID
   ========================================================================== */

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.short-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.short-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.short-card__thumbnail {
    aspect-ratio: 9/16;
    width: 100%;
    object-fit: cover;
    background: var(--color-gray-200);
}

.short-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.short-card:hover .short-card__play {
    opacity: 1;
}

.short-card__play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}

.short-card__body {
    padding: var(--space-md);
}

.short-card__title {
    font-size: var(--text-sm);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.short-card__meta {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .shorts-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .shorts-grid .short-card:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shorts-grid .short-card:nth-child(4),
    .shorts-grid .short-card:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .shorts-grid .short-card:nth-child(n+3) {
        display: none;
    }
}


/* ==========================================================================
   11. PODCAST EPISODES GRID
   ========================================================================== */

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 900px) {
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .episodes-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   11b. LATEST EPISODE SECTION
   ========================================================================== */

.latest-episode {
    background: var(--color-black);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.latest-episode::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.latest-episode__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.latest-episode__label {
    margin-bottom: var(--space-xl);
}

.latest-episode__video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #111;
}

.latest-episode__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.latest-episode__title {
    margin-top: var(--space-lg);
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.latest-episode__cta {
    margin-top: var(--space-xl);
}

/* Animated Subscribe Button */
.btn--subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2.5rem;
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--color-red-fr);
    color: var(--color-white);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: subscribePulse 2.5s ease-in-out infinite;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(192,57,43,0.4);
    white-space: nowrap; /* Keep it on one line for Desktop */
}

@media (max-width: 480px) {
    .btn--subscribe {
        white-space: normal; /* Allow text wrapping on very small screens to prevent layout break */
    }
}

.btn--subscribe::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: subscribeShine 3s ease-in-out infinite;
}

.btn--subscribe:hover {
    background: var(--color-red-fr-light);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(192,57,43,0.5);
}

@keyframes subscribePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,0.4); }
    50% { box-shadow: 0 4px 35px rgba(192,57,43,0.7); }
}

@keyframes subscribeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}


/* ==========================================================================
   11c. ABOUT SHOWCASE (with photos)
   ========================================================================== */

.about-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-showcase__photo img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.about-showcase__photo img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.about-showcase__photo--left {
    transform: rotate(-2deg);
}

.about-showcase__photo--right {
    transform: rotate(2deg);
}

.about-showcase__photo--left:hover,
.about-showcase__photo--right:hover {
    transform: rotate(0deg);
}

.about-showcase__text {
    text-align: left;
}

.about-showcase__lead {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
}

.about-showcase__cta {
    margin-top: var(--space-lg);
}

@media (max-width: 900px) {
    .about-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding: var(--space-lg) var(--space-md);
    }

    .about-showcase__photo {
        display: none;
    }

    .about-showcase__photo--left {
        transform: rotate(0);
    }

    .about-showcase__photo--right {
        transform: rotate(0);
    }

    .about-showcase__text {
        text-align: left;
        order: -1;
        word-break: break-word;
    }

    .about-showcase__cta {
        text-align: center;
    }
}


/* ==========================================================================
   11d. MEET THE HOST
   ========================================================================== */

.meet-host {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 50%, rgba(212,168,67,0.06) 100%);
}

.meet-host__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.meet-host__photo img {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
}

.meet-host__photo img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.meet-host__content h2 {
    margin-bottom: var(--space-lg);
}

.meet-host__content p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-gray-700);
}

.meet-host__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

/* Reversed layout for Alex's section */
.meet-host--reversed {
    background: var(--color-cream-light);
}

.meet-host--reversed .meet-host__inner {
    direction: rtl;
}

.meet-host--reversed .meet-host__inner > * {
    direction: ltr;
}

/* Make Alex's about photo slightly smaller than Eva's */
.about-showcase__photo--left img {
    max-height: 360px;
    max-width: 92%;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 768px) {
    .meet-host {
        padding: var(--space-xl) 0;
    }

    .meet-host__inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: var(--space-sm);
        word-break: break-word;
    }

    .meet-host__content {
        padding: var(--space-lg) var(--space-md);
    }

    .meet-host__photo {
        display: flex;
        justify-content: center;
        margin-bottom: calc(-1 * var(--space-sm));
    }

    .meet-host__photo img {
        max-width: 220px;
    }

    .meet-host__actions {
        justify-content: center;
    }

    .meet-host--reversed .meet-host__inner {
        direction: ltr;
    }
}


/* ==========================================================================
   11e. PLATFORMS GRID
   ========================================================================== */

.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    font-weight: 600;
    color: var(--color-gray-700);
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mustard);
}

.platform-card span {
    font-size: var(--text-lg);
}


/* ==========================================================================
   12. NEWSLETTER / CTA SECTION
   ========================================================================== */

.cta-section {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.cta-section__inner {
    background: linear-gradient(135deg, var(--color-blue-us) 0%, var(--color-blue-us-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-xl);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(212,168,67,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-lg);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form__input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.12);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    outline: none;
    transition: all var(--transition-fast);
}

.newsletter-form__input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form__input:focus {
    border-color: var(--color-mustard);
    background: rgba(255,255,255,0.18);
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.footer {
    background: var(--color-black);
    color: var(--color-gray-400);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__brand img {
    height: 56px;
    margin-bottom: var(--space-md);
}

.footer__brand p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--color-gray-400);
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-mustard);
}

.footer__socials {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--color-gray-400);
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--color-mustard);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   14. SVG ICONS (inline)
   ========================================================================== */

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}


/* ==========================================================================
   15. ANIMATIONS
   ========================================================================== */

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.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.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }

/* Pulse */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Shimmer placeholder */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}


/* ==========================================================================
   16. STICKY MOBILE CTA
   ========================================================================== */

.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: var(--space-md) var(--space-lg);
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212,168,67,0.3);
}

.mobile-cta .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    /* Account for the sticky CTA at the bottom */
    .footer {
        padding-bottom: calc(var(--space-3xl) + 80px);
    }
}


/* ==========================================================================
   17. UTILITY CLASSES
   ========================================================================== */

.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.items-center   { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm         { gap: var(--space-sm); }
.gap-md         { gap: var(--space-md); }
.gap-lg         { gap: var(--space-lg); }
.mt-sm          { margin-top: var(--space-sm); }
.mt-md          { margin-top: var(--space-md); }
.mt-lg          { margin-top: var(--space-lg); }
.mt-xl          { margin-top: var(--space-xl); }
.mb-md          { margin-bottom: var(--space-md); }
.mb-lg          { margin-bottom: var(--space-lg); }
.hidden         { display: none !important; }

@media (max-width: 768px) {
    .hidden-mobile { display: none !important; }
}


/* ==========================================================================
   LEGAL PAGES — Terms & Privacy
   ========================================================================== */

.legal-page {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-light) 30%);
    min-height: 100vh;
}

.legal-page__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.legal-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-serif);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.legal-page__updated {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.legal-page__content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.legal-page__section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-page__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-page__section h2 {
    font-size: var(--text-xl);
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

.legal-page__section p {
    font-size: var(--text-base);
    color: var(--color-gray-700);
    line-height: var(--leading-relaxed);
}

.legal-page__section ul {
    margin-top: var(--space-md);
    padding-left: var(--space-lg);
    list-style: none;
}

.legal-page__section ul li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
    color: var(--color-gray-700);
    line-height: var(--leading-relaxed);
}

.legal-page__section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-mustard);
}

.legal-page__back {
    text-align: center;
    margin-top: var(--space-3xl);
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: calc(var(--header-height) + var(--space-xl));
    }

    .legal-page__content {
        padding: var(--space-xl);
        border-radius: var(--radius-lg);
    }

    .legal-page__section h2 {
        font-size: var(--text-lg);
    }
}


/* ==========================================================================
   VIDEOS LISTING PAGE
   ========================================================================== */

.videos-page {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-light) 30%);
    min-height: 100vh;
}

.videos-page__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.videos-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-serif);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.videos-page__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.videos-page__filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.videos-page__filter {
    padding: var(--space-sm) var(--space-xl);
    border-radius: 999px;
    border: 2px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-gray-700);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-base);
}

.videos-page__filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.videos-page__filter--active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.videos-page__filter--active:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: none;
}

/* Video Grid */
.videos-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

/* Video Card */
.video-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-card__thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-gray-200);
}

.video-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.video-card:hover .video-card__thumbnail img {
    transform: scale(1.05);
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(192, 57, 43, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.video-card__play svg {
    width: 24px;
    height: 24px;
    color: white;
    margin-left: 3px;
}

.video-card:hover .video-card__play {
    opacity: 1;
}

.video-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-card__badge--podcast {
    background: rgba(192, 57, 43, 0.9);
    color: white;
}

.video-card__badge--short {
    background: rgba(241, 196, 15, 0.95);
    color: var(--color-black);
}

.video-card__body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card__title {
    font-size: var(--text-base);
    font-weight: 700;
    line-height: var(--leading-snug);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.video-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    flex: 1;
}

/* Empty State */
.videos-page__empty {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.videos-page__empty p {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .videos-page {
        padding-top: calc(var(--header-height) + var(--space-xl));
    }

    .videos-page__grid {
        grid-template-columns: 1fr;
    }

    .videos-page__filter {
        padding: var(--space-xs) var(--space-lg);
        font-size: var(--text-xs);
    }
}


/* ==========================================================================
   SUGGESTIONS SECTION — Videos Page
   ========================================================================== */

.suggestions {
    margin-top: var(--space-4xl);
    padding-top: var(--space-3xl);
    border-top: 2px solid var(--color-gray-200);
}

.suggestions__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.suggestions__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-family: var(--font-serif);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--color-black);
}

.suggestions__subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Section headers (Podcast / Shorts) */
.suggestions__section {
    margin-bottom: var(--space-3xl);
}

.suggestions__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.suggestions__section-title {
    font-size: var(--text-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.suggestions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.2rem;
}

.suggestions__icon--podcast {
    background: rgba(192, 57, 43, 0.1);
}

.suggestions__icon--short {
    background: rgba(241, 196, 15, 0.15);
}

.suggestions__view-all {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.suggestions__view-all:hover {
    color: var(--color-accent);
    transform: translateX(3px);
}

/* Horizontal scrollable row */
.suggestions__row {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-md);
    scrollbar-width: thin;
}

.suggestions__row::-webkit-scrollbar {
    height: 4px;
}

.suggestions__row::-webkit-scrollbar-track {
    background: var(--color-gray-200);
    border-radius: 4px;
}

.suggestions__row::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

/* Suggestion Card */
.suggestion-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.suggestion-card:hover {
    transform: translateY(-4px);
}

.suggestion-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.suggestion-card:hover .suggestion-card__thumb {
    box-shadow: var(--shadow-lg);
}

.suggestion-card__thumb--vertical {
    aspect-ratio: 9/16;
    max-height: 320px;
}

.suggestion-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.suggestion-card:hover .suggestion-card__thumb img {
    transform: scale(1.05);
}

.suggestion-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(192, 57, 43, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.suggestion-card__play svg {
    width: 20px;
    height: 20px;
    color: white;
    margin-left: 2px;
}

.suggestion-card:hover .suggestion-card__play {
    opacity: 1;
}

.suggestion-card__badge {
    position: absolute;
    top: var(--space-xs);
    left: var(--space-xs);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.suggestion-card__badge--podcast {
    background: rgba(192, 57, 43, 0.9);
    color: white;
}

.suggestion-card__badge--short {
    background: rgba(241, 196, 15, 0.95);
    color: var(--color-black);
}

/* Ribbon badges (Popular / New) */
.suggestion-card__ribbon {
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    animation: ribbon-pulse 2s ease-in-out infinite;
}

.suggestion-card__ribbon--popular {
    background: linear-gradient(135deg, #ff6b35, #f7c948);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.suggestion-card__ribbon--new {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

.suggestion-card__title {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: var(--space-sm);
    line-height: var(--leading-snug);
    color: var(--color-black);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* Badge dark variant for suggestions header */
.badge--dark {
    background: var(--color-black);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .suggestions__section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }

    .suggestion-card {
        flex: 0 0 230px;
    }

    .suggestion-card__thumb--vertical {
        max-height: 260px;
    }
}


/* ==========================================================================
   GDPR COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: cookieSlideUp 0.5s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text p {
    color: rgba(255,255,255,0.9);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.cookie-banner__text a {
    color: var(--color-mustard);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
        gap: var(--space-md);
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}
