@charset "UTF-8";

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM (RED & BLUE PALETTE)
   ========================================================================== */
:root {
    /* Main Red Palette */
    --color-red-50: #fef2f2;
    --color-red-100: #fee2e2;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626; /* Primary CTA */
    --color-red-700: #b91c1c;
    --color-red-900: #7f1d1d;
    
    /* Main Blue Palette */
    --color-blue-50: #f0f9ff;
    --color-blue-100: #e0f2fe;
    --color-blue-500: #0ea5e9;
    --color-blue-800: #075985;
    --color-blue-900: #0f172a; /* Deep Navy - Header/Footer */
    --color-blue-950: #020617;
    
    /* Neutral / Typography Palette */
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Semantic Colors */
    --color-bg-body: var(--color-gray-50);
    --color-bg-card: #ffffff;
    --color-text-main: var(--color-gray-700);
    --color-text-heading: var(--color-gray-900);
    --color-text-muted: var(--color-gray-500);
    --color-star: #eab308; /* Amazon standard or we can use red/blue. Let's stick to standard gold for stars but red accents */
    --color-star-accent: var(--color-red-500);
    --color-success: #16a34a;

    /* Gradients */
    --gradient-cta: linear-gradient(135deg, var(--color-red-500) 0%, var(--color-red-700) 100%);
    --gradient-cta-hover: linear-gradient(135deg, var(--color-red-600) 0%, var(--color-red-900) 100%);
    --gradient-glow-red: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, rgba(255,255,255,0) 70%);
    --gradient-glow-blue: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(255,255,255,0) 70%);
    --gradient-footer: linear-gradient(to right, var(--color-blue-950), var(--color-blue-900));

    /* Shadows (Layered for depth) */
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-card: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 0 20px rgba(15, 23, 42, 0.03);
    --shadow-cta: 0 15px 30px -5px rgba(220, 38, 38, 0.4);
    --shadow-inner: inset 0 2px 4px 0 rgba(0,0,0,0.06);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Radii */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Layout Constants */
    --max-width-content: 1280px;
    --header-height: 72px;
}

/* ==========================================================================
   RESET & GLOBAL TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.site-body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ==========================================================================
   ANIMATIONS (KEYFRAMES)
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@keyframes blob-drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes scale-in {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   AMBIENT BACKGROUND DECORATIONS
   ========================================================================== */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-color: var(--color-bg-body);
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-drift 20s infinite alternate ease-in-out;
}

.blob-red {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: var(--gradient-glow-red);
    animation-delay: 0s;
}

.blob-blue {
    bottom: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: var(--gradient-glow-blue);
    animation-delay: -5s;
}

/* ==========================================================================
   HEADER (GLASSMORPHISM)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(15, 23, 42, 0.85); /* Deep Navy */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-base);
}

.header-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-red-700));
    border-radius: var(--radius-md);
    color: white;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.header-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-200);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-red-500);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-shadow 2s infinite;
}

.header-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* ==========================================================================
   MAIN CONTENT LAYOUT
   ========================================================================== */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem 1rem;
    gap: 4rem;
}

/* ==========================================================================
   PRODUCT SECTION & HERO CARD
   ========================================================================== */
.product-section {
    width: 100%;
    max-width: var(--max-width-content);
    margin-top: 1rem;
    animation: slideUpFade 0.8s ease-out forwards;
}

.product-card-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-3xl);
    padding: 1px; /* For gradient border effect */
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    box-shadow: var(--shadow-card);
}

.product-card {
    position: relative;
    background-color: var(--color-bg-card);
    border-radius: calc(var(--radius-3xl) - 1px);
    overflow: hidden;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
        gap: 4rem;
        align-items: start;
    }
}

/* ==========================================================================
   CSS-ONLY INTERACTIVE GALLERY
   ========================================================================== */
.product-gallery-wrapper {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hide the functional radio buttons */
.gallery-radio {
    display: none;
}

.gallery-main-view {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-gray-50);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-inner);
}

.gallery-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: var(--color-red-600);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    transition: transform var(--transition-slow);
}

/* Gallery Logic: Tie radios to opacity & scale */
#img-1:checked ~ .gallery-main-view .item-1,
#img-2:checked ~ .gallery-main-view .item-2,
#img-3:checked ~ .gallery-main-view .item-3,
#img-4:checked ~ .gallery-main-view .item-4 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Hover effect on main image for slight zoom */
.gallery-main-view:hover .image-frame img {
    transform: scale(1.05);
}

/* Thumbnails */
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumb-label {
    cursor: pointer;
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.thumb-inner {
    width: 100%;
    height: 100%;
    background: var(--color-gray-50);
    border: 2px solid transparent;
    border-radius: inherit;
    padding: 0.5rem;
    transition: var(--transition-base);
    position: relative;
}

.thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-base);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    transition: var(--transition-base);
}

/* Thumbnail Interactions */
.thumb-label:hover .thumb-inner {
    border-color: var(--color-blue-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.thumb-label:hover .thumb-overlay {
    background: transparent;
}

/* Active Thumbnail Logic */
#img-1:checked ~ .gallery-thumbnails .thumb-1 .thumb-inner,
#img-2:checked ~ .gallery-thumbnails .thumb-2 .thumb-inner,
#img-3:checked ~ .gallery-thumbnails .thumb-3 .thumb-inner,
#img-4:checked ~ .gallery-thumbnails .thumb-4 .thumb-inner {
    border-color: var(--color-blue-500);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-md);
}

#img-1:checked ~ .gallery-thumbnails .thumb-1 .thumb-overlay,
#img-2:checked ~ .gallery-thumbnails .thumb-2 .thumb-overlay,
#img-3:checked ~ .gallery-thumbnails .thumb-3 .thumb-overlay,
#img-4:checked ~ .gallery-thumbnails .thumb-4 .thumb-overlay {
    background: transparent;
}

/* ==========================================================================
   PRODUCT INFORMATION (RIGHT SIDE)
   ========================================================================== */
.product-info-wrapper {
    display: flex;
    flex-direction: column;
}

.product-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-blue-800);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subtitle::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-blue-500);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-heading);
    letter-spacing: -0.03em;
}

.main-title .highlight {
    color: var(--color-red-600);
    position: relative;
    display: inline-block;
}

.title-underline {
    margin-top: 1rem;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-blue-500));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }
}

/* Feature List Formatting */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    background: transparent;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-100);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

/* Special Alert Feature Background */
.alert-item {
    background: var(--color-red-50);
    border-color: var(--color-red-100);
}

.alert-item:hover {
    background: var(--color-red-100);
    border-color: var(--color-red-200);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-red {
    background: var(--color-red-100);
    color: var(--color-red-600);
}

.icon-blue {
    background: var(--color-blue-100);
    color: var(--color-blue-600);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.pulse-icon {
    animation: pulse-shadow 2s infinite;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

/* Legal Disclaimer */
.legal-disclaimer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--color-gray-200);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
    display: flex;
    gap: 0.5rem;
}

.disclaimer-icon {
    color: var(--color-red-500);
    font-weight: bold;
}

/* ==========================================================================
   CALL TO ACTION SECTION (MASSIVE & ANIMATED)
   ========================================================================== */
.cta-section {
    width: 100%;
    max-width: var(--max-width-content);
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    padding: 5rem 2rem;
    text-align: center;
    background: var(--color-blue-900);
    color: white;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--color-red-600);
    top: -100px;
    right: -50px;
    opacity: 0.4;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--color-blue-500);
    bottom: -150px;
    left: -100px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-blue-100);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .cta-title { font-size: 2.75rem; }
}

.amazon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-cta);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-cta);
    text-decoration: none;
}

/* Button Shine Effect */
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine-sweep 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-base);
}

.amazon-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.6);
    background: var(--gradient-cta-hover);
}

.amazon-btn:hover .btn-icon {
    transform: translateX(4px);
}

.amazon-btn:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-sm);
}

.amazon-btn:focus-visible {
    outline: 4px solid rgba(239, 68, 68, 0.5);
    outline-offset: 4px;
}

/* ==========================================================================
   REVIEWS SECTION (AMAZON STYLE + PREMIUM UI)
   ========================================================================== */
.reviews-section {
    width: 100%;
    max-width: 900px; /* Keep reviews readable length */
    background: var(--color-bg-card);
    border-radius: var(--radius-3xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* Top accent line on the reviews box */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-blue-500));
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.reviews-decoration-line {
    width: 80px;
    height: 4px;
    background: var(--color-gray-200);
    margin: 0 auto;
    border-radius: 2px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-100);
    transition: var(--transition-base);
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-card:hover {
    transform: translateX(4px);
}

/* Review Author Info */
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-gray-200);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.review-card:hover .author-avatar {
    border-color: var(--color-blue-500);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-heading);
}

/* Rating and Headline */
.review-rating-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.stars {
    color: var(--color-star);
    font-size: 1.125rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.review-headline {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-text-heading);
}

/* Review Meta Data */
.review-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.review-attributes {
    font-size: 0.8rem;
    color: var(--color-gray-400);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-red-600);
    margin-bottom: 1rem;
    background: var(--color-red-50);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

.review-verified svg {
    width: 14px;
    height: 14px;
}

/* Review Body Text */
.review-body {
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Review Attached Photos Gallery */
.review-gallery {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.review-photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-gray-200);
    transition: var(--transition-base);
}

.review-photo:hover {
    transform: scale(1.05);
    border-color: var(--color-blue-300);
    box-shadow: var(--shadow-md);
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   FOOTER (RICH DESIGN)
   ========================================================================== */
.site-footer {
    width: 100%;
    background: var(--gradient-footer);
    color: var(--color-gray-300);
    position: relative;
    margin-top: 4rem;
}

.footer-top-gradient {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-red-600), var(--color-blue-500));
}

.footer-content {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--color-gray-400);
    max-width: 300px;
}

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-gray-300);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--color-red-500);
    margin-right: 0;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIXES)
   ========================================================================== */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.25rem;
    }
    
    .product-grid {
        padding: 1.5rem 1rem;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 1rem 0; /* Remove side padding on small mobile */
        border-radius: 0;
        border-bottom: 1px solid var(--color-gray-100);
    }
    .feature-item:hover {
        transform: none;
        background: transparent;
        box-shadow: none;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
        border-radius: var(--radius-2xl);
    }
    
    .amazon-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .reviews-section {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-2xl);
    }
}
