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

/* Prevent horizontal overflow on all devices */
html {
    overflow-x: hidden;
    max-width: 100%;
    /* Prevent iOS Safari from inflating text sizes */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-blue: #6ABDF0;
    --primary-white: #ffffff;
    --text-gray: #b0b0b0;
    --ocean-blue: #6ABDF0;
    --wave-blue: #6ABDF0;
    --success-green: #00ff88;
    
    --font-primary: 'Boring Sans', 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-headings: 'Horizon', 'Helvetica Neue', 'Arial Black', sans-serif;
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(106, 189, 240, 0.3);
    --shadow-glow-strong: 0 0 50px rgba(106, 189, 240, 0.5);
    --shadow-glow-soft: 0 0 20px rgba(106, 189, 240, 0.2);
    --text-glow: 0 0 10px rgba(106, 189, 240, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading Fonts */
h1, h2,
.hero-title,
.section-title {
    font-family: var(--font-headings);
}

h3, h4, h5, h6,
.product-title,
.feature-card h3,
.modal-header h3,
.reviewer-info h4,
.product-specs h4 {
    font-family: var(--font-primary);
}

/* Typography */
body {
    font-size: 1rem; /* Reverted to default size */
}

/* Default font sizes */
.btn {
    font-size: 1rem; /* Reverted to default size */
}

.nav-link {
    font-size: 1.1rem; /* Consistent with nav styling */
}

.hero-subtitle {
    font-size: 1.1rem; /* Reduced size */
}

.review-text {
    font-size: 1.1rem; /* Default size */
}

.product-description {
    font-size: 1rem; /* Default size */
}

.feature-card p {
    font-size: 1rem; /* Default size */
}

/* Default text elements */
.footer-links a,
.copyright p,
input, textarea, select {
    font-size: 0.9rem; /* Standard small text size */
}

.modal-body p,
.modal-body li {
    font-size: 1rem; /* Standard body text size */
}

/* General paragraph text increase */
p {
    font-size: 1rem; /* Global paragraph increase */
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.wave-loader {
    display: flex;
    gap: 8px;
}

.wave {
    width: 8px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-blue), var(--wave-blue));
    border-radius: 4px;
    animation: wave-loading 1.4s ease-in-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave-loading {
    0%, 40%, 100% {
        opacity: 0.3;
        transform: scaleY(0.4);
    }
    20% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.logo-hero {
    height: 200px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 8px rgba(106, 189, 240, 0.4));
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #000000, #333333, #000000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cool-text 3s ease-in-out infinite;
}

@keyframes cool-text {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-white);
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header.scrolled .nav-link {
    color: var(--primary-black);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-blue), var(--wave-blue));
    transition: width 0.3s ease;
}

.header.scrolled .nav-link::after {
    background: linear-gradient(45deg, var(--primary-black), var(--accent-blue));
}

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

.nav-link:hover {
    color: var(--accent-blue);
    text-shadow: 2px 2px 4px rgba(106, 189, 240, 0.3);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    z-index: 1003;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition-smooth);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 98%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Show desktop hero video by default, hide mobile */
.hero-video-desktop { display: block; }
.hero-video-mobile { display: none; }

/* On small screens, swap visibility */
@media (max-width: 768px) {
    .hero-video-desktop { display: none; }
    .hero-video-mobile { display: block; }
    .hero-video.hero-video-mobile {
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: 100%;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(106, 189, 240, 0.1) 100%
    );
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(106, 189, 240, 0.15) 0%, transparent 60%);
    z-index: 3;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    min-height: 100vh;
    padding-top: 30vh;
}

.hero-text {
    animation: slideInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease-out;
}

.hero-text.fade-out {
    opacity: 0;
}

.hero-spacing {
    height: 8rem;
    display: block;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: opacity 0.5s ease-out;
}

.hero-subtitle.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: var(--text-glow);
}

.text-wave {
    display: block;
    background: linear-gradient(45deg, 
        #ffffff 0%, 
        #6ABDF0 25%, 
        #ffffff 50%, 
        #6ABDF0 75%, 
        #ffffff 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-gradient 4s ease-in-out infinite;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
    position: relative;
}

.text-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(106, 189, 240, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logo-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 200% 50%;
    }
    75% {
        background-position: 100% 100%;
    }
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-buttons .btn:hover {
    transform: scale(1.05);
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    min-width: fit-content;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--wave-blue));
    color: var(--primary-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(106, 189, 240, 0.4);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.8);
    color: var(--primary-white);
    border: 2px solid var(--accent-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
}

.btn-outline:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.floating-product {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(106, 189, 240, 0.4));
}

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

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

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

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

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.wave-animation svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: var(--accent-blue);
    opacity: 0.2;
    animation: wave-move 10s ease-in-out infinite;
}

@keyframes wave-move {
    0%, 100% {
        d: path("M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z");
    }
    50% {
        d: path("M321.39,76.44c58-10.79,114.16-50.13,172-61.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,51,906.67,92,985.66,112.83c70.05,18.48,146.53,26.09,214.34,23V0H0V47.35A600.21,600.21,0,0,0,321.39,76.44Z");
    }
}

/* Reviews Carousel Section */
.reviews-section {
    padding: 4rem 0 1rem 0;
    background: var(--secondary-black);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(106, 189, 240, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    padding: 0 2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(106, 189, 240, 0.1);
    border: 1px solid rgba(106, 189, 240, 0.3);
    color: var(--accent-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(106, 189, 240, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(106, 189, 240, 0.4);
}

.carousel-btn-left {
    left: 1rem;
}

.carousel-btn-right {
    right: 1rem;
}

.review-track {
    display: flex;
    width: auto;
    animation: scroll-reviews 40s linear infinite;
}

.review-track:hover {
    animation-play-state: paused;
}

/* Manual mode class to disable CSS hover when JavaScript takes over */
.review-track.manual-mode {
    animation: none;
}

.review-track.manual-mode:hover {
    animation-play-state: running; /* This won't do anything since animation is none */
}

/* Continuous auto-scroll animation */
@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Faster animation for mobile devices */
@media (max-width: 768px) {
    .review-track {
        animation: scroll-reviews-mobile 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .review-track {
        animation: scroll-reviews-mobile 20s linear infinite;
    }
}

@keyframes scroll-reviews-mobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    margin: 0 1.5rem;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(145deg, var(--primary-black), var(--secondary-black));
    border-radius: var(--border-radius);
    border: 1px solid rgba(106, 189, 240, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transform: scale(0.98);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

/* Ensure review cards don't cause horizontal overflow on smaller screens */
@media (max-width: 480px) {
    .review-card {
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--wave-blue));
    opacity: 0.8;
}

.review-card:hover {
    opacity: 1;
    transform: scale(1);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
    justify-content: center;
}

.star {
    color: var(--accent-blue);
    text-shadow: 0 0 5px rgba(106, 189, 240, 0.3);
}

.star.empty {
    color: #333;
    text-shadow: none;
}

.star.half {
    background: linear-gradient(90deg, var(--accent-blue) 50%, #333 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

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

.reviewer-info h4 {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.reviewer-info span {
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mobile swipe hint */
.mobile-swipe-hint {
    display: none;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 1.1rem;
    color: var(--text-gray);
    animation: fade-hint 3s ease-in-out infinite;
}

@keyframes fade-hint {
    0%, 50%, 100% { opacity: 0.7; }
    25%, 75% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .mobile-swipe-hint {
        display: block;
    }
    
    .carousel-btn {
        opacity: 0.8;
    }
}

/* Product Section */
.product-section {
    padding: 5rem 0 2rem 0;
    background: var(--secondary-black);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-white), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(var(--text-glow));
    background-clip: text;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-images {
    position: relative;
}

.main-image {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(106, 189, 240, 0.2) 0%, rgba(106, 189, 240, 0.1) 40%, transparent 70%);
    border-radius: calc(var(--border-radius) + 20px);
    z-index: -1;
    transition: var(--transition-smooth);
}

.main-image:hover::before {
    background: radial-gradient(circle at center, rgba(106, 189, 240, 0.3) 0%, rgba(106, 189, 240, 0.15) 40%, transparent 70%);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow-soft);
    transition: var(--transition-smooth);
}

.main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(106, 189, 240, 0.3);
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    aspect-ratio: 1;
    box-shadow: 0 10px 20px rgba(106, 189, 240, 0.15);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(106, 189, 240, 0.3);
}

.product-images .product-details {
    margin-top: 1rem;
}

.product-images .product-details .detail-item {
    margin-bottom: 1rem;
}

.product-images .product-details .detail-toggle {
    background: transparent;
    border: 1px solid rgba(106, 189, 240, 0.3);
    color: var(--primary-white);
    padding: 1rem;
    width: 100%;
    text-align: left;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-images .product-details .detail-toggle:hover {
    background: rgba(106, 189, 240, 0.1);
    border-color: rgba(106, 189, 240, 0.5);
    box-shadow: var(--shadow-glow-soft);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.product-logo {
    height: 2rem;
    width: auto;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-specs {
    margin-bottom: 2rem;
}

.product-specs h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.specs-list {
    list-style: none;
}

.specs-list li {
    margin-bottom: 1rem;
}

.feature-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(106, 189, 240, 0.3);
    color: var(--primary-white);
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Ensure numerals render as lining/tabular (prevents dropped 4 on iOS) */
.feature-button,
.feature-card p,
.specs-list .feature-button span {
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
    -webkit-font-smoothing: antialiased;
}

/* Helper for replacing decimal with one-dot leader (iOS rendering quirk) */
.decimal-fallback {
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
    letter-spacing: 0;
}

.feature-button:hover {
    background: rgba(106, 189, 240, 0.1);
    border-color: rgba(106, 189, 240, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-soft);
}

.feature-button .spec-icon {
    margin-right: 12px;
}

.spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(106, 189, 240, 0.1), rgba(106, 189, 240, 0.1));
    border-radius: 8px;
    margin-right: 12px;
    border: 1px solid rgba(106, 189, 240, 0.2);
    transition: var(--transition-smooth);
}

.spec-icon:hover {
    background: linear-gradient(135deg, rgba(106, 189, 240, 0.2), rgba(106, 189, 240, 0.2));
    border-color: rgba(106, 189, 240, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 189, 240, 0.3);
}

.product-details {
    margin: 2rem 0;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-toggle {
    background: transparent;
    border: 1px solid rgba(106, 189, 240, 0.3);
    color: var(--primary-white);
    padding: 1rem;
    width: 100%;
    text-align: left;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-toggle:hover {
    background: rgba(106, 189, 240, 0.1);
    border-color: rgba(106, 189, 240, 0.5);
}

.toggle-icon {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-blue);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--secondary-black);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(106, 189, 240, 0.3);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(106, 189, 240, 0.2);
}

.modal-header h3 {
    color: var(--accent-blue);
    margin: 0;
    font-size: 1.1rem;
}

.close-modal {
    color: var(--text-gray);
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--accent-blue);
}

.modal-body {
    padding: 1.5rem;
}

.included-list,
.why-buy-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.why-buy-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(106, 189, 240, 0.1);
    color: var(--primary-white);
}

.included-list li:last-child,
.why-buy-list li:last-child {
    border-bottom: none;
}

.included-list li:before {
    content: "✓";
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 0.8rem;
}

.why-buy-list li strong {
    color: var(--accent-blue);
}

.more-info-section {
    text-align: center;
    margin-top: 3rem;
}

.more-info-btn {
    background: linear-gradient(135deg, rgba(106, 189, 240, 0.1), rgba(106, 189, 240, 0.1));
    border: 1px solid rgba(106, 189, 240, 0.3);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.more-info-btn:hover {
    background: linear-gradient(135deg, rgba(106, 189, 240, 0.2), rgba(106, 189, 240, 0.2));
    border-color: rgba(106, 189, 240, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 189, 240, 0.3);
}

.tech-specs-list {
    list-style: none;
    padding: 0;
}

.tech-specs-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(106, 189, 240, 0.1);
    color: var(--primary-white);
}

.tech-specs-list li:last-child {
    border-bottom: none;
}

.tech-specs-list li:before {
    content: "⚡";
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 0.8rem;
}

.tech-specs-list li strong {
    color: var(--accent-blue);
}

/* Dual Video Section */
.dual-video-section {
    padding: 0;
    background: var(--secondary-black);
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.dual-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary-black);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(106, 189, 240, 0.4);
}

.dual-video-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--primary-black);
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(106, 189, 240, 0.4);
}

.dual-video-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.main-video-wrapper {
    flex: 2;
    position: relative;
    height: 100%;
}

.main-video {
    width: 100%;
    height: 98%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.available-video-wrapper {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.available-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay-controls {
    position: absolute;
    bottom: 120px;
    left: 30px;
    z-index: 10;
}

.available-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    z-index: 5;
}

.available-text-animation {
    position: relative;
    text-align: center;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.available-text, .now-text {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(106, 189, 240, 0.8);
    letter-spacing: 0.1em;
    margin: 0;
    display: block;
    position: relative;
    overflow: visible;
}

.available-text {
    animation: text-break-cycle 204s infinite;
    transform-origin: center center;
    margin-bottom: -0.2em;
}

.now-text {
    color: var(--accent-blue);
    font-size: clamp(2rem, 5vw, 3.5rem);
    animation: text-break-cycle 204s infinite 0.2s;
    position: relative;
    transform-origin: center center;
}

.now-text-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(106, 189, 240, 0.3), 
        transparent, 
        rgba(106, 189, 240, 0.3), 
        transparent
    );
    border-radius: 10px;
    animation: border-glow 3s linear infinite;
    z-index: -1;
    opacity: 0.5;
}

.available-text::after, .now-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: inherit;
    text-shadow: inherit;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    animation: right-half-break 204s infinite;
    pointer-events: none;
}

.available-text::before, .now-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: inherit;
    text-shadow: inherit;
    clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
    animation: left-half-break 204s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 20px rgba(106, 189, 240, 0.8);
    }
    100% {
        text-shadow: 0 0 30px rgba(106, 189, 240, 1), 0 0 40px rgba(106, 189, 240, 0.6);
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes text-break-cycle {
    0%, 0.9% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
    0.91%, 1.5% {
        opacity: 0;
        transform: scale(0.8) rotateY(180deg);
    }
    1.6% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes left-half-break {
    0%, 0.9% {
        transform: translateX(0) rotateZ(0deg);
        opacity: 1;
    }
    0.91%, 1.5% {
        transform: translateX(-100px) rotateZ(-45deg);
        opacity: 0;
    }
    1.6% {
        transform: translateX(0) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotateZ(0deg);
        opacity: 1;
    }
}

@keyframes right-half-break {
    0%, 0.9% {
        transform: translateX(0) rotateZ(0deg);
        opacity: 1;
    }
    0.91%, 1.5% {
        transform: translateX(100px) rotateZ(45deg);
        opacity: 0;
    }
    1.6% {
        transform: translateX(0) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotateZ(0deg);
        opacity: 1;
    }
}

@keyframes border-glow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 0;
    background: var(--secondary-black);
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--primary-black);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(106, 189, 240, 0.4);
}

.video-showcase-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary-black);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(106, 189, 240, 0.4);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-text-overlay {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    white-space: nowrap;
}

.video-overlay-text {
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.limits-text {
    color: var(--primary-black);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.showcase-video {
    width: 100%;
    height: 98%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-controls {
    position: absolute;
    bottom: 120px;
    right: 30px;
    z-index: 10;
}

.video-unmute-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(106, 189, 240, 0.5);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.video-unmute-btn:hover {
    background: rgba(106, 189, 240, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 189, 240, 0.3);
}

.product-price {
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-original {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.btn-buy-now {
    margin-left: auto;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.stripe-checkout-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stripe-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(106, 189, 240, 0.5);
    text-decoration: none;
    color: var(--primary-white);
}

.price-note {
    display: block;
    color: var(--success-green);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Underline button styles for product details */
.product-details-underline {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item-underline {
    margin: 0;
}

.detail-underline-toggle {
    background: transparent;
    border: none;
    color: var(--primary-white);
    padding: 0.5rem 0;
    width: auto;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.detail-underline-toggle span {
    border-bottom: 1px solid rgba(106, 189, 240, 0.3);
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.detail-underline-toggle:hover span {
    border-bottom-color: var(--accent-blue);
    color: var(--accent-blue);
}

.detail-underline-toggle:hover {
    color: var(--accent-blue);
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

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

.feature-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(106, 189, 240, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 189, 240, 0.2);
    border-color: var(--accent-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 2rem 0 5rem 0;
    background: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(106, 189, 240, 0.2);
    transition: var(--transition-smooth);
    margin-left: 25%;
}

@media (max-width: 768px) {
    .story-image {
        margin-left: 0;
    }
}

.story-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(106, 189, 240, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, var(--accent-blue), var(--wave-blue));
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
    opacity: 0.8;
}

.cta-section .btn-primary {
    background: var(--primary-black);
    color: var(--primary-white);
    box-shadow: var(--shadow-glow-strong);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(106, 189, 240, 0.1);
}

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

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-white), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-gray);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.link-group a:hover {
    color: var(--accent-blue);
}

/* Mailing List Section */
.mailing-list-section {
    background: var(--primary-black);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(106, 189, 240, 0.1);
}

.mailing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mailing-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-white), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mailing-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.email-signup {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(106, 189, 240, 0.3);
    border-radius: var(--border-radius);
    background: var(--secondary-black);
    color: var(--primary-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(106, 189, 240, 0.1);
}

.email-input::placeholder {
    color: var(--text-gray);
}

.signup-btn {
    padding: 1.2rem 2rem;
    white-space: nowrap;
    font-weight: 600;
}

.privacy-note {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

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

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-white), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.copyright {
    text-align: center;
    padding-top: 1rem;
}

.copyright p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Floating Buttons */
.btn.floating-shop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.btn.floating-unmute {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1002;
    }

    .nav-menu.active {
        right: 0;
    }
    
    /* Hide hero buttons when mobile menu is active */
    body.mobile-menu-active .hero-buttons,
    body.mobile-menu-active #shop-now,
    body.mobile-menu-active #unmute-btn,
    body.mobile-menu-active #scroll-indicator {
        visibility: hidden !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* Make nav links black when mobile menu is open */
    .nav-menu.active .nav-link {
        color: var(--primary-black);
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu.active .nav-link:hover {
        color: var(--accent-blue);
        text-shadow: 2px 2px 4px rgba(106, 189, 240, 0.3);
    }

    .nav-toggle {
        display: flex;
        z-index: 1003; /* Higher than nav-menu to ensure it's clickable */
    }
    
    /* Make nav-toggle more visible when menu is active */
    .nav-menu.active ~ .nav-toggle span,
    body.mobile-menu-active .nav-toggle span {
        background: var(--primary-black) !important;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-hero {
        height: 120px;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 1rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        letter-spacing: 2px;
    }

    /* Video adjustments for mobile */
    .hero-video {
        min-width: 100%;
        min-height: 100%;
        max-width: 100%;
        width: 100%;
        height: 100%;
    }
    
    .video-background {
        max-width: 100%;
        overflow: hidden;
    }

    .reviews-section {
        padding: 3rem 0 0.5rem 0;
        max-width: 100%;
    }

    .reviews-carousel {
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .review-track {
        max-width: 100%;
        /* Add smooth touch scrolling for mobile */
        -webkit-overflow-scrolling: touch;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        opacity: 0.9;
        backdrop-filter: blur(15px);
        background: rgba(106, 189, 240, 0.15);
        box-shadow: 0 4px 15px rgba(106, 189, 240, 0.2);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
        background: rgba(106, 189, 240, 0.25);
    }

    .carousel-btn-left {
        left: 0.5rem;
    }

    .carousel-btn-right {
        right: 0.5rem;
    }

    .review-card {
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        margin: 0 1rem;
        padding: 1.2rem;
        /* Add touch-friendly styling */
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(106, 189, 240, 0.1);
    }
    
    .review-card:active {
        transform: scale(0.98);
        background: linear-gradient(145deg, var(--secondary-black), var(--primary-black));
    }

    .review-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .story-image {
        max-width: 400px;
    }

    .mailing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mailing-text h2 {
        font-size: 1.6rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .product-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-image {
        height: 500px;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        justify-items: center;
        margin: 0 auto;
        max-width: 300px;
    }

    .thumbnail {
        height: 70px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
    }

    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .stat {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .video-overlay-text {
        font-size: 2rem;
        padding: 0 1rem;
        white-space: nowrap;
        line-height: 1.1;
    }

    /* Enhanced Feature Buttons for Mobile */
    .feature-button {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border: 1px solid rgba(106, 189, 240, 0.4);
        background: rgba(106, 189, 240, 0.08);
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 
                    0 0 8px rgba(106, 189, 240, 0.15);
        border-radius: 8px;
        line-height: 1.4;
    }
    
    .feature-button:hover,
    .feature-button:active,
    .feature-button:focus {
        background: rgba(106, 189, 240, 0.15);
        border-color: rgba(106, 189, 240, 0.6);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 
                    0 0 12px rgba(106, 189, 240, 0.25);
    }
    
    .feature-button .spec-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
        background: rgba(106, 189, 240, 0.15);
        border: 1px solid rgba(106, 189, 240, 0.3);
        border-radius: 6px;
        box-shadow: 0 0 4px rgba(106, 189, 240, 0.2);
        flex-shrink: 0;
    }
    
    /* Better text handling for mobile feature buttons */
    .feature-button {
        flex-wrap: wrap;
        align-items: center;
    }
    
    .feature-button span:not(.spec-icon) {
        flex: 1;
        min-width: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-actions {
        justify-content: center;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    /* Dual Video Section Mobile */
    .dual-video-section {
        max-width: 100%;
        overflow: hidden;
    }
    
    .dual-video-section::before,
    .dual-video-section::after {
        display: none;
    }
    
    .dual-video-container {
        flex-direction: column;
        height: 100%;
        max-width: 100%;
    }

    .main-video_wrapper {
        display: none;
    }

    .available-video-wrapper {
        flex: 1;
        height: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .available-text, .now-text {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .now-text {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .video-overlay-controls {
        bottom: 80px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-hero {
        height: 80px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Feature cards mobile optimization */
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .image-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin: 0 auto;
        max-width: 250px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .review-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        margin: 0 0.8rem;
        padding: 1rem;
    }

    .review-text {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .story-image {
        max-width: 300px;
    }

    .reviewer-info h4 {
        font-size: 1.1rem;
    }

    .reviewer-info span {
        font-size: 0.75rem;
    }

    .mailing-text h2 {
        font-size: 1.4rem;
    }

    .mailing-text p {
        font-size: 1.1rem;
    }

    .email-input {
        padding: 1rem 1.2rem;
    }

    .signup-btn {
        padding: 1rem 1.5rem;
    }

    .video-overlay-text {
        font-size: 1.6rem;
        padding: 0 0.8rem;
    }

    /* Further video adjustments for small screens */
    .hero-video {
        min-width: 100%;
        min-height: 100%;
        max-width: 100%;
        width: 100%;
        height: 100%;
    }
    
    .main-video, .available-video, .showcase-video {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .video-background, .video-container, .dual-video-container {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Dual Video Section - hide main video and crop effects on small mobile */
    .dual-video-section::before,
    .dual-video-section::after {
        display: none;
    }
    
    .main-video-wrapper {
        display: none;
    }
    
    .available-video-wrapper {
        height: 100%;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Email notification animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--wave-blue);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1002; /* Higher than buttons to ensure visibility */
    color: var(--primary-white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-indicator.show {
    opacity: 1;
    visibility: visible;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(106, 189, 240, 0.3);
}

.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(106, 189, 240, 0.3);
    transition: all 0.3s ease;
}

.scroll-arrow svg {
    color: var(--accent-blue);
    animation: arrowPulse 2s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-arrow {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(106, 189, 240, 0.5);
    border-color: var(--primary-white);
}

.scroll-indicator:hover .scroll-arrow svg {
    color: var(--primary-white);
}

.scroll-indicator:hover .scroll-text {
    color: var(--primary-white);
}

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

@keyframes arrowPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(3px);
    }
}

/* Hide scroll indicator when scrolled */
.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

/* Floating Buttons */
.unmute-btn {
    position: relative;
    z-index: 1000;
    transition: none;
    opacity: 1;
    transform-origin: center;
}

.unmute-btn.floating {
    animation: floatToCornerLeft 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-fill-mode: forwards;
}

#shop-now {
    position: relative;
    z-index: 1000;
    transition: none;
    transform-origin: center;
}

#shop-now.floating {
    animation: floatToCornerRight 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-fill-mode: forwards;
}

/* Class to apply after animation completes */
.unmute-btn.in-corner {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 1000 !important;
    transform: scale(0.9) !important;
    animation: none !important;
    max-width: calc(50vw - 40px) !important;
    font-size: 1.3rem !important;
    padding: 0.8rem 1.5rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

#shop-now.in-corner {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    transform: scale(0.9) !important;
    animation: none !important;
    max-width: calc(50vw - 40px) !important;
    font-size: 1.3rem !important;
    padding: 0.8rem 1.5rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Smooth animations for button movement from center to bottom corners */
@keyframes floatToCornerLeft {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(106, 189, 240, 0.3);
    }
    100% {
        transform: translateX(calc(-50vw + 120px)) translateY(calc(35vh - 60px)) scale(0.9);
        opacity: 1;
        box-shadow: 0 0 20px rgba(106, 189, 240, 0.3);
    }
}

@keyframes floatToCornerRight {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(106, 189, 240, 0.3);
    }
    100% {
        transform: translateX(calc(50vw - 120px)) translateY(calc(35vh - 60px)) scale(0.9);
        opacity: 1;
        box-shadow: 0 0 20px rgba(106, 189, 240, 0.3);
    }
}

/* After animation is complete, ensure proper positioning */
.unmute-btn.floating {
    animation-fill-mode: forwards;
}

#shop-now.floating {
    animation-fill-mode: forwards;
}

/* Floating button hover effects */
.unmute-btn.floating:hover,
#shop-now.floating:hover {
    animation: pulse 0.6s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 25px rgba(106, 189, 240, 0.4);
        transform: scale(0.9);
    }
    100% {
        box-shadow: 0 0 35px rgba(106, 189, 240, 0.8);
        transform: scale(1);
    }
}

/* Make sure buttons are visible on mobile */
@media (max-width: 768px) {
    .unmute-btn.in-corner {
        bottom: 15px !important;
        left: 15px !important;
        transform: scale(0.8) !important;
        max-width: calc(50vw - 30px) !important;
        font-size: 1.2rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    #shop-now.in-corner {
        bottom: 15px !important;
        right: 15px !important;
        transform: scale(0.8) !important;
        max-width: calc(50vw - 30px) !important;
        font-size: 1.2rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    @keyframes floatToCornerLeft {
        0% {
            transform: translateX(0) translateY(0) scale(1) rotate(0deg);
            opacity: 1;
            box-shadow: 0 0 15px rgba(106, 189, 240, 0.3);
        }
        25% {
            transform: translateX(-10vw) translateY(4vh) scale(1.01) rotate(-0.5deg);
            opacity: 0.98;
            box-shadow: 0 0 17px rgba(106, 189, 240, 0.35);
        }
        50% {
            transform: translateX(-22vw) translateY(12vh) scale(0.99) rotate(-1deg);
            opacity: 0.96;
            box-shadow: 0 0 20px rgba(106, 189, 240, 0.4);
        }
        75% {
            transform: translateX(-32vw) translateY(22vh) scale(1.005) rotate(-0.3deg);
            opacity: 0.97;
            box-shadow: 0 0 18px rgba(106, 189, 240, 0.37);
        }
        100% {
            transform: translateX(-35vw) translateY(25vh) scale(0.8) rotate(0deg);
            opacity: 1;
            box-shadow: 0 0 15px rgba(106, 189, 240, 0.3);
        }
    }
    
    @keyframes floatToCornerRight {
        0% {
            transform: translateX(0) translateY(0) scale(1) rotate(0deg);
            opacity: 1;
            box-shadow: 0 0 15px rgba(106, 189, 240, 0.3);
        }
        25% {
            transform: translateX(10vw) translateY(4vh) scale(1.01) rotate(0.5deg);
            opacity: 0.98;
            box-shadow: 0 0 17px rgba(106, 189, 240, 0.35);
        }
        50% {
            transform: translateX(22vw) translateY(12vh) scale(0.99) rotate(1deg);
            opacity: 0.96;
            box-shadow: 0 0 20px rgba(106, 189, 240, 0.4);
        }
        75% {
            transform: translateX(32vw) translateY(22vh) scale(1.005) rotate(0.3deg);
            opacity: 0.97;
            box-shadow: 0 0 18px rgba(106, 189, 240, 0.37);
        }
        100% {
            transform: translateX(35vw) translateY(25vh) scale(0.8) rotate(0deg);
            opacity: 1;
            box-shadow: 0 0 15px rgba(106, 189, 240, 0.3);
        }
    }
    
    .unmute-btn.floating,
    #shop-now.floating {
        animation-duration: 2.7s;
    }
    
    /* Scroll indicator mobile styles */
    .scroll-indicator {
        bottom: 160px; /* Move higher above the stacked buttons */
        z-index: 1002; /* Higher than buttons (1001) */
    }
    
    .scroll-text {
        font-size: 1rem; /* Slightly larger for better visibility */
        margin-bottom: 8px;
        font-weight: 500; /* Slightly bolder */
    }
    
    .scroll-arrow {
        width: 40px; /* Slightly larger */
        height: 40px;
    }
    
    .scroll-arrow svg {
        width: 24px; /* Slightly larger */
        height: 24px;
    }
}

/* Video play overlay styles */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999; /* Below buttons but above video */
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 999;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn svg {
    display: block;
}

.video-play-btn svg circle {
    transition: fill 0.2s ease;
}

.video-play-btn:hover svg circle {
    fill: rgba(255, 255, 255, 1);
}

/* Ensure video is clickable on mobile Safari */
@media (max-width: 768px) {
    .video-play-overlay {
        z-index: 500; /* Lower z-index on mobile to ensure buttons remain accessible */
    }
    
    .video-play-btn {
        z-index: 500;
        /* Make sure the play button is large enough for touch */
        min-width: 60px;
        min-height: 60px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .video-play-btn svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .video-play-btn svg {
        width: 40px;
        height: 40px;
    }
}

/* Mobile responsive styles for underline buttons */
@media (max-width: 768px) {
    .product-details-underline {
        margin-top: 1rem;
        gap: 0.3rem;
    }
    
    .detail-underline-toggle {
        font-size: 1.1rem;
        padding: 0.4rem 0;
    }
}

@media (max-width: 480px) {
    .detail-underline-toggle {
        font-size: 1.3rem;
        padding: 0.3rem 0;
    }
}

/* Mobile modal styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .tech-specs-list li,
    .why-buy-list li,
    .included-list li {
        padding: 0.6rem 0;
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 1% auto;
        width: 98%;
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .close-modal {
        font-size: 1.1rem;
    }
}

/* Extra small mobile devices - prevent button text overflow */
@media (max-width: 480px) {
    .unmute-btn.in-corner {
        bottom: 10px !important;
        left: 10px !important;
        transform: scale(0.7) !important;
        max-width: calc(50vw - 20px) !important;
        font-size: 1.1rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    #shop-now.in-corner {
        bottom: 10px !important;
        right: 10px !important;
        transform: scale(0.7) !important;
        max-width: calc(50vw - 20px) !important;
        font-size: 1.1rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Ensure buttons don't overlap and handle text properly */
    .unmute-btn.floating,
    #shop-now.floating {
        min-width: auto !important;
        width: auto !important;
        max-width: 45vw !important;
    }
    
    /* General button text overflow protection */
    .btn {
        font-size: 1.1rem !important;
        padding: 0.8rem 1.5rem !important;
        max-width: 90vw !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
}

/* Ultra small screens - aggressive text overflow prevention */
@media (max-width: 360px) {
    .video-overlay-text {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    
    .unmute-btn.in-corner {
        font-size: 1rem !important;
        padding: 0.4rem 0.8rem !important;
        max-width: calc(50vw - 15px) !important;
        transform: scale(0.65) !important;
    }
    
    #shop-now.in-corner {
        font-size: 1rem !important;
        padding: 0.4rem 0.8rem !important;
        max-width: calc(50vw - 15px) !important;
        transform: scale(0.65) !important;
    }
    
    .btn {
        font-size: 1.3rem !important;
        padding: 0.7rem 1.2rem !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Reduce price size on mobile too */
    .price {
        font-size: 1.3rem;
    }
    
    .price-original {
        font-size: 0.9rem;
    }
    
    .product-logo {
        height: 1.5rem;
    }
}