:root {
    /* Colors - Light Feminine / Pilates Funnel */
    --bg-dark: #FDF9FB;
    /* Very soft pink/white background */
    --bg-card: #FFFFFF;
    /* Clean white cards */
    --primary: #FF1493;
    /* Deep Pink */
    --primary-hover: #D10074;
    --secondary: #00C853;
    /* Success Green */
    --text-main: #333333;
    /* Dark gray text */
    --text-muted: #7A8192;
    /* Lighter text for instructions */
    --border-color: #E2E8F0;
    /* Soft border */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.app-container {
    width: 100%;
    max-width: 480px;
    /* Mobile App feel */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px;
    background: var(--bg-dark);
    /* Removed intense radial gradient */
}

.hidden {
    display: none !important;
}

/* Header & Progress */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: var(--bg-card);
    z-index: 1000;
    padding: 6px 20px 8px 20px;
    /* Slimmer header padding */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    opacity: 0;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
}

.btn-back {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.btn-back:hover {
    background: rgba(0, 0, 0, 0.05);
}

header.visible {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    /* Larger for mobile */
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
    /* Bolder for visibility */
    position: relative;
    z-index: 10;
}

.progress-bar-container {
    height: 12px;
    /* Thicker and more visible on mobile */
    background-color: var(--border-color);
    /* More visible track */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF69B4, var(--primary));
    background-size: 200% 200%;
    width: 0%;
    border-radius: 8px;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 12px rgba(255, 20, 147, 0.4);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 0;
    }
}

/* Typography */
h1.step-headline {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-main);
    /* Removed gradient text */
}

.text-highlight {
    color: var(--primary);
}

/* Global Logo */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 0 0 0;
    /* Reduced from 10px to fit better */
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-cropper {
    height: 69px;
    margin: -12px 0 -28px 0;
    overflow: hidden;
    mix-blend-mode: multiply;
}

.site-logo {
    height: 110px;
    margin-top: -12px;
    object-fit: contain;
    filter: brightness(1.08) contrast(1.3);
    display: block;
}

p.step-instruction {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Main Content Animations */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 140px;
    /* Spaced out so it is not glued to the header */
}

.step-container {
    animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.step-container.exit {
    animation: fadeOutLeft 0.4s forwards;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Common Components */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 100px;
    /* Pill shape */
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.35);
    /* Elegant colored shadow */
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.45);
    transform: translateY(-2px);
}

/* Trust Box */
.trust-box {
    background-color: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--secondary);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
    animation: slideUp 0.4s ease forwards;
}

.trust-box.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Option List */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 18px 20px;
    border-radius: 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-btn .number-badge {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.option-btn:hover {
    border-color: rgba(255, 20, 147, 0.3);
    background: #FFF4F8;
    /* Subtle pink tint */
}

.option-btn:active {
    transform: scale(0.98);
}

.option-btn.selected {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.25);
    transform: translateX(4px);
    /* Slight nudge */
}

.option-btn.selected .number-badge {
    background: white;
    color: var(--primary);
}

/* Time Select Grid */
.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* Make odd last child span full width for 3-item lists */
.time-grid .time-btn:last-child:nth-child(odd) {
    grid-column: span 2;
}

.time-btn {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 3px solid var(--border-color);
    padding: 35px 15px;
    border-radius: 24px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.time-icon {
    margin-bottom: 15px;
    background: #FFF4F8;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
    transition: all 0.3s;
}

.time-btn .time-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -1px;
}

.time-btn .time-subtext {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.time-btn:hover {
    border-color: rgba(255, 20, 147, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.2);
}

.time-btn:active {
    transform: scale(0.96);
}

.time-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.time-btn.selected .time-icon {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.time-btn.selected .time-icon svg {
    stroke: var(--primary);
}

.time-btn.selected .time-number,
.time-btn.selected .time-subtext {
    color: white;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.grid-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    /* Visible border on light mode */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.grid-item:active {
    transform: scale(0.96);
}

.grid-item:hover,
.grid-item.selected {
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
}

.grid-img {
    height: 140px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.grid-item.multi-select .grid-img {
    height: 110px;
}

.checkbox-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.grid-item.selected .checkbox-indicator {
    background: var(--primary);
    border-color: var(--primary);
}

/* Gradients for dynamic sporty feel when images are absent */
.placeholder-gradient-1 {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
}

/* Light pinks */
.placeholder-gradient-2 {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
}

/* Deep pinks */
.placeholder-gradient-3 {
    background: linear-gradient(135deg, #FFC0CB, #FFB6C1);
}

/* Softest pinks */
.placeholder-gradient-4 {
    background: linear-gradient(135deg, #FF1493, #D10074);
}

/* Bold pinks */

.grid-label {
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    background: var(--bg-card);
}

/* Custom Slider */
.slider-container {
    background: var(--bg-card);
    padding: 40px 20px;
    border-radius: 24px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.slider-value-display {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.slider-value-display .val-unit {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(90deg,
            #cbd5e1,
            #cbd5e1 2px,
            transparent 2px,
            transparent 10px);
    border-radius: 6px;
    outline: none;
    margin-bottom: 35px;
    position: relative;
}

.custom-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: -1;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    cursor: grab;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.unit-toggle {
    display: inline-flex;
    background: #F3F4F6;
    /* Light grey toggle bg */
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--border-color);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 46, 147, 0.3);
}

/* Custom Input */
.input-container {
    margin-top: 20px;
}

.custom-input {
    width: 100%;
    background: var(--bg-dark);
    /* Subtle contrast to card */
    border: 2px solid var(--border-color);
    padding: 24px 20px;
    border-radius: 16px;
    color: var(--text-main);
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 500;
    outline: none;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}

.custom-input:focus {
    border-color: var(--primary);
    background: #FFF4F8;
    box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
}

.cta-btn {
    margin-top: 30px !important;
}

/* Loading Screen */
.loading-container {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {
    0% {
        opacity: 0.8;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

/* Testimonial Marquee */
.testimonial-marquee-container {
    height: 180px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: marqueeUp 10s linear infinite;
}

@keyframes marqueeUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.testimonial-bubble {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    background: #f0f0f0;
}

.t-content {
    flex: 1;
}

.t-content .stars {
    margin-bottom: 5px;
    display: flex;
    gap: 2px;
}

.t-text {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-style: italic;
    line-height: 1.3;
}

.t-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Video Screen */
.video-container {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe,
.video-placeholder {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-placeholder {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&q=80&w=400') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 46, 147, 0.6);
    animation: pulsePlay 2s infinite;
    cursor: pointer;
}

@keyframes pulsePlay {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 46, 147, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(255, 46, 147, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 46, 147, 0);
    }
}

.video-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* RESULTS & SALES PAGE (Steps 31 & 32) */

.results-container,
.sales-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 80px;
    /* space for sticky button */
}

.bmi-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 244, 248, 1) 100%);
    border: 3px solid rgba(255, 20, 147, 0.1);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.bmi-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.05) 0%, transparent 60%);
    animation: pulsePlay 4s infinite alternate;
}

.bmi-card h3 {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.bmi-value {
    font-size: 4rem;
    font-weight: 900;
    color: #FF5E5E;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(255, 94, 94, 0.2);
}

.bmi-alert {
    color: #FF5E5E;
    font-size: 1rem;
    font-weight: 700;
    background: rgba(255, 94, 94, 0.1);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.training-summary {
    display: flex;
    gap: 15px;
}

.t-box {
    flex: 1;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.t-box i {
    color: var(--primary);
}

.chart-box {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.chart-box h4 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-item {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.stat-item span {
    color: var(--text-muted);
}

.stat-item .old {
    color: #FF5E5E;
    text-decoration: line-through;
}

.stat-item .new {
    color: var(--secondary);
    font-size: 1.1rem;
}

.sales-section {
    background: var(--bg-card);
    padding: 24px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.highlight-bg {
    background: linear-gradient(135deg, var(--primary), #FF8A00);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 46, 147, 0.4);
}

.sales-h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.text-white {
    color: white !important;
}

.sales-p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.carousel-horizontal {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.carousel-horizontal::-webkit-scrollbar {
    display: none;
}

.c-item {
    min-width: 140px;
    height: 180px;
    border-radius: 16px;
    scroll-snap-align: start;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 -40px 40px -10px rgba(0, 0, 0, 0.8);
}

.bonus-list {
    list-style: none;
    margin-top: 15px;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.bonus-list li i {
    width: 20px;
    height: 20px;
}

.app-demo-vid {
    border-radius: 12px;
    flex-direction: column;
}

.pulse-infinite {
    animation: pulsePlay 2s infinite;
}

.sticky-bottom {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 46, 147, 0.6);
    z-index: 100;
}

.sticky-bottom:active {
    transform: scale(0.97) !important;
}