/* ==========================================================================
   CSS VARIABLES - EMERALD NATURE THEME
   ========================================================================== */
:root {
    /* Color Palette - Emerald / Forest Green / Mint */
    --color-primary-50: #ecfdf5;
    --color-primary-100: #d1fae5;
    --color-primary-200: #a7f3d0;
    --color-primary-300: #6ee7b7;
    --color-primary-400: #34d399;
    --color-primary-500: #10b981;
    --color-primary-600: #059669;
    --color-primary-700: #047857;
    --color-primary-800: #065f46;
    --color-primary-900: #064e3b;
    
    /* Neutrals */
    --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;

    /* Accents & UI */
    --color-bg-base: #f4fbfa;
    --color-card-bg: #ffffff;
    --color-star: #fbbf24;
    --color-verified: #f59e0b;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-700) 100%);
    --grad-light: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,1) 100%);
    --grad-fade: linear-gradient(to right, transparent, var(--color-primary-200), transparent);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(4, 120, 87, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(4, 120, 87, 0.1), 0 2px 4px -1px rgba(4, 120, 87, 0.06);
    --shadow-lg: 0 10px 25px -3px rgba(4, 120, 87, 0.15), 0 4px 6px -2px rgba(4, 120, 87, 0.05);
    --shadow-xl: 0 20px 30px -5px rgba(4, 120, 87, 0.2), 0 10px 10px -5px rgba(4, 120, 87, 0.04);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    
    /* Borders & Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================================================
   GLOBAL RESET & BASE
   ========================================================================== */
body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-base);
    color: var(--color-gray-800);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

::selection {
    background: var(--color-primary-200);
    color: var(--color-primary-900);
}

/* ==========================================================================
   DECORATIVE BACKGROUND ELEMENTS
   ========================================================================== */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: floatShape 20s infinite alternate ease-in-out;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-100) 0%, transparent 70%);
    top: -100px;
    left: -200px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary-50) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation-delay: -5s;
}

.bg-shape-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-primary-100) 0%, transparent 70%);
    bottom: -200px;
    left: 20%;
    animation-delay: -10s;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px -5px rgba(4, 120, 87, 0.05);
    transition: var(--transition-base);
}

.header-inner {
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: var(--color-primary-900);
}

.header-title-wrapper {
    flex: 1;
    justify-content: center;
    padding: 0 2rem;
}

.header-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.header-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-primary-300);
    border-radius: 2px;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-700);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-primary-500);
    border-radius: 50%;
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-400);
    opacity: 0;
    animation: pulseBadge 2s infinite;
}

/* ==========================================================================
   PRODUCT HERO CARD
   ========================================================================== */
.site-main {
    padding-top: 2rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.product-hero {
    margin-bottom: 4rem;
}

.product-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(16, 185, 129, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--grad-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    .product-card-glass {
        padding: 3rem;
    }
}

/* ==========================================================================
   PRODUCT TITLE & HEADER (Right Side / Mobile Top)
   ========================================================================== */
.product-header-mobile {
    margin-bottom: 2rem;
    text-align: center;
}

.product-title-main {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-gray-900);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .product-title-main {
        font-size: 2.25rem;
    }
}

.rating-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .rating-stars-wrapper {
        justify-content: flex-start;
    }
}

.stars {
    color: var(--color-star);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-700);
    background: var(--color-primary-50);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--color-primary-100);
}

.badge-group {
    display: flex;
    gap: 0.5rem;
}

.custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: var(--color-primary-500);
    color: white;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.badge-primary svg {
    width: 1rem;
    height: 1rem;
}

.title-divider {
    height: 2px;
    width: 100px;
    background: var(--color-primary-200);
    margin: 1.5rem 0;
    border-radius: 2px;
    position: relative;
}
.title-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30px;
    background: var(--color-primary-500);
    border-radius: 2px;
}

/* ==========================================================================
   CSS-ONLY GALLERY (Advanced Logic & Styling)
   ========================================================================== */
.product-gallery-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

/* Hide Radios */
.pg-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Viewport (Main Image Box) */
.gallery-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-inner), 0 0 0 1px var(--color-gray-100);
}

@media (min-width: 768px) {
    .gallery-viewport {
        aspect-ratio: 1/1;
    }
}

.gallery-viewport-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.5s;
    background: #fff;
    z-index: 1;
}

.image-zoom-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

/* Decorative Frame inside Viewport */
.viewport-frame-decoration {
    position: absolute;
    inset: 1rem;
    border: 1px dashed var(--color-primary-200);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 10;
    opacity: 0.5;
}

/* Thumbnails */
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumb-label {
    cursor: pointer;
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    padding: 4px;
    border: 2px solid transparent;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.thumb-inner {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-md) - 4px);
    overflow: hidden;
    position: relative;
    background: var(--color-gray-50);
}

.thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    transition: var(--transition-base);
}

.thumb-label:hover {
    border-color: var(--color-primary-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.thumb-label:hover .thumb-overlay {
    opacity: 0;
}

.thumb-label:hover .thumb-inner img {
    transform: scale(1.1);
}

/* Gallery Logic Connections (The Magic) */
#pg-img-1:checked ~ .gallery-viewport .item-1,
#pg-img-2:checked ~ .gallery-viewport .item-2,
#pg-img-3:checked ~ .gallery-viewport .item-3,
#pg-img-4:checked ~ .gallery-viewport .item-4 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 5;
}

#pg-img-1:checked ~ .gallery-thumbnails .thumb-1,
#pg-img-2:checked ~ .gallery-thumbnails .thumb-2,
#pg-img-3:checked ~ .gallery-thumbnails .thumb-3,
#pg-img-4:checked ~ .gallery-thumbnails .thumb-4 {
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 2px var(--color-primary-100), var(--shadow-md);
}

#pg-img-1:checked ~ .gallery-thumbnails .thumb-1 .thumb-overlay,
#pg-img-2:checked ~ .gallery-thumbnails .thumb-2 .thumb-overlay,
#pg-img-3:checked ~ .gallery-thumbnails .thumb-3 .thumb-overlay,
#pg-img-4:checked ~ .gallery-thumbnails .thumb-4 .thumb-overlay {
    opacity: 0;
}

/* ==========================================================================
   PRODUCT DESCRIPTION LIST
   ========================================================================== */
.product-details-content {
    animation: fadeIn 0.8s ease-out;
}

.details-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-900);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.details-heading::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary-100);
    border-radius: 2px;
    z-index: -1;
}

.custom-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary-50);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary-200);
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-100);
}

.feature-item:hover::before {
    background: var(--color-primary-500);
}

.feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    transition: var(--transition-bounce);
}

.feature-item:hover .feature-icon {
    background: var(--color-primary-500);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.feature-icon-highlight {
    background: var(--color-primary-100);
    color: var(--color-primary-700);
}

.feature-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.feature-text strong {
    display: block;
    color: var(--color-gray-900);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

/* Health Context Block */
.health-context-block {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-primary-100) 100%);
    border: 1px solid var(--color-primary-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.health-context-block::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    border-radius: 50%;
}

.health-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-600);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.health-icon svg { width: 1.5rem; height: 1.5rem; }

.health-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-900);
    line-height: 1.4;
    margin: 0;
    z-index: 1;
}

/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    margin: 2rem 0 4rem;
}

.cta-content-wrapper {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.cta-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

/* Decorative Rings */
.cta-decoration-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-primary-300);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.ring-1 {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    opacity: 0.5;
    animation: pulseRing 3s infinite;
}

.ring-2 {
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    opacity: 0.2;
    border-style: dashed;
    animation: spinRing 20s linear infinite;
}

.cta-button-massive {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-glow), 0 10px 20px -5px rgba(5, 150, 105, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--color-primary-600);
}

.cta-button-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-primary);
    z-index: 0;
    transition: opacity 0.3s ease;
}

.cta-button-massive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    animation: shineEffect 6s infinite;
}

.cta-button-text, .cta-button-icon {
    position: relative;
    z-index: 2;
}

.cta-button-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button-massive:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(5, 150, 105, 0.5), 0 0 30px rgba(16, 185, 129, 0.6);
}

.cta-button-massive:hover .cta-button-icon svg {
    transform: translateX(5px);
}

.cta-button-massive:active {
    transform: translateY(2px);
    box-shadow: 0 5px 10px rgba(5, 150, 105, 0.4);
}

/* ==========================================================================
   REVIEWS SECTION (Amazon-Style, Enhanced)
   ========================================================================== */
.reviews-section {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-primary-50);
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-50) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: var(--color-primary-600);
    font-weight: 500;
}

.reviews-divider {
    height: 3px;
    width: 60px;
    background: var(--color-primary-400);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .review-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.review-sidebar {
    flex-shrink: 0;
}

.review-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-gray-100);
    border: 2px solid var(--color-primary-100);
    box-shadow: var(--shadow-sm);
}

.review-avatar.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar.initial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-600);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-avatar.alt-color {
    background: var(--color-primary-800);
}

.review-main {
    flex: 1;
}

.review-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.review-author {
    font-weight: 700;
    color: var(--color-gray-900);
    font-size: 1.05rem;
}

.review-vine-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--color-primary-50);
    color: var(--color-primary-700);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-primary-100);
}

.review-vine-badge svg {
    width: 0.875rem;
    height: 0.875rem;
}

.review-stars {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.15rem;
}

.star-icon {
    color: var(--color-gray-200);
    font-size: 1.1rem;
    line-height: 1;
}

.star-icon.fill {
    color: var(--color-star);
}

.review-headline {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.review-date-loc {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: 0.25rem;
}

.review-specs {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.verified-text {
    color: var(--color-verified);
    font-weight: 600;
}

.review-body {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.6;
}

/* Attachments */
.review-attachments {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.attachment-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
}

.attachment-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.attachment-hover {
    position: absolute;
    inset: 0;
    background: rgba(4, 120, 87, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition-base);
}

.attachment-hover svg {
    width: 1.5rem;
    height: 1.5rem;
}

.attachment-thumb:hover img {
    transform: scale(1.1);
}

.attachment-thumb:hover .attachment-hover {
    opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-primary-900);
    color: var(--color-primary-100);
    position: relative;
    margin-top: auto;
}

.footer-wave-top {
    position: absolute;
    top: -1px; /* fix rendering gap */
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='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' fill='%23f4fbfa'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-content-wrapper {
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary-400);
}

.footer-desc {
    color: var(--color-primary-200);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: var(--color-primary-200);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-nav a svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.footer-nav a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-nav a:hover svg {
    color: var(--color-primary-400);
}

.footer-bottom {
    text-align: center;
    color: var(--color-primary-300);
    font-size: 0.875rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
    100% { transform: translate(-10px, 30px) scale(0.95); }
}

@keyframes pulseBadge {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

@keyframes spinRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}