/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Christmas Theme */
    --primary-dark: #0d0d0d;
    --primary-charcoal: #1a1a1a;
    --secondary-slate: #2d4a2d;
    --accent-gold: #c41e3a;
    --accent-bronze: #a01729;
    --neutral-light: #f8f8f8;
    --neutral-white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #2d4a2d;
    --text-light: #5a7a5a;
    --border-color: #e0e7e0;
    --success-green: #1e7e34;
    --warning-amber: #c41e3a;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing - Compacted */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--neutral-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    background-image:
        linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.8) 100%),
        url('productimages/Gemini_Generated_Image_f8y36if8y36if8y3.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--neutral-white);
    max-width: 900px;
    padding: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.trust-badges-hero {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-badges-hero .badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

.trust-badges-hero .badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-product-display {
    max-width: 500px;
    margin: 0 auto var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-slow);
}

.hero-product-image:hover {
    transform: scale(1.05);
}

/* ===================================
   BUTTONS & CTAs
   =================================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.cta-button::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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: var(--neutral-white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
}

.secondary-cta {
    background: var(--primary-charcoal);
    color: var(--neutral-white);
    border: 2px solid var(--accent-gold);
}

.secondary-cta:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.buy-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: var(--neutral-white);
    font-size: 1.25rem;
    padding: 1.25rem;
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5);
}

.final-cta-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: var(--neutral-white);
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

/* ===================================
   PRODUCT DETAILS SECTION
   =================================== */
.product-details-section {
    padding: var(--spacing-xl) 0;
    /* Reduced from 3xl */
    background: var(--neutral-white);
    margin-top: 0;
    /* Removed 40px gap */
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Product Thumbnails - Left Column */
/* Product Gallery - Left Column */
.product-gallery-container {
    padding: var(--spacing-sm);
    background: var(--neutral-white);
    border-radius: 12px;
    max-width: 650px;
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: var(--neutral-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    max-height: 600px;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
    will-change: opacity;
    transform: translateZ(0);
}

.thumbnails-row {
    display: flex;
    gap: var(--spacing-xs);
    overflow-x: auto;
    padding: var(--spacing-xs);
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    /* Hide scrollbar for slider look */
}

.thumbnails-row::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background 0.2s ease;
    will-change: transform;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-50%) translateZ(0) scale(1.05);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.thumbnails-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

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

.thumb-item {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
    opacity: 0.7;
    will-change: transform;
    transform: translateZ(0);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover {
    opacity: 1;
    transform: translateY(-2px) translateZ(0);
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Pricing Box - Right Column */
.pricing-box {
    background: var(--neutral-white);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    position: sticky;
    top: var(--spacing-lg);
}

.product-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.2;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.pricing-container {
    background: var(--neutral-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-display);
}

.savings-badge {
    background: var(--success-green);
    color: var(--neutral-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.urgency-indicators {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.stock-indicator,
.shipping-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Dark Theme Product Section Override - REVERTED TO LIGHT & FULL WIDTH */
.product-details-section {
    background-color: var(--neutral-white);
    width: 100%;
    padding: var(--spacing-3xl) var(--spacing-lg);
    /* Add horizontal padding */
}

/* Override default container for this section only if needed, or make grid full width */
.product-details-section .container {
    max-width: 100%;
    /* Full Width */
    padding: 0;
}

.product-details-grid {
    background-color: #ffffff;
    /* White Background */
    padding: 0;
    /* Remove internal padding */
    border-radius: 0;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    /* Ensure 2 columns */
    gap: var(--spacing-3xl);
    /* Increase gap for full width feel */
    max-width: 1400px;
    /* Limit overly wide screens slightly for readability */
    margin: 0 auto;
}

/* Updated Gallery Container */
.product-gallery-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.main-image-wrapper {
    border: none;
    border-radius: 0;
    margin-bottom: var(--spacing-md);
    background: transparent;
}

.thumb-item {
    border-radius: 0;
    border: 2px solid transparent;
}

.thumb-item.active {
    border-color: #d4a574;
    box-shadow: none;
}


/* Right Column - Info Styles (Adapted for Light Theme) */
.product-info-dark {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.product-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xs);
    color: #111;
}

.rating-display-large {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--spacing-sm);
}

.rating-display-large .stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-display-large .review-count {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    padding-left: 12px;
    border-left: 3px solid var(--accent-gold);
}

.price-container-large {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.current-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4a574;
    /* Keeping Gold as requested, could be made Red if user allows */
}

.original-price-large {
    font-size: 1.5rem;
    color: #ff4d4d;
    /* Red strikethrough as per reference */
    text-decoration: line-through;
    font-weight: 600;
    position: relative;
}

/* Add to Cart Section Wrapper */
.add-to-cart-box-new {
    background: #fdfdfd;
    padding: var(--spacing-md);
    border: 1px solid #eee;
    margin-bottom: var(--spacing-lg);
    border-radius: 4px;
}

.buy-now-btn-large {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    /* Keeping Site Theme */
    /* background: #cc0000; If matching reference strictly */
    color: #fff;
    border: none;
    padding: 18px;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: var(--spacing-md);
    /* Space for urgency */
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.buy-now-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Urgency Indicator */
.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}

.pulsing-dot {
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
    }

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

.stock-count {
    color: #ff0000;
    font-size: 1.2rem;
}

/* Payment Icons Row */
.payment-methods-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    color: #333;
    flex-wrap: wrap;
}

/* Trust Badges Row (Below Cart) */
.trust-badges-row-new {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    gap: 10px;
}

.trust-badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge-item i {
    font-size: 2rem;
    color: var(--text-secondary);
    /* Bronze/Gold or Grey */
}

.trust-badge-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: var(--spacing-lg);
}


/* Feature Bullets (Bottom List) */
.feature-bullets-container {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-bullets-container ul {
    list-style: none;
    padding: 0;
}

.feature-bullets-container li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.feature-bullets-container li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ccc;
    /* Bullet color */
    font-size: 1.5rem;
    line-height: 1rem;
    top: 2px;
}

/* Accordion Styles */
.accordion-container {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    border-top: 2px solid #000;
    /* Main top border for the whole row */
    margin-top: var(--spacing-lg);
    padding-top: 0;
}

.accordion-item {
    flex: 1;
    border-top: none;
    /* Removed individual top borders since container has one */
    border-bottom: none;
    /* Clean look */
    position: relative;
    border-right: 1px solid #eee;
    /* Divider between items */
    padding-right: var(--spacing-md);
}

.accordion-item:last-child {
    border-right: none;
    padding-right: 0;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.accordion-header span {
    font-size: 1rem;
    /* Slightly smaller to fit side-by-side */
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    /* Make headers distinct */
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

.accordion-icon {
    font-size: 0.9rem;
    color: #111;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* Rotate icon when active */
.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-inner-text {
    padding-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    padding-top: 8px;
}

.accordion-inner-text p {
    margin-bottom: 1em;
}

.accordion-inner-text ul {
    padding-left: 16px;
    margin: 0;
}

.accordion-inner-text li {
    margin-bottom: 6px;
}

.specs-list li,
.features-list-detail li {
    list-style-type: disc;
}

/* Mobile Responsive Accordion */
@media (max-width: 768px) {
    .accordion-container {
        flex-direction: column;
        gap: 0;
        border-top: 2px solid #000;
    }

    .accordion-item {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #eee;
    }

    .accordion-header {
        padding: 14px 0;
    }

    .accordion-header span {
        font-size: 1.1rem;
        /* Larger on mobile */
    }
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: var(--spacing-xl) 0;
    /* Reduced vertical padding */
    background: linear-gradient(180deg, var(--neutral-white) 0%, var(--neutral-light) 100%);
}

.features-section .container {
    max-width: 1400px;
    /* Wider container for better horizontal spread */
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    /* Slightly smaller title */
    text-align: center;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    /* Slightly smaller subtitle */
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    /* Reduced bottom margin */
    font-weight: 300;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-sm);
    /* Tighter gap between cards */
    margin-bottom: var(--spacing-md);
    /* Reduced bottom margin */
    flex-wrap: nowrap;
    /* Force single line on desktop */
    overflow-x: auto;
    /* Allow scroll if needed on very small screens before break */
}

@media (max-width: 900px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablet */
        gap: var(--spacing-md);
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.feature-card {
    background: var(--neutral-white);
    padding: var(--spacing-lg);
    /* Reduced internal padding from XL to LG */
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    flex: 1;
    /* Allow cards to grow/shrink equally */
}

.feature-card:hover {
    transform: translateY(-5px);
    /* Subtle hover */
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 48px;
    /* Reduced from 60px */
    height: 48px;
    /* Reduced from 60px */
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    /* Reduced margin */
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 24px;
    /* Reduced from 32px */
    height: 24px;
    /* Reduced from 32px */
    stroke: var(--neutral-white);
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    /* Reduced from 1.5rem */
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    /* Reduced margin */
    color: var(--text-primary);
}

.feature-description {
    font-size: 0.9375rem;
    /* Slightly smaller text */
    line-height: 1.5;
    /* Tighter line height */
    color: var(--text-secondary);
}

.features-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ===================================
   VIDEO GRID SHOWCASE (FULL WIDTH)
   =================================== */
.video-grid-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.grid-item {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    /* More compact vertically than 16/9 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-item:hover img {
    transform: scale(1.05);
}

.text-item {
    padding: var(--spacing-xl);
    /* Reduced padding for more space */
    text-align: center;
}

.text-item.bg-beige {
    background-color: var(--neutral-light);
}

.text-item.bg-white {
    background-color: var(--neutral-white);
}

.text-content {
    max-width: 600px;
    /* Increased from 450px to fill more horizontal space */
}

.grid-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    /* Increased from 2rem for prominence */
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: 1px;
    line-height: 1.1;
}

.grid-description {
    font-size: 1.25rem;
    /* Increased from 1rem */
    line-height: 1.5;
    color: var(--text-secondary);
}

.video-item {
    background: #000;
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Response Stacking */
@media (max-width: 900px) {
    .video-grid-showcase {
        grid-template-columns: 1fr;
    }

    .grid-item {
        aspect-ratio: auto;
        min-height: 400px;
    }

    /* Reorder for mobile checkerboard consistency if needed, 
       but standard flow is fine for vertical stacking */
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section {
    padding: var(--spacing-md) 0;
    background: var(--neutral-white);
    overflow: hidden;
}

.reviews-section .container {
    max-width: 100vw;
    width: 100%;
    padding: 0;
    margin: 0;
}

.reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    user-select: none;
    width: 100%;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.reviews-grid.active {
    cursor: grabbing;
    scroll-snap-type: none;
}

.review-image {
    width: 100%;
    margin-bottom: var(--spacing-sm);
    border-radius: 4px;
    overflow: hidden;
    background: var(--neutral-light);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-image.square {
    aspect-ratio: 1 / 1;
}

.review-image.vertical {
    aspect-ratio: 4 / 5;
}

.review-image.banner {
    aspect-ratio: 16 / 9;
}

#video-showcase {
    background-color: var(--neutral-white);
    margin: 0 var(--spacing-md);
    /* Creates the gap from screen edges */
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle visible border */
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle visible border */
}

.review-card {
    flex: 0 0 calc(20% - 20px);
    /* Show approximately 5 reviews on large screens */
    min-width: 280px;
    /* Ensure readability on smaller screens */
    background: var(--neutral-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    scroll-snap-align: start;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

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

.review-header .stars {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.verified-badge {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success-green);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.review-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   TRUST SIGNALS SECTION
   =================================== */
.trust-section {
    padding: var(--spacing-2xl) 0;
    background: var(--neutral-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--neutral-white);
    stroke-width: 2;
}

.trust-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.trust-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-charcoal) 100%);
    color: var(--neutral-white);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.125rem;
}

.urgency-text .icon {
    width: 24px;
    height: 24px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #111;
    color: var(--neutral-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    flex: 1;
    min-width: 300px;
}

.widget-title {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--neutral-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.newsletter-header i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.promo-badge {
    background: #ff4d4d;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.newsletter-header h4 {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neutral-white);
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #555;
    background: #252525;
}

.newsletter-form button {
    background: #cc0000;
    color: white;
    border: none;
    padding: 0 30px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: #aa0000;
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--neutral-white);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .pricing-box {
        position: static;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-2xl) 0;
    }

    .trust-badges-hero {
        flex-direction: column;
        align-items: center;
    }

    .price-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.icon {
    width: 24px;
    height: 24px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

/* Tablet and Below */
@media screen and (max-width: 1024px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-gallery-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-section {
        min-height: auto;
        padding: var(--spacing-xl) 0;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-gallery-container {
        max-width: 100%;
        padding: var(--spacing-sm);
    }
    
    .main-image-wrapper {
        max-height: 400px;
        margin-bottom: var(--spacing-sm);
    }
    
    .thumbnails-slider-container {
        width: 100%;
    }
    
    .thumbnails-row {
        padding: var(--spacing-sm) 0;
        gap: var(--spacing-sm);
    }
    
    .thumb-item {
        flex: 0 0 70px;
        height: 70px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .product-info-dark {
        padding: var(--spacing-lg);
    }
    
    .product-title-large {
        font-size: 1.75rem !important;
    }
    
    .price-display-large {
        font-size: 2rem !important;
    }
    
    .buy-now-btn,
    .cta-button {
        padding: 1rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .trust-badges-row-new {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .trust-badge-item {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .product-title-large {
        font-size: 1.5rem !important;
    }
    
    .price-display-large {
        font-size: 1.75rem !important;
    }
    
    .thumb-item {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .main-image-wrapper {
        max-height: 300px;
    }
}

body, html {
    overflow-x: hidden;
}
