/* Modern Digital Product Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FF9900 100%);
    --secondary-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --bg-main: #FAFAFA;
    --bg-card: #FFFFFF;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border-subtle: #E5E7EB;

    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 10px 30px rgba(255, 107, 0, 0.2);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 100px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
    /* Changed from 100vw to avoid scrollbar width issues */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 1.125rem;
    margin: 0;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.1;
}

.text-hook {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 0.2rem;
    /* Reduced to almost zero */
    display: inline-block;
}

.headline-main {
    font-size: clamp(3rem, 6vw, 4.5rem);
    /* Balanced, impactful size */
    font-weight: 900;
    /* Extra bold */
    text-transform: uppercase;
    /* Modern streetwear vibe */
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    /* Restored breathing room */
    line-height: 1.1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* Subtle depth */
}

.text-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-py {
    padding: 3rem 0;
    /* Reduced from 6rem */
}

.section-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    /* Reduced to almost zero */
}

/* Components */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    background: var(--primary-gradient);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
    border-color: rgba(255, 107, 0, 0.2);
}

/* Infinite Carousel (Marquee) */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-infinite 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls half the track (requires duplicated items) */
}

.carousel-item {
    flex: 0 0 80vw;
    /* Responsive width for mobile (was 300px fixed) */
    max-width: 320px;
    /* Cap size so it doesn't get huge on tablets */
    height: 400px;
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 450px;
        height: 550px;
    }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* Image Grid */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    /* Reduced to 260px (very safe for mobile) */
    gap: 1.5rem;
    /* Reduced gap slightly for better mobile fit */
}

.photo-panel {
    border-radius: var(--radius-md);
    /* Kept rounded corners for aesthetics */
    position: relative;
    /* Removed background, border, shadow, aspect-ratio to "free" the image */
}

.photo-panel img {
    width: 100%;
    height: auto;
    /* Allow natural height - no cropping */
    display: block;
    /* Removes bottom spacing whitespace */
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    box-shadow: var(--shadow-soft);
    /* Applied shadow directly to image for pop */
    border-radius: var(--radius-md);
}

/* Pricing Section */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Reduced from 300px for mobile safety */
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-subtle);
}


/* Video Social Proof Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    /* Shorts aspect ratio */
    border-radius: var(--radius-lg);
    background: #000;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

/* Video Facade Styles */
.video-facade {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #000;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-facade:hover .video-thumb {
    opacity: 1;
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.custom-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
    /* Visual centering adjustment for play icon */
}

.video-facade:hover .custom-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.8);
}

/* iPhone Mockup Section */
.iphone-frame {
    width: 320px;
    height: 650px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    /* Bezel */
    position: relative;
    box-shadow: var(--shadow-float);
    margin: 4rem auto;
    border: 4px solid #333;
    /* Outer rim */
}

.iphone-notch {
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    padding-top: 35px;
    /* Clear notch */
    padding-bottom: 20px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.iphone-screen::-webkit-scrollbar {
    display: none;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
}

.mockup-img-container {
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.mockup-img-container:hover {
    transform: scale(0.98);
}

.mockup-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--radius-md);
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #555;
    background: #222;
}

.faq-item.active {
    border-color: var(--color-primary);
    background: #222;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    color: #fff;
    /* Ensure visibility */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #ccc;
    /* Lighter gray for better readability */
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Guarantee Section Enhanced - Light Version */
.guarantee-box {
    border: none;
    border-radius: var(--radius-lg);
    padding: 3rem;
    background: #ffffff;
    /* Light background requested */
    position: relative;
    overflow: hidden;
    color: #111;
    /* Dark text for contrast */
    box-shadow: var(--shadow-float);
}

.guarantee-box h2 {
    color: #111;
    /* Dark headline */
    font-weight: 800;
}

.guarantee-box .text-muted {
    color: #555 !important;
    /* Darker muted text for readability */
}

.guarantee-seal {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF0E5;
    /* Light orange tint */
    border: 2px solid var(--color-primary);
}

.guarantee-seal i {
    font-size: 3rem;
    color: var(--color-primary);
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin: 1rem 0;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

.max-w-md {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Decorations */
.bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -20%;
    right: -10%;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .headline-main {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .section-py {
        padding: 4rem 0;
    }
}

/* Laptop Mockup */
.laptop-mockup {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.laptop-screen {
    background: #111;
    border-radius: 20px 20px 0 0;
    border: 2px solid #333;
    border-bottom: none;
    padding: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.laptop-display-wrapper {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: black;
    aspect-ratio: 16/9;
}

.laptop-display-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.laptop-base {
    height: 25px;
    background: #2a2a2a;
    /* Dark silver */
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 1;
    width: 110%;
    /* Slightly wider base */
    left: -5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 8px;
    background: #1a1a1a;
    border-radius: 0 0 5px 5px;
}

.spin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spin-modal.active {
    display: flex;
    opacity: 1;
}

.spin-container {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    text-align: center;
    position: relative;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.3);
}

.spin-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

/* --- New Roulette Styles --- */
.roulette-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.roulette-modal.active {
    opacity: 1;
    pointer-events: all;
}

.roulette-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.3);
    border: 2px solid #333;
}

.close-roulette {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    border: 10px solid #333;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    /* Ease out custom */
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    transform: rotate(calc(45deg * var(--i)));
    clip-path: polygon(0 0, 56% 0, 100% 100%, 0 56%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-segment span {
    position: absolute;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    left: 30%;
    top: 40%;
    white-space: nowrap;
}

.wheel-arrow {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: white;
    z-index: 10;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

.btn-spin-trigger {
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem;
}

/* Bonus Applied Badge for Pricing Logic */
.bonus-active-badge {
    display: none;
    /* Hidden by default */
    background: #4CAF50;
    /* Success green */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky CTA Bar (Mobile Optimization) */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    /* Dark background for contrast */
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta-bar.active {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.sticky-text {
    font-size: 0.8rem;
    color: var(--color-primary);
    /* Uses existing var if defined, or fallback */
    color: #FF6B00;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-cta.btn-sm {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Laptop/Desktop: Hide Sticky Bar */
@media (min-width: 1024px) {
    .sticky-cta-bar {
        display: none !important;
    }
}

/* --- High Conversion Script Styles --- */

/* 1. Countdown Bar */
.countdown-bar {
    background: #FFF3CD;
    border: 1px solid #FFEEBA;
    color: #856404;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border-left: 5px solid #FF6B00;
}

.text-xs {
    font-size: 0.75rem;
}

/* 2. Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.bonus-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B00;
}

.bonus-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #FF6B00;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-card h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.bonus-price {
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 8px;
}

.new-price {
    color: #10B981;
    /* Green for FREE */
    font-size: 1.2rem;
    font-weight: 800;
}

/* 3. Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9990;
    /* Behind modal but above content */
    transform: translateX(-150%);
    /* Hidden by default */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    max-width: 320px;
}

.sales-popup.active {
    transform: translateX(0);
}

.sales-popup-icon {
    font-size: 1.5rem;
    background: #E8F5E9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sales-popup-content {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.3;
}

.sales-popup-name {
    color: #333;
}

.sales-popup-action {
    color: #666;
    font-size: 0.8rem;
}

/* Mobile Adjustments for Popup */
@media (max-width: 768px) {
    .sales-popup {
        bottom: 80px;
        /* Above sticky CTA */
        left: 10px;
        right: auto;
        max-width: 90%;
    }
}