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

:root {
    --primary: #4480DE;
    --primary-dark: #1f52ca;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --font-primary: 'Arya', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@font-face {
    font-family: 'Arya';
    src: url('resources/font/Arya-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'Arya';
    src: url('resources/font/Arya-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-family: 'Arya', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

/* Hardware acceleration for smoother animations */
* {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Arya', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background-image: url('resources/stradt.svg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

/* Force Arya on all elements */
body, input, textarea, select, button, div, span, p, h1, h2, h3, h4, h5, h6, a, li, td, th, label {
    font-family: 'Arya', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Background Layers */
.front-wall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('resources/PERISH.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
}

.front-wall-inverse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('resources/PERISHABLE.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Admin Panel Layout */
.admin-panel {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    z-index: 2;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
}

.content-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 2rem 2rem;
    scroll-behavior: smooth;
}

/* Page Content */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
    margin-top: 0;
}

/* Page Loading States */
.page-loading,
.page-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 1rem;
    color: var(--text-muted);
}

.page-loading .loading-spinner,
.loading-state .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.page-error button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.page-error button:hover {
    background: var(--primary-dark);
}

/* Page Titles */
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    padding-top: 100px;
    cursor: default;
}

.page-title--meals {
    background: linear-gradient(135deg, #ff9a3c, #ff6a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title--workouts {
    background: linear-gradient(135deg, #5ca9ff, #2563ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    isolation: isolate;
    perspective: 1000px; /* For 3D effects */
}

.hero__background {
    position: absolute;
    inset: 0;
    will-change: transform;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlideshow 12s ease-in-out infinite;
    transform: scale(1.1); /* Start slightly zoomed for parallax feel */
}

.hero__slide--one {
    background-image: url('resources/repap/walla.jpg');
}

.hero__slide--two {
    background-image: url('resources/repap/wallahi.jpg');
    animation-delay: 6s;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transform: translateZ(0); /* Hardware acceleration */
}

.hero__eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #9db6ff;
    font-size: 1rem;
    cursor: default;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

.hero__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    font-weight: 800;
    cursor: default;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.7s;
}

.hero__subtitle {
    color: rgba(255, 255, 255, .85);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 680px;
    margin: 0 auto;
    cursor: default;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.9s;
    margin-top: 1rem;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.15rem 0.9rem;
    border-radius: .5rem;
    margin: 0 0.25rem;
    font-weight: 700;
    color: #0b0b0b;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    -webkit-mask-image:
        radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
    mask-image:
        radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
}

/* ... existing pill styles ... */

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

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.hero__scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    animation: scrollLine 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

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

.hero__pill::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(circle at 18% 32%, rgba(0, 0, 0, 0.45) 0 15%, transparent 42%),
        radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.4) 0 12%, transparent 36%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0px, rgba(255, 255, 255, 0.18) 3px, transparent 3px, transparent 9px),
        repeating-linear-gradient(-70deg, rgba(0, 0, 0, 0.25) 0px, rgba(0, 0, 0, 0.25) 2px, transparent 2px, transparent 8px);
    mix-blend-mode: overlay;
    opacity: 0.45;
    pointer-events: none;
    filter: contrast(120%) saturate(110%);
}

.hero__pill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hero__pill:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.hero__pill:hover::before {
    opacity: 0.6;
}

.hero__pill:hover::after {
    opacity: 1;
}

.hero__pill--meals {
    background: linear-gradient(135deg, #ff9a3c, #ff6a00);
    color: #1c0b00;
}

.hero__pill--workouts {
    background: linear-gradient(135deg, #5ca9ff, #2563ff);
    color: #001033;
}

@keyframes heroSlideshow {
    0%, 45% { opacity: 1; transform: scale(1); }
    55%, 100% { opacity: 0; transform: scale(1.05); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.nav-toggle {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    position: relative;
    max-width: 95vw;
    gap: 0.1rem;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-scroll {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    position: relative;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

.toggle-item--icon {
    flex-shrink: 0;
}

.toggle-indicator {
    position: absolute;
    height: calc(100% - 1px);
    background: #333;
    border-radius: 50px;
    z-index: 1;
    transition: left 0.15s ease-out, width 0.15s ease-out;
}

.toggle-indicator.bounce {
    animation: bounce 0.25s ease-out;
}

@keyframes bounce {
    0% { transform: scale(1, 1); }
    30% { transform: scale(1.25, 0.75); }
    50% { transform: scale(0.85, 1.15); }
    75% { transform: scale(1.1, 0.9); }
    100% { transform: scale(1, 1); }
}

.toggle-item {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 5px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #b3b3b3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.toggle-item:hover {
    color: #5084ff;
}

.toggle-item.active {
    color: #fff;
}

.toggle-item svg {
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

/* Cart count badge */
.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    z-index: 10;
    animation: cartBadgePop 0.3s ease;
}

@keyframes cartBadgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}


/* ========================================
   WORKOUTS SECTION - Smooth AF
   ======================================== */

.workouts {
    scroll-margin-top: 2rem;
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(37, 99, 255, 0.01) 10%,
        rgba(37, 99, 255, 0.04) 30%,
        rgba(37, 99, 255, 0.06) 60%,
        rgba(37, 99, 255, 0.04) 85%,
        transparent 100%
    );
    overflow: hidden;
}


.workouts__content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
    text-align: center;
}

.workouts__intro {
    font-size: clamp(1.4rem, 2.5vw, 1.5rem);
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 1rem;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.8);
    background-image:
        radial-gradient(circle at 18% 32%, rgba(0, 0, 0, 0.18) 0 15%, transparent 42%),
        radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.35) 0 12%, transparent 36%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0px, rgba(255, 255, 255, 0.16) 3px, transparent 3px, transparent 9px),
        repeating-linear-gradient(-70deg, rgba(0, 0, 0, 0.12) 0px, rgba(0, 0, 0, 0.12) 2px, transparent 2px, transparent 8px),
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent);
    width: fit-content;
    margin: 0 auto;
    padding: 0.5rem 5rem;
    border-radius: 0.1rem;
    cursor: default;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-mask-image:
        radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
    mask-image:
        radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
}

.workouts__intro.reveal-on-scroll,
.meals-home__intro.reveal-on-scroll {
    transition-duration: 1.4s; 
    transform: translateY(40px) scale(0.96);
}

.workouts__intro.reveal-on-scroll.in-view,
.meals-home__intro.reveal-on-scroll.in-view {
    transform: translateY(0) scale(1);
}

.workouts__intro-accent,
.meals-home__intro-accent {
    display: block;
    margin-top: 0rem;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.85);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Inner reveal for the accent part */
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; /* Delay it slightly */
}

.workouts__intro.in-view .workouts__intro-accent,
.meals-home__intro.in-view .meals-home__intro-accent {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.workouts__pitch {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.75);
    margin:  0 auto;
    margin-top: 1rem;
    max-width: 800px;
    line-height: 1.8;
    cursor: default;
}

.workouts__goals {
    position: relative;
    display: inline-block;
    min-width: 11ch;
    height: 1.2em;
    text-align: center;
    vertical-align: baseline;
}

.workouts__goal {
    position: absolute;
    left: 50%;
    top: -.06rem;
    font-weight: 700;
    color: #5ca9ff;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 0.45em);
    transition: opacity 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    pointer-events: none;
}

.workouts__goal--active {
    opacity: 1;
    transform: translate(-50%, 0);
}

.workouts__divider {
    width: 60%;
    max-width: 1000px;
    height: 1px;
    margin: 1rem auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(92, 169, 255, 0.2) 15%,
        rgba(92, 169, 255, 0.6) 50%,
        rgba(92, 169, 255, 0.2) 85%,
        transparent 100%
    );
    position: relative;
}

.workouts__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #5ca9ff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(92, 169, 255, 0.8), 0 0 40px rgba(92, 169, 255, 0.4);
}

.workouts__images {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    align-items: center;
    margin: 8rem auto;
    max-width: 1100px;
    position: relative;
    height: auto;
}

.workouts__image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #000;
    /* Premium border treatment */
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity, filter;
    transform: scale(0.9) translateY(60px);
    opacity: 0;
    filter: blur(10px);
    transition: transform 1.4s cubic-bezier(0.1, 0.9, 0.2, 1), 
                opacity 1.4s ease, 
                box-shadow 1.4s ease, 
                filter 1.4s ease;
}

.workouts__image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    mask:
       linear-gradient(#fff 0 0) content-box,
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.workouts__image-container.in-view {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(92, 169, 255, 0.15) inset; /* Inner blue glow */
}

.workouts__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.8s cubic-bezier(0.1, 0.9, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.workouts__image-container.in-view img {
    transform: scale(1);
    filter: brightness(1) contrast(1);
}

.workouts__image-container:hover {
    transform: scale(1.01);
    box-shadow: 0 60px 120px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(92, 169, 255, 0.4);
}

.workouts__image-placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(92, 169, 255, 0.08) 0%, transparent 60%);
}

.workouts__cta {
    font-size: clamp(1.8rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-top: 2rem;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.9);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
    cursor: default;
}

/* Ambient glow orbs - using radial gradient instead of blur for performance */
.workouts::before,
.workouts::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
}

.workouts::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 169, 255, 0.18) 0%, rgba(92, 169, 255, 0.05) 40%, transparent 70%);
    top: 10%;
    left: -10%;
    opacity: 0.2;
    animation: workoutsDrift 22s ease-in-out infinite, glowPulse 4.5s ease-in-out infinite;
}

.workouts::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.15) 0%, rgba(37, 99, 255, 0.04) 40%, transparent 70%);
    bottom: 20%;
    right: -5%;
    opacity: 0.15;
    animation: workoutsDrift 28s ease-in-out infinite reverse, glowPulse 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateZ(0) translate(0, 0); }
    33% { transform: translateZ(0) translate(30px, -20px); }
    66% { transform: translateZ(0) translate(-20px, 30px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.85; }
}

@keyframes workoutsDrift {
    0%, 100% { transform: translateZ(0) translate(0, 0) scale(1); }
    20% { transform: translateZ(0) translate(140px, -60px) scale(1.06); }
    50% { transform: translateZ(0) translate(40px, 120px) scale(1.12); }
    80% { transform: translateZ(0) translate(-130px, 60px) scale(1.04); }
}

/* Scroll-triggered reveal animations */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(30px) scale(0.98);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.in-view {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Ensure specific elements don't have conflicting transforms */
.workouts__image-container--left,
.workouts__image-container--right {
    opacity: 1;
}

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

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

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ========================================
   MEALS SECTION - Home Page
   (Mirrors Workouts styling/effects)
   ======================================== */

.meals-home {
    --primary: #ff9a3c;
    --primary-dark: #ff6a00;
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 106, 0, 0.01) 15%,
        rgba(255, 106, 0, 0.04) 40%,
        rgba(255, 106, 0, 0.04) 60%,
        rgba(255, 106, 0, 0.01) 85%,
        transparent 100%
    );
    overflow: hidden;
}

/* Dramatic BUT transition (restored) */
.meals-home__transition {
    text-align: center;
    padding: 8rem 2rem;
    background-color: #000;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.meals-home__but {
    display: block;
    font-size: clamp(6rem, 25vw, 13rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 0.8;
    margin-bottom: 0;
    cursor: default;
    transform: scaleX(1.1);
}

.meals-home__realization {
    font-size: clamp(1.5rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    cursor: default;
    font-weight: 300;
    margin-top: 1rem; /* Tighter packing */
    position: relative;
    z-index: 2;
}

.meals-home__realization-accent {
    display: block;
    margin-top: 0.5rem;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.5rem);
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6a00 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

/* Main content */
.meals-home__content {
    scroll-margin-top: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
    text-align: center;
}

/* Quote pill (same vibe as Workouts) */
.meals-home__intro {
    font-size: clamp(1.4rem, 2.5vw, 1.5rem);
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 1rem;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.8);
    background-image:
        radial-gradient(circle at 18% 32%, rgba(0, 0, 0, 0.18) 0 15%, transparent 42%),
        radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.35) 0 12%, transparent 36%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0px, rgba(255, 255, 255, 0.16) 3px, transparent 3px, transparent 9px),
        repeating-linear-gradient(-70deg, rgba(0, 0, 0, 0.12) 0px, rgba(0, 0, 0, 0.12) 2px, transparent 2px, transparent 8px),
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent);
    width: fit-content;
    margin: 0 auto;
    padding: 0.5rem 5rem;
    border-radius: 0.1rem;
    cursor: default;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-mask-image:
        radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
    mask-image:
        radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
}

.meals-home__intro-accent {
    display: block;
    margin-top: 0rem;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.85);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.meals-home__pitch {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto;
    margin-top: 1rem;
    max-width: 800px;
    line-height: 1.8;
    cursor: default;
}

.meals-home__goals {
    position: relative;
    display: inline-block;
    min-width: 13ch;
    height: 1.2em;
    text-align: center;
    vertical-align: baseline;
    cursor: default;
}

.meals-home__goal {
    position: absolute;
    left: 50%;
    top: -.06rem;
    font-weight: 700;
    color: #ff9a3c;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 0.45em);
    transition: opacity 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    pointer-events: none;
}

.meals-home__goal--active {
    opacity: 1;
    transform: translate(-50%, 0);
}

.meals-home__divider {
    width: 60%;
    max-width: 1000px;
    height: 1px;
    margin: 1rem auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 154, 60, 0.2) 15%,
        rgba(255, 106, 0, 0.6) 50%,
        rgba(255, 154, 60, 0.2) 85%,
        transparent 100%
    );
    position: relative;
}

.meals-home__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #ff9a3c;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 154, 60, 0.75), 0 0 40px rgba(255, 106, 0, 0.35);
}

.meals-home__images {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    align-items: center;
    margin: 8rem auto;
    max-width: 1100px;
    position: relative;
    height: auto;
}

.meals-home__image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #000;
    /* Premium border treatment */
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity, filter;
    transform: scale(0.9) translateY(60px);
    opacity: 0;
    filter: blur(10px);
    transition: transform 1.4s cubic-bezier(0.1, 0.9, 0.2, 1), 
                opacity 1.4s ease, 
                box-shadow 1.4s ease, 
                filter 1.4s ease;
}

.meals-home__image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    mask:
       linear-gradient(#fff 0 0) content-box,
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.meals-home__image-container.in-view {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 154, 60, 0.15) inset; /* Inner orange glow */
}

.meals-home__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.8s cubic-bezier(0.1, 0.9, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.meals-home__image-container.in-view img {
    transform: scale(1);
    filter: brightness(1) contrast(1);
}

.meals-home__image-container:hover {
    transform: scale(1.01);
    box-shadow: 0 60px 120px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 154, 60, 0.4);
}

.meals-home__image-placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 154, 60, 0.08) 0%, transparent 60%);
}

.meals-home__image-container--left,
.meals-home__image-container--right {
    opacity: 1;
}

.meals-home__cta {
    font-size: clamp(1.8rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-top: 2rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6a00 50%, #ff9a3c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
    cursor: default;
}

/* Ambient glow orbs for meals */
.meals-home::before,
.meals-home::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
}

.meals-home::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 154, 60, 0.12) 0%, rgba(255, 154, 60, 0.03) 40%, transparent 70%);
    top: 20%;
    right: -15%;
    opacity: 0.15;
    animation: workoutsDrift 24s ease-in-out infinite, glowPulse 5.2s ease-in-out infinite;
}

.meals-home::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, rgba(74, 222, 128, 0.02) 40%, transparent 70%);
    bottom: 15%;
    left: -10%;
    opacity: 0.12;
    animation: workoutsDrift 30s ease-in-out infinite reverse, glowPulse 6.4s ease-in-out infinite 0.8s;
}

/* ========================================
   FINAL CTA SECTION - Premium Dark
   ======================================== */

.final-cta {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(68, 128, 222, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 154, 60, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta__heading {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    cursor: default;
    background: linear-gradient(180deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.final-cta__subheading {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    cursor: default;
    font-weight: 300;
}

.final-cta__divider {
    width: 60%;
    max-width: 1000px;
    height: 1px;
    margin: 1rem auto 3rem;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 15%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 85%,
        transparent 100%
    );
    position: relative;
}

.final-cta__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4);
}

.final-cta__wheel-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    margin: 2rem auto;
    border-radius: 1rem;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Center highlight bar */
.final-cta__wheel-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.final-cta__wheel-highlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1.5), transparent);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    mask:
       linear-gradient(#fff 0 0) content-box,
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.final-cta__wheel-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1.5), transparent);
    opacity: 0.5;
}

/* Fade masks */
.final-cta__wheel-wrapper::before,
.final-cta__wheel-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    z-index: 2;
}

.final-cta__wheel-wrapper::before {
    top: 0;
    background: linear-gradient(180deg, #050505 0%, transparent 100%);
}

.final-cta__wheel-wrapper::after {
    bottom: 0;
    background: linear-gradient(0deg, #050505 0%, transparent 100%);
}

.final-cta__wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 128px 0;
    overflow-y: auto;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    perspective: 500px;
}

.final-cta__wheel::-webkit-scrollbar {
    display: none;
}

.final-cta__option {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    transform-origin: center center;
}

.final-cta__option:hover {
    color: rgba(255, 255, 255, 0.6);
}

.final-cta__option.active {
    color: #fff;
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Depth effect: items closer to center are more visible */
.final-cta__option--near {
    opacity: 0.8;
    transform: scale(0.95) rotateX(10deg);
}

.final-cta__option--far {
    opacity: 10.5;
    transform: scale(0.8) rotateX(20deg);
}

.final-cta__hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Site Footer */
.site-footer {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(68, 128, 222, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.site-footer__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.site-footer__brand {
    flex-shrink: 0;
}

.site-footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.site-footer__column {
    min-width: 120px;
}

.site-footer__heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__link:hover {
    color: #fff;
}

.site-footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    margin: 2rem 0;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.site-footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.site-footer__social {
    display: flex;
    gap: 1rem;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.site-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer__social-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .site-footer__content {
        padding: 3rem 1.5rem 1.5rem;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 2.5rem;
    }

    .site-footer__links {
        gap: 2rem;
    }

    .site-footer__column {
        min-width: calc(50% - 1rem);
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 110vh;
        transform: translateY(-5vh);
    }

    .navbar {
        top: 0.75rem;
        left: 0;
        transform: none;
        padding: 0 0.75rem;
        justify-content: center;
    }

    .nav-toggle {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .nav-scroll {
        gap: 0.4rem;
    }

    .toggle-item {
        padding: 3px 14px;
        font-size: 0.95rem;
    }

    .page-title {
        padding-top: 60px;
    }

    .main-content {
        padding-top: 0;
        height: auto;
        overflow: visible;
    }

    .admin-panel {
        height: auto;
        min-height: 100vh;
    }

    .content-container {
        overflow: visible;
        padding: 1rem;
    }

    body::before {
        background-image: none;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-top: 2rem;
        line-height: 2;
    }

    .hero__pill {
        margin-top: 1rem;
    }

    /* Workouts mobile */
    .workouts__content {
        padding: 2rem 1.5rem;
    }

    .workouts__images {
        gap: 4rem;
        margin: 4rem auto;
    }

    .workouts__image-container {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 9/16;
    }

    .workouts__divider {
        width: 80%;
    }

    .workouts::before {
        width: 350px;
        height: 350px;
        opacity: 0.7;
    }

    .workouts::after {
        width: 300px;
        height: 300px;
        opacity: 0.6;
    }

    .workouts__intro {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .workouts__cta {
        font-size: 1.35rem;
    }

    /* Meals mobile */
    .meals-home__transition {
        padding: 6rem 1.5rem;
    }

    .meals-home__content {
        padding: 4rem 1.5rem;
    }

    .meals-home__intro {
        padding: 0.5rem 1.5rem;
        font-size: 1.05rem;
    }

    .meals-home__realization-accent {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .meals-home__images {
        gap: 4rem;
        margin: 4rem auto;
    }

    .meals-home__image-container {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 9/16;
    }

    .meals-home__divider {
        width: 80%;
    }

    .meals-home::before {
        width: 350px;
        height: 350px;
        opacity: 0.7;
    }

    .meals-home::after {
        width: 300px;
        height: 300px;
        opacity: 0.6;
    }

    .meals-home__cta {
        font-size: 1.35rem;
    }

    /* Final CTA mobile */
    .final-cta__content {
        padding: 3rem 1.5rem;
    }

    .final-cta__divider {
        width: 80%;
    }

    .final-cta__wheel-wrapper {
        height: 260px;
        width: 320px;
    }

    .final-cta__wheel {
        padding: 98px 0;
    }

    .final-cta__option {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }

    .final-cta__wheel-highlight {
        height: 56px;
        max-width: 280px;
    }

    .workouts__intro-accent,
    .meals-home__intro-accent {
        font-size: 1.4rem;
    }
}

/* ============================================
   Auth Modal Styles (Ported from Root)
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: .25rem;
    animation: fadeInModal 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(0, 0, 0, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal.active, .modal.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

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

.modal-content--auth {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInModal 0.7s ease-out;
    border-radius: 8px;
}

/* Cookie Banner Content */
.modal-content--cookie {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    border-radius: 8px;
    animation: slideInModal 0.7s ease-out;
    text-align: center;
}

@keyframes slideInModal {
    0% { opacity: 0; transform: translateY(40px) scale(0.85); }
    35% { opacity: 1; transform: translateY(-8px) scale(1.03); }
    55% { transform: translateY(4px) scale(0.99); }
    75% { transform: translateY(-2px) scale(1.01); }
    100% { transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 200;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
    opacity: 0.5;
}

.modal-close span {
    display: block;
    line-height: 1;
    transform: translateY(-2px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transform: none;
}

.modal-header {
    text-align: center;
    margin-bottom: 1rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    cursor: default;
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
}

.modal-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    cursor: default;
}

/* Auth Toggle (Sign In / Sign Up) */
.auth-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.auth-toggle__btn {
    flex: 1;
    padding: 0.2rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.auth-toggle__btn:hover {
    color: var(--text);
}

.auth-toggle__btn--active {
    background: var(--primary);
    color: var(--white);
}

.auth-toggle__btn--active:hover {
    background: var(--primary-dark);
}

/* Error Message */
.error-message {
    padding: 0.875rem 1rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: none;
    animation: shake 0.4s ease-in-out;
}

.error-message.show {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Success Message */
.success-message {
    padding: 0.875rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    border-radius: 8px;
    color: #22c55e;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

/* Social Auth Buttons */
.social-auth {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.social-btn {
    width: 100%;
    padding: .5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    transition: all 0.2s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Divider */
.divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 1rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 1rem;
    cursor: default;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-left: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .5rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: .1rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: rgba(15, 23, 42, 0.8);
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: .45rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 2rem;
}

.submit-button:hover {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8)
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 1);
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-spinner-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 60px;
}

.loading-spinner-bars .bar {
    width: 8px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary) 0%, #5ca9ff 100%);
    border-radius: 4px;
    animation: loadingBars 1s ease-in-out infinite;
}

.loading-spinner-bars .bar:nth-child(1) { animation-delay: 0s; }
.loading-spinner-bars .bar:nth-child(2) { animation-delay: 0.1s; }
.loading-spinner-bars .bar:nth-child(3) { animation-delay: 0.2s; }
.loading-spinner-bars .bar:nth-child(4) { animation-delay: 0.3s; }
.loading-spinner-bars .bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes loadingBars {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.loading-screen__text {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .modal {
        padding: 0 !important;
    }

    .modal-content--auth {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 4.5rem 1.5rem 0 1.5rem;
        background: #000 !important;
        backdrop-filter: none !important;
    }
}

/* ========================================
   PREMIUM/LOCKED CONTENT SYSTEM
   "Your body is the only place you truly live"
   ======================================== */

/* Locked Card Overlay */
.locked-card {
    position: relative;
    cursor: pointer;
}

.locked-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
    border-radius: inherit;
    transition: all 0.3s ease;
}

.locked-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.75) 100%);
}

/* Locked Badge */
.locked-card__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem;
    pointer-events: none;
}

.locked-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary, #ff9a3c) 0%, var(--primary-dark, #ff6a00) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    animation: lockPulse 2s ease-in-out infinite;
}

.locked-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
}

.locked-card__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.locked-card__cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary, #ff9a3c);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.2s ease;
}

.locked-card:hover .locked-card__cta {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

/* Premium Badge on Cards */
.premium-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--primary, #ff9a3c) 0%, var(--primary-dark, #ff6a00) 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* ========================================
   INLINE UPGRADE BANNERS
   "Stop guessing. Start transforming."
   ======================================== */

.upgrade-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.08) 0%, rgba(255, 106, 0, 0.12) 100%);
    border: 1px solid rgba(255, 154, 60, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    overflow: hidden;
}

.upgrade-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 154, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.upgrade-banner__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.upgrade-banner__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff9a3c;
    margin-bottom: 0.5rem;
}

.upgrade-banner__heading {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.upgrade-banner__subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.upgrade-banner__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.upgrade-banner__stat {
    text-align: center;
}

.upgrade-banner__stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff9a3c;
    display: block;
}

.upgrade-banner__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.upgrade-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary, #ff9a3c) 0%, var(--primary-dark, #ff6a00) 100%);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 2rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;

    /* Texture & Glass */
    position: relative;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-mask-image: radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
    mask-image: radial-gradient(140% 140% at 50% 50%, #000 55%, transparent 85%);
}

.upgrade-banner__btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(circle at 18% 32%, rgba(0, 0, 0, 0.45) 0 15%, transparent 42%),
        radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.4) 0 12%, transparent 36%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0px, rgba(255, 255, 255, 0.18) 3px, transparent 3px, transparent 9px),
        repeating-linear-gradient(-70deg, rgba(0, 0, 0, 0.25) 0px, rgba(0, 0, 0, 0.25) 2px, transparent 2px, transparent 8px);
    mix-blend-mode: overlay;
    opacity: 0.45;
    pointer-events: none;
    filter: contrast(120%) saturate(110%);
    z-index: -2;
}

.upgrade-banner__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1;
}

.upgrade-banner__btn:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.upgrade-banner__btn:hover::before {
    opacity: 0.6;
}

.upgrade-banner__btn:hover::after {
    opacity: 1;
}

.upgrade-banner__btn svg {
    width: 18px;
    height: 18px;
}

/* Workouts variant (blue) */
.upgrade-banner--workouts {
    background: linear-gradient(135deg, rgba(92, 169, 255, 0.08) 0%, rgba(37, 99, 255, 0.12) 100%);
    border-color: rgba(92, 169, 255, 0.2);
}

.upgrade-banner--workouts::before {
    background: radial-gradient(circle at 30% 50%, rgba(92, 169, 255, 0.1) 0%, transparent 50%);
}

.upgrade-banner--workouts .upgrade-banner__eyebrow {
    color: #5ca9ff;
}

.upgrade-banner--workouts .upgrade-banner__stat-value {
    color: #5ca9ff;
}

.upgrade-banner--workouts .upgrade-banner__btn {
    background: linear-gradient(135deg, #5ca9ff 0%, #2563ff 100%);
    box-shadow: 0 8px 24px rgba(37, 99, 255, 0.3);
}

.upgrade-banner--workouts .upgrade-banner__btn:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 255, 0.45);
}

/* ========================================
   SOCIAL PROOF / URGENCY ELEMENTS
   ======================================== */

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

.social-proof__avatars {
    display: flex;
}

.social-proof__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
    background: linear-gradient(135deg, #666 0%, #333 100%);
}

.social-proof__avatar:first-child {
    margin-left: 0;
}

.social-proof__text {
    color: rgba(255, 255, 255, 0.7);
}

.social-proof__text strong {
    color: #ff9a3c;
    font-weight: 600;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-badge svg {
    width: 14px;
    height: 14px;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========================================
   PROFILE UPGRADE NUDGES
   ======================================== */

.profile-upgrade-card {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.08) 0%, rgba(255, 106, 0, 0.15) 100%);
    border: 1px solid rgba(255, 154, 60, 0.25);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.profile-upgrade-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.profile-upgrade-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
}

.profile-upgrade-card__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.profile-upgrade-card__quote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
}

.profile-upgrade-card__quote span {
    color: #ff9a3c;
    font-weight: 600;
    font-style: normal;
}

.profile-upgrade-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6a00 100%);
    color: #000;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.profile-upgrade-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 106, 0, 0.45);
}

/* ========================================
   CART PAGE ENHANCEMENTS
   ======================================== */

.cart-testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.cart-testimonial__quote {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cart-testimonial__author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cart-testimonial__author strong {
    color: #ff9a3c;
}

.cart-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.cart-guarantee__icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-guarantee__icon svg {
    width: 20px;
    height: 20px;
    stroke: #4ade80;
}

.cart-guarantee__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cart-guarantee__text strong {
    color: #4ade80;
}

/* ========================================
   HOME PAGE PREMIUM TEASERS
   ======================================== */

.home-teaser {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-teaser:hover {
    transform: scale(1.04);
    border-color: rgba(255, 154, 60, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.home-teaser__image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.home-teaser__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transition: filter 0.3s ease;
}

.home-teaser:hover .home-teaser__image img {
    filter: blur(1px);
}

.home-teaser__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
}

.home-teaser__lock {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
}

.home-teaser__lock svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.home-teaser__content {
    padding: 1.25rem;
    text-align: center;
}

.home-teaser__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    cursor: default;
}

.home-teaser__meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.home-teaser__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff9a3c;
    margin-top: 0.5rem;
}

/* ========================================
   MOTIVATIONAL QUOTES STYLING
   ======================================== */

.motivation-quote {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
}

.motivation-quote__text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.motivation-quote__text strong {
    color: #ff9a3c;
    font-style: normal;
    font-weight: 700;
}

.motivation-quote__attribution {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
}

/* ========================================
   SHOW MORE BUTTON
   ======================================== */

.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.show-more-btn svg {
    transition: transform 0.3s ease;
}

.show-more-btn:hover svg {
    transform: translateY(3px);
}

@keyframes swap-images {
    0% {
        transform: translateX(40%) scale(0.85);
        z-index: 1;
        filter: brightness(0.5);
        box-shadow: none;
    }
    25% {
        transform: translateX(20%) scale(0.9);
        z-index: 1;
    }
    50% {
        transform: translateX(-10%) scale(1);
        z-index: 10;
        filter: brightness(1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
    75% {
        transform: translateX(20%) scale(0.9);
        z-index: 10;
    }
    100% {
        transform: translateX(40%) scale(0.85);
        z-index: 1;
        filter: brightness(0.5);
        box-shadow: none;
    }
}



.modal-content--cookie a {
    color: var(--primary);
    text-decoration: none;
}

.modal-content--cookie a:hover {
    text-decoration: underline;
}
