@charset "UTF-8";

/* 
========================================================================
  BIGELOW TEA - CUSTOM CSS (EXTENSIVE)
  Focus: Visual Uniqueness, Deep Styling, CSS-only Interactivity, Green Palette
========================================================================
*/

/* --- 1. CSS VARIABLES (THEME & SPACING) --- */
:root {
    /* Main Green Palette */
    --clr-green-50:  #f0fdf4;
    --clr-green-100: #dcfce7;
    --clr-green-200: #bbf7d0;
    --clr-green-300: #86efac;
    --clr-green-400: #4ade80;
    --clr-green-500: #22c55e;
    --clr-green-600: #16a34a;
    --clr-green-700: #15803d;
    --clr-green-800: #166534;
    --clr-green-900: #14532d;
    
    /* Neutrals */
    --clr-white: #ffffff;
    --clr-gray-50: #f9fafb;
    --clr-gray-100: #f3f4f6;
    --clr-gray-200: #e5e7eb;
    --clr-gray-300: #d1d5db;
    --clr-gray-400: #9ca3af;
    --clr-gray-500: #6b7280;
    --clr-gray-600: #4b5563;
    --clr-gray-700: #374151;
    --clr-gray-800: #1f2937;
    --clr-gray-900: #111827;

    /* Accents (Stars, Badges) */
    --clr-accent: #f59e0b; /* Amber for stars */
    --clr-accent-light: #fcd34d;
    --clr-verified: #059669; /* Emerald for verified purchase */

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-green-600) 0%, var(--clr-green-800) 100%);
    --grad-light: linear-gradient(180deg, var(--clr-white) 0%, var(--clr-green-50) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -2px rgba(22, 101, 52, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(22, 101, 52, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(22, 101, 52, 0.15), 0 0 20px rgba(22, 163, 74, 0.05);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.04);
    --shadow-btn: 0 10px 25px -5px rgba(22, 163, 74, 0.4), 0 8px 10px -6px rgba(22, 163, 74, 0.2);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    
    /* Spacing & Radii */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --container-max: 1280px;
    
    /* Transitions */
    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.theme-green {
    font-family: var(--font-sans);
    background-color: var(--clr-green-50);
    color: var(--clr-gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- 3. GLOBAL ANIMATIONS & BACKGROUNDS --- */
@keyframes floatUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulseSoft {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

@keyframes blobMotion {
    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 {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 0.5; }
    100% { left: 200%; opacity: 0; }
}

/* Ambient Background Shapes */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--clr-green-50);
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobMotion 20s infinite alternate ease-in-out;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--clr-green-200);
}

.shape-2 {
    top: 40%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--clr-green-100);
    animation-delay: -5s;
}

.shape-3 {
    bottom: -20%;
    left: 20%;
    width: 60vw;
    height: 40vw;
    background: var(--clr-green-200);
    animation-delay: -10s;
}

/* --- 4. HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--trans-normal);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-green-800);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--clr-green-100);
    border-radius: 8px;
    color: var(--clr-green-600);
}

.brand-icon svg {
    width: 20px;
    height: 20px;
}

.header-title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--clr-green-900);
    font-size: 1.1rem;
    text-align: center;
    flex: 1 1 auto;
    min-width: 250px;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-green-700);
    background: var(--clr-green-50);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--clr-green-200);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--clr-green-500);
    border-radius: 50%;
    position: relative;
}
.badge-pulse::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: pulseSoft 2s infinite;
}

.header-progress-bar {
    height: 2px;
    background: var(--grad-primary);
    width: 100%;
    transform-origin: left;
    opacity: 0.8;
}

/* --- 5. MAIN STRUCTURE --- */
.main-wrapper {
    width: 100%;
    overflow: hidden;
}

.container-custom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* --- 6. HERO / PRODUCT CARD --- */
.product-hero {
    animation: floatUp 0.8s ease-out forwards;
}

.product-card-wrapper {
    position: relative;
    padding: 1px; /* For gradient border effect */
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(220, 252, 231, 0.5) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

/* Decorative Card Corners */
.card-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--clr-green-300);
    z-index: -1;
    opacity: 0.5;
    transition: var(--trans-normal);
}
.product-card-wrapper:hover .card-corner {
    width: 40px;
    height: 40px;
    opacity: 1;
    border-color: var(--clr-green-400);
}
.top-left { top: -10px; left: -10px; border-right: none; border-bottom: none; border-top-left-radius: 12px; }
.top-right { top: -10px; right: -10px; border-left: none; border-bottom: none; border-top-right-radius: 12px; }
.bottom-left { bottom: -10px; left: -10px; border-right: none; border-top: none; border-bottom-left-radius: 12px; }
.bottom-right { bottom: -10px; right: -10px; border-left: none; border-top: none; border-bottom-right-radius: 12px; }


.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: calc(var(--radius-xl) - 1px);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 150px;
    background: linear-gradient(180deg, var(--clr-green-50) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 0 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* --- 7. PURE CSS GALLERY (LEFT COLUMN) --- */
.product-gallery-section {
    position: sticky;
    top: 100px;
}

.gallery-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-main-view {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    /* Frame border setup */
    border: 1px solid var(--clr-green-100);
}

.main-view-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--clr-green-100) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.gallery-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.slide-inner {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 1.5rem; /* Inner spacing for frame effect */
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(22, 163, 74, 0.03), transparent);
    z-index: 3;
    pointer-events: none;
}

/* Decorative Frame Lines */
.frame-decor {
    position: absolute;
    background: var(--clr-green-200);
    z-index: 4;
    opacity: 0.5;
}
.line-t { top: 1rem; left: 1rem; right: 1rem; height: 1px; }
.line-b { bottom: 1rem; left: 1rem; right: 1rem; height: 1px; }
.line-l { top: 1rem; bottom: 1rem; left: 1rem; width: 1px; }
.line-r { top: 1rem; bottom: 1rem; right: 1rem; width: 1px; }


/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail-label {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    padding: 3px;
    background: var(--clr-gray-100);
    transition: var(--trans-normal);
}

.thumb-inner {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--clr-white);
    border-radius: calc(var(--radius-md) - 3px);
    overflow: hidden;
    position: relative;
}

.thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-label:hover {
    background: var(--clr-green-300);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.2);
}

.thumbnail-label:hover img {
    transform: scale(1.1);
}

.thumb-highlight {
    position: absolute;
    inset: 0;
    border: 2px solid var(--clr-green-600);
    border-radius: calc(var(--radius-md) - 3px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* --- Pure CSS Logic for Gallery --- */
#photo-1:checked ~ .gallery-main-view .slide-1,
#photo-2:checked ~ .gallery-main-view .slide-2,
#photo-3:checked ~ .gallery-main-view .slide-3,
#photo-4:checked ~ .gallery-main-view .slide-4 {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

#photo-1:checked ~ .gallery-thumbnails .thumb-1,
#photo-2:checked ~ .gallery-thumbnails .thumb-2,
#photo-3:checked ~ .gallery-thumbnails .thumb-3,
#photo-4:checked ~ .gallery-thumbnails .thumb-4 {
    background: var(--grad-primary);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    transform: translateY(-4px);
}

#photo-1:checked ~ .gallery-thumbnails .thumb-1 .thumb-highlight,
#photo-2:checked ~ .gallery-thumbnails .thumb-2 .thumb-highlight,
#photo-3:checked ~ .gallery-thumbnails .thumb-3 .thumb-highlight,
#photo-4:checked ~ .gallery-thumbnails .thumb-4 .thumb-highlight {
    opacity: 1;
}

/* --- 8. PRODUCT INFO (RIGHT COLUMN) --- */
.product-info-section {
    display: flex;
    flex-direction: column;
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meta-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--clr-gray-500);
    background: var(--clr-gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.tag-herbal {
    color: var(--clr-green-800);
    background: var(--clr-green-100);
}

.product-h1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.h1-line {
    font-size: 1.25rem;
    color: var(--clr-gray-600);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.h1-highlight {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--clr-green-900);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: fit-content;
}
.h1-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--clr-green-200);
    z-index: -1;
    border-radius: 6px;
    opacity: 0.8;
}

.h1-sub {
    font-size: 1.5rem;
    color: var(--clr-green-700);
    font-weight: 600;
    margin-top: 0.25rem;
}

.product-reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-gray-200);
}

.stars {
    color: var(--clr-accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
}
.stars i { font-style: normal; }

.reviews-count {
    color: var(--clr-gray-600);
    font-size: 0.95rem;
    font-weight: 500;
}

.product-status-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, var(--clr-green-50), transparent);
    border-left: 4px solid var(--clr-green-500);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 2rem;
}

.status-icon {
    color: var(--clr-green-600);
    width: 20px;
    height: 20px;
}

.status-text {
    font-weight: 600;
    color: var(--clr-green-800);
    font-size: 0.95rem;
}

/* Description Lists */
.product-description-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.desc-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--trans-normal);
    border: 1px solid transparent;
}
.desc-item:hover {
    background: var(--clr-green-50);
    border-color: var(--clr-green-100);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.03);
    transform: translateX(5px);
}

.desc-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--clr-green-100);
    color: var(--clr-green-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(22, 163, 74, 0.1);
}

.desc-icon svg {
    width: 20px;
    height: 20px;
}

.desc-text {
    color: var(--clr-gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

.desc-title {
    display: block;
    font-weight: 700;
    color: var(--clr-gray-900);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

/* SEO Feature Box */
.seo-feature-box {
    position: relative;
    padding: 1.5rem;
    background: var(--clr-white);
    border: 1px dashed var(--clr-green-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-inner);
}

.seo-icon-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--clr-green-100) 0%, transparent 60%);
    opacity: 0.6;
    border-radius: 50%;
}

.seo-text {
    position: relative;
    z-index: 2;
    color: var(--clr-green-900);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.7;
}

.seo-text strong {
    color: var(--clr-green-700);
    background: var(--clr-green-100);
    padding: 0 0.25rem;
    border-radius: 4px;
}
.seo-text em {
    font-style: normal;
    border-bottom: 2px solid var(--clr-green-300);
}


/* --- 9. CTA SECTION --- */
.cta-banner {
    position: relative;
    margin: 4rem auto;
    max-width: var(--container-max);
    padding: 0 1.5rem;
}

.cta-background-elements {
    position: absolute;
    inset: 0 1.5rem;
    background: var(--grad-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(22, 101, 52, 0.3);
}

.cta-circle-1 {
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-circle-2 {
    position: absolute;
    bottom: -30%; left: -5%;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 10px);
}

.cta-container {
    position: relative;
    z-index: 10;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    color: var(--clr-white);
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-sub {
    color: var(--clr-green-100);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary-mega {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--clr-white);
    color: var(--clr-green-800);
    font-size: 1.25rem;
    font-weight: 800;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 -4px 0 rgba(226, 232, 240, 1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.btn-primary-mega:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), inset 0 -4px 0 rgba(203, 213, 225, 1);
    color: var(--clr-green-900);
}

.btn-primary-mega:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2), inset 0 2px 0 rgba(203, 213, 225, 1);
}

.btn-primary-mega:focus {
    outline: 4px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-primary-mega:hover .btn-icon {
    transform: translateX(5px);
}

/* Button Animations */
.btn-shine {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

.cta-secure-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-green-100);
    font-size: 0.9rem;
    font-weight: 500;
}
.cta-secure-note svg { width: 16px; height: 16px; opacity: 0.8; }


/* --- 10. REVIEWS SECTION (AMAZON STYLE BUT ELEVATED) --- */
.reviews-section {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--clr-gray-900);
    position: relative;
    display: inline-block;
}

.title-accent {
    position: absolute;
    top: -15px; left: -20px;
    width: 40px; height: 40px;
    background: var(--clr-green-200);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.reviews-subtitle {
    color: var(--clr-green-700);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    position: relative;
    border-radius: var(--radius-lg);
    transition: var(--trans-normal);
}

.review-card-bg {
    position: absolute;
    inset: 0;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--clr-gray-100);
    z-index: -1;
    transition: var(--trans-normal);
}

.review-item:hover .review-card-bg {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.08);
    border-color: var(--clr-green-100);
}

.review-layout {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
}

.review-sidebar {
    flex-shrink: 0;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 2px solid var(--clr-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed var(--clr-green-400);
    animation: rotateRing 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.review-item:hover .avatar-ring { opacity: 1; }

.review-main {
    flex-grow: 1;
}

.review-top-bar {
    margin-bottom: 0.25rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-gray-900);
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.stars-visual {
    color: var(--clr-accent);
    font-size: 1.1rem;
}
.star-full { font-style: normal; }

.review-headline {
    font-weight: 700;
    color: var(--clr-gray-900);
    font-size: 1.05rem;
}

.review-meta {
    font-size: 0.85rem;
    color: var(--clr-gray-500);
    margin-bottom: 0.5rem;
}

.review-specs {
    font-size: 0.85rem;
    color: var(--clr-gray-600);
    border-left: 2px solid var(--clr-gray-300);
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.review-purchase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-verified);
    margin-bottom: 1rem;
}
.badge-dot {
    width: 6px; height: 6px; background: var(--clr-verified); border-radius: 50%;
}

.review-body {
    color: var(--clr-gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* Attachment styling */
.review-attachment {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--clr-gray-200);
}

.attachment-label {
    font-size: 0.8rem;
    color: var(--clr-gray-500);
    margin-bottom: 0.5rem;
}

.attachment-frame {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--clr-gray-100);
    cursor: pointer;
}
.attachment-frame img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s ease;
}
.attachment-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.1); opacity: 0; transition: opacity 0.3s ease;
}
.attachment-frame:hover img { transform: scale(1.1); }
.attachment-frame:hover .attachment-overlay { opacity: 1; }

.review-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-green-200), transparent);
    width: 80%;
    margin: 0 auto;
}

/* --- 11. FOOTER --- */
.site-footer {
    background: var(--clr-white);
    position: relative;
    margin-top: 4rem;
    padding-top: 2rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
}

.footer-decorative-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-primary);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--clr-green-900);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--clr-gray-600);
    max-width: 400px;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 700;
    color: var(--clr-gray-900);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list a {
    color: var(--clr-gray-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans-fast);
    font-weight: 500;
}
.footer-links-list a:hover {
    color: var(--clr-green-600);
    transform: translateX(5px);
}
.link-icon {
    color: var(--clr-green-400);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-bottom {
    background: var(--clr-gray-50);
    border-top: 1px solid var(--clr-gray-200);
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom-container p {
    color: var(--clr-gray-500);
    font-size: 0.9rem;
}

/* --- 12. RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Smaller Desktop (Max 1024px) */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-gallery-section {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    .product-card {
        padding: 2.5rem;
    }
    .h1-highlight {
        font-size: 3rem;
    }
    .cta-heading {
        font-size: 2.25rem;
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .header-title {
        font-size: 1rem;
    }
    .container-custom {
        padding: 2rem 1rem;
    }
    .product-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }
    .product-card-wrapper {
        border-radius: var(--radius-lg);
    }
    .card-corner {
        display: none; /* Simplify on mobile */
    }
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    .thumbnail-label {
        width: 65px;
        height: 65px;
    }
    .h1-highlight {
        font-size: 2.5rem;
    }
    .h1-sub {
        font-size: 1.2rem;
    }
    .product-meta {
        flex-wrap: wrap;
    }
    .desc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
        background: var(--clr-gray-50);
    }
    .cta-container {
        padding: 4rem 1.5rem;
    }
    .cta-heading {
        font-size: 2rem;
    }
    .btn-primary-mega {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }
    .review-layout {
        flex-direction: column;
        padding: 1.5rem;
    }
    .review-sidebar {
        display: flex;
        justify-content: flex-start;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-desc {
        margin: 0 auto;
    }
    .footer-links-list {
        align-items: center;
    }
    .footer-links-list a:hover {
        transform: translateY(-2px); /* Vertical layout hover adjust */
    }
}

/* Small Mobile (Max 480px / 375px / 320px support) */
@media (max-width: 480px) {
    .h1-highlight {
        font-size: 2rem;
    }
    .thumbnail-label {
        width: 55px;
        height: 55px;
    }
    .gallery-thumbnails {
        flex-wrap: wrap;
    }
    .cta-background-elements {
        inset: 0;
        border-radius: 0;
    }
    .cta-banner {
        padding: 0;
        margin-top: 2rem;
    }
    .reviews-section {
        padding: 3rem 1rem;
    }
    .reviews-title {
        font-size: 2rem;
    }
    .review-stars-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .btn-text {
        font-size: 1rem;
    }
}