/* ==========================================
   DESIGN SYSTEM & CUSTOM VARIABLE TOKENS
   ========================================== */
:root {
    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Curated Light Theme Color Palette */
    --color-bg-darkest: #f8fafc; /* Slate 50 - clean off-white body background */
    --color-bg-darker: #ffffff;  /* Pure white for containers/cards */
    --color-bg-panel: rgba(255, 255, 255, 0.85); /* Transparent glass card */
    --color-bg-panel-hover: #ffffff;
    
    /* Vibrant Contrast Accents */
    --color-cyan: #0284c7; /* Sky 600 - premium contrasting blue */
    --color-cyan-glow: rgba(2, 132, 199, 0.15);
    --color-purple: #7c3aed; /* Violet 600 - contrasting purple */
    --color-purple-glow: rgba(124, 58, 237, 0.15);
    --color-success: #059669; /* Emerald 600 */
    --color-success-glow: rgba(5, 150, 105, 0.15);
    --color-danger: #dc2626; /* Red 600 */
    --color-warning: #eab308; /* Gold 500 */

    /* Text Colors */
    --color-text-white: #0f172a; /* Slate 900 - dark slate for headings */
    --color-text-primary: #334155; /* Slate 700 - charcoal body text */
    --color-text-secondary: #475569; /* Slate 600 - dark gray descriptions */
    --color-text-muted: #64748b; /* Slate 500 - caption text */

    /* Borders and Shadows */
    --border-glass: 1px solid rgba(15, 23, 42, 0.08);
    --border-glass-bright: 1px solid rgba(2, 132, 199, 0.25);
    --shadow-glass: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;

    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    /* Theme variables for component specific colors */
    --color-header-bg: rgba(255, 255, 255, 0.85);
    --color-close-btn-bg: #f1f5f9;
    --color-close-btn-hover: #e2e8f0;
    --color-img-container-bg: #f1f5f9;
    --about-media-bg: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --orb-opacity: 0.18;
}

[data-theme="dark"] {
    --color-bg-darkest: #0f172a; /* Slate 900 - dark background */
    --color-bg-darker: #1e293b;  /* Slate 800 - dark card bg */
    --color-bg-panel: rgba(30, 41, 59, 0.75); /* Transparent glass card */
    --color-bg-panel-hover: #1e293b;
    
    /* Vibrant Contrast Accents */
    --color-cyan: #38bdf8; /* Sky 400 - brighter blue for dark background */
    --color-cyan-glow: rgba(56, 189, 248, 0.25);
    --color-purple: #a78bfa; /* Violet 400 */
    --color-purple-glow: rgba(167, 139, 250, 0.25);
    --color-success: #34d399; /* Emerald 400 */
    --color-success-glow: rgba(52, 211, 153, 0.25);
    --color-danger: #f87171; /* Red 400 */
    --color-warning: #fbbf24; /* Amber 400 */

    /* Text Colors */
    --color-text-white: #ffffff; /* pure white for headings */
    --color-text-primary: #cbd5e1; /* Slate 300 - lighter text for readability */
    --color-text-secondary: #94a3b8; /* Slate 400 */
    --color-text-muted: #64748b; /* Slate 500 */

    /* Borders and Shadows */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-bright: 1px solid rgba(56, 189, 248, 0.4);
    --shadow-glass: 0 10px 30px -10px rgba(0, 0, 0, 0.4);

    /* Component Specific overrides */
    --color-header-bg: rgba(15, 23, 42, 0.85);
    --color-close-btn-bg: #334155;
    --color-close-btn-hover: #475569;
    --color-img-container-bg: #1e293b;
    --about-media-bg: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --orb-opacity: 0.12;
}

/* Smooth Theme Transitions */
body, header, .product-card, .glass-panel, footer, .cart-drawer, .product-modal, .input-text, .theme-selector-container, .whatsapp-dropdown, .about-media, .product-img-frame {
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-bg-darkest);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Background Ambient Orbs Wrapper to prevent shifting */
.glow-orbs-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* Background Ambient Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: var(--orb-opacity);
    pointer-events: none;
    animation: pulseOrbs 15s infinite alternate ease-in-out;
}

.orb-1 {
    top: 5%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-cyan) 0%, rgba(2, 132, 199, 0) 70%);
}

.orb-2 {
    top: 45%;
    left: -15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-purple) 0%, rgba(124, 58, 237, 0) 70%);
    animation-delay: 3.5s;
}

.orb-3 {
    bottom: 5%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-cyan) 0%, rgba(2, 132, 199, 0) 70%);
    animation-delay: 7s;
}

@keyframes pulseOrbs {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(4%, 5%); }
}

/* Typography Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    color: var(--color-text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ==========================================
   PROMOTIONAL TOP BANNERS
   ========================================== */
.promo-banner {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.825rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-banner {
    background: #0f172a; /* Deep charcoal */
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.secondary-banner {
    background: #f1f5f9; /* Soft gray */
    color: var(--color-cyan); /* Matching primary color */
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 0.8rem;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: var(--color-header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    position: relative;
}

[data-theme="dark"] .logo {
    color: #ffffff;
}

.logo-accent {
    color: inherit;
}



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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-cyan);
}

.header-icons-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Theme selector element styles */
.theme-selector-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-bg-panel);
    border: var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.95rem;
    box-shadow: var(--shadow-glass);
    cursor: pointer;
    gap: 0.5rem;
    min-width: 110px;
}

.theme-selector-container:hover {
    border-color: var(--color-cyan);
}

.theme-icon {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    pointer-events: none;
}

.theme-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
    pointer-events: none;
    user-select: none;
}

.theme-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

/* Style select options popup to inherit theme colors */
select option {
    background-color: var(--color-bg-darker);
    color: var(--color-text-white);
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    position: relative;
    padding: 0.25rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.icon-btn:hover {
    color: var(--color-cyan);
    transform: scale(1.08);
}

/* Cart badge trigger */
.cart-trigger {
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background: var(--color-purple);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 0 8px var(--color-purple-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   SLIDING CART DRAWER STYLING
   ========================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4); /* Slate tint overlay */
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: var(--color-bg-darker);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.12);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.close-cart-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.35rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-cart-btn:hover {
    color: var(--color-cyan);
}

.cart-drawer-body {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Empty cart state */
.empty-cart-message {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    color: var(--color-text-muted);
}

.empty-cart-message i {
    font-size: 3.5rem;
    color: rgba(15, 23, 42, 0.06);
}

.empty-cart-message p {
    font-size: 0.95rem;
}

/* Filled cart item row */
.cart-item-row {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: var(--color-bg-darkest); /* Slate 50 row background */
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.cart-item-thumb {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--color-bg-darker);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cart-item-details h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-white);
}

.cart-item-details .price {
    font-size: 0.85rem;
    color: var(--color-cyan);
    font-weight: 700;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

/* Quantity Adjusters */
.qty-adjuster {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 4px;
    padding: 2px;
}

.qty-adjuster button {
    background: none;
    border: none;
    color: var(--color-text-primary);
    width: 22px;
    height: 22px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-adjuster button:hover {
    color: var(--color-cyan);
}

.qty-adjuster span {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 20px;
    text-align: center;
}

.btn-delete-cart-item {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-delete-cart-item:hover {
    color: var(--color-danger);
}

.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--color-bg-darkest);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.subtotal-val {
    color: var(--color-cyan);
}

.shipping-info {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================
   HERO CAROUSEL / SLIDER
   ========================================== */
.hero-carousel-section {
    position: relative;
    width: 100%;
}

.carousel-container {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.75s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-backdrop {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(30px);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}

.slide-foreground {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    max-width: 600px;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.75s ease-in-out;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
}

.slide-tagline {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cyan);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
}

.slide-content h2 {
    font-size: 3.5rem;
    color: #ffffff; /* Keep white text over overlay images */
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6); /* Dark semi-transparent background for high contrast */
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 15px rgba(2, 132, 199, 0.3);
}

.carousel-control.prev { left: 2rem; }
.carousel-control.next { right: 2rem; }

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-indicators .indicator.active {
    background: var(--color-cyan);
    width: 22px;
    border-radius: 4px;
}

/* ==========================================
   TRUST FEATURES BAR
   ========================================== */
.trust-banner-section {
    background: var(--color-bg-darker); /* Pure white trust bar */
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.trust-item i {
    font-size: 1.15rem;
    color: var(--color-cyan);
}

/* ==========================================
   UTILITY & HELPER CLASSES
   ========================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-white);
}

.section-header p {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.glass-panel {
    background: var(--color-bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-panel:hover {
    background: var(--color-bg-panel-hover);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.12);
}

.highlight-border {
    border: var(--border-glass-bright);
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.08), var(--shadow-glass);
}

/* ==========================================
   BUTTONS STYLING
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.btn-outline {
    background: var(--color-bg-darker);
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--color-text-white);
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    color: var(--color-cyan);
}

.btn-secondary:hover {
    background: rgba(2, 132, 199, 0.15);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================
   PICK YOUR CATEGORY CAPSULES
   ========================================== */
.categories-capsule-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.category-capsule-card {
    flex: 1 1 300px;
    max-width: 340px;
    height: 300px;
    border-radius: 150px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.5rem;
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.category-capsule-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 70%);
    z-index: 1;
}

.category-capsule-card .capsule-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 85%;
}

.category-capsule-card h3 {
    font-size: 1.15rem;
    color: #ffffff; /* Keep capsule titles white for gradient readability */
    font-weight: 600;
}

.category-capsule-card:hover {
    transform: scale(1.03);
    border-color: var(--color-cyan);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
}

/* ==========================================
   STORE CATALOG SECTION ("THE MOST WANTED")
   ========================================== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--color-bg-darker);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.product-card:hover {
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.1);
}

.product-img-frame {
    width: 100%;
    aspect-ratio: 1.1;
    overflow: hidden;
    background: var(--color-img-container-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-img-frame img {
    transform: scale(1.05);
}

/* Product Badges */
.prod-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 5;
    letter-spacing: 0.05em;
}

.prod-badge.sold-out {
    background: #0f172a;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prod-badge.sale {
    background: var(--color-danger);
    color: #ffffff;
}

.product-meta {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.product-meta h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-cyan);
}

.price-old {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: var(--color-bg-darker); /* White background testimonials block */
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.verified-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.stars-row {
    color: #f59e0b;
    font-size: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 1.05rem;
    color: var(--color-text-primary);
}

.verified-badge {
    background: rgba(5, 150, 105, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(5, 150, 105, 0.2);
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--color-bg-darker);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.testimonial-img-wrapper {
    width: 100%;
    aspect-ratio: 1.25;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

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

.testimonial-info {
    padding: 1.5rem;
    color: #0f172a;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #475569;
    font-style: italic;
    min-height: 5.5rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    display: flex;
    gap: 0.15rem;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.reviewer-meta .name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
}

.reviewer-meta .checked-icon {
    color: #0284c7; /* Sky blue verified badge checkmark */
    font-size: 0.95rem;
}

.reviewed-product {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--color-bg-darker); /* Clean light footer to match theme requested */
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 340px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-bg-darker);
    border: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: rgba(2, 132, 199, 0.08);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--color-cyan-glow);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.9rem;
}

.footer-col ul a {
    color: var(--color-text-secondary);
}

.footer-col ul a:hover {
    color: var(--color-cyan);
}

.footer-col ul i {
    margin-right: 0.5rem;
    color: var(--color-cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-center {
    text-align: center;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--color-cyan);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .category-capsule-card {
        height: 250px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .estimator-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    
    .sim-sidebar {
        border-right: none;
        border-bottom: var(--border-glass);
    }
    
    .upload-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
        color: var(--color-text-white);
    }

    .carousel-container {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2.25rem;
    }

    .carousel-control {
        width: 38px;
        height: 38px;
    }

    .carousel-control.prev { left: 0.75rem; }
    .carousel-control.next { right: 0.75rem; }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .category-capsule-card {
        flex: 1 1 100%;
        max-width: 100%;
        border-radius: var(--radius-lg);
        height: 180px;
        padding-bottom: 1.5rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .form-row-grid {
        grid-template-columns: 1fr;
    }
    
    .telemetry-bar {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   TAB CONTENT SWITCHER VISIBILITY
   ========================================== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* ==========================================
   ABOUT US SECTION STYLING
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: center;
}

.about-content h3 {
    color: var(--color-cyan);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.about-content p {
    color: var(--color-text-primary);
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-media {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.about-media:hover .about-img {
    transform: scale(1.04);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================
   CONTACT US SECTION STYLING
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-form-container h3, .contact-info-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

.input-text {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-bg-darker);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.input-text::placeholder {
    color: #94a3b8;
}

.input-text:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px var(--color-cyan-glow);
}

.textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-subtext {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.35rem;
    color: var(--color-cyan);
    background: var(--color-cyan-glow);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.contact-info-item p, .contact-info-item a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.contact-info-item a:hover {
    color: var(--color-cyan);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #ffffff;
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.75rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

/* Green online status badge */
.whatsapp-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #059669; /* Active Green */
    border: 2px solid #ffffff;
    border-radius: 50%;
}

/* Dropdown styling */
.whatsapp-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 310px;
    background: var(--color-bg-darker);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.whatsapp-dropdown.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-dropdown-header {
    background: #25d366;
    color: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.whatsapp-dropdown-header i {
    font-size: 2rem;
}

.whatsapp-dropdown-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.whatsapp-dropdown-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.whatsapp-dropdown-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.whatsapp-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--color-bg-darkest);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.whatsapp-contact-item:hover {
    background-color: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-details h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.contact-details span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.whatsapp-contact-item i {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.whatsapp-contact-item:hover i {
    color: #25d366;
}

/* ==========================================
   FAQ SECTION STYLING
   ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--color-bg-darker);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(2, 132, 199, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-cyan);
}

.faq-question i {
    font-size: 1rem;
    color: var(--color-text-muted);
    transition: transform var(--transition-smooth), color var(--transition-fast);
}

.faq-question:hover i {
    color: var(--color-cyan);
}

/* Accordion expand/collapse transition using max-height */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc; /* Subtle light background for active answers */
}

.faq-answer-content {
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-primary);
}

.faq-answer strong {
    color: var(--color-text-white);
}

/* Active FAQ Item adjustments */
.faq-item.active {
    border-color: var(--color-cyan);
    box-shadow: 0 10px 30px var(--color-cyan-glow);
}

.faq-item.active .faq-question {
    color: var(--color-cyan);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-cyan);
}

/* ==========================================
   PRODUCT DETAILS MODAL
   ========================================== */
.product-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.product-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 860px;
    background: var(--color-bg-darker);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.product-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-close-btn-bg);
}

.close-modal-btn:hover {
    color: var(--color-cyan);
    background: var(--color-close-btn-hover);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1rem;
}

.product-modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-main-img-container {
    width: 100%;
    aspect-ratio: 1.1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-img-container-bg);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease-in-out;
}

.modal-thumbnails-container {
    display: flex;
    gap: 0.75rem;
}

.modal-thumb {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--color-bg-darker);
    border: 1px solid rgba(15, 23, 42, 0.12);
    cursor: pointer;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.modal-thumb:hover, .modal-thumb.active {
    border-color: var(--color-cyan);
    transform: scale(1.04);
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-modal-info h3 {
    font-size: 1.45rem;
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text-white);
}

.modal-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .product-modal {
        padding: 1.75rem;
        max-width: 500px;
    }
    
    .product-modal-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================
   SUCCESS MODAL STYLING
   ========================================== */
.success-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 400px;
    background: var(--color-bg-darker);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    z-index: 3001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.25rem;
    text-align: center;
}

.success-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.success-icon-wrapper {
    font-size: 3.5rem;
    color: var(--color-success);
    animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); text-shadow: 0 0 15px var(--color-success-glow); }
    100% { transform: scale(1); }
}

.success-modal h3 {
    font-size: 1.35rem;
    color: var(--color-text-white);
}

.success-modal p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

@keyframes pulseGreen {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Ensure the Zookies poster logo/branding is fully visible without crop for all current and future Zookies */
.product-card[data-category*="zookies"] .product-img-frame img {
    object-fit: contain;
    padding: 0.25rem;
}

/* Ensure the Tirupati Venkateswara Swamy model card and modal gallery images are fully visible without crop */
.product-card#prod-tirupati .product-img-frame img {
    object-fit: contain;
    padding: 0.25rem;
}

.product-modal[data-active-product="tirupati"] .modal-main-img-container img,
.product-modal[data-active-product="tirupati"] .modal-thumb {
    object-fit: contain;
    padding: 0.25rem;
}

/* ==========================================
   TERMS & POLICIES MODAL STYLING
   ========================================== */
.terms-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.terms-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.terms-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 600px;
    background: var(--color-bg-darker);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    z-index: 3001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.terms-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.terms-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.terms-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--color-text-white);
}

.terms-modal-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    transition: color var(--transition-fast);
}

.terms-modal-close:hover {
    color: var(--color-cyan);
}

.terms-modal-body {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: left;
}

.terms-modal-body h4 {
    color: var(--color-cyan);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.terms-modal-body h4:first-of-type {
    margin-top: 0;
}

.terms-modal-body p {
    margin-bottom: 1rem;
}

.terms-modal-body p:last-child {
    margin-bottom: 0;
}

.terms-modal-body::-webkit-scrollbar {
    width: 6px;
}

.terms-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.terms-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.terms-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

@media (max-width: 768px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center;
    }
}

/* ==========================================
   REVIEWS SECTION STYLING
   ========================================== */
.reviews-section {
    padding: 5rem 0;
}

.reviews-summary-wrapper {
    margin-bottom: 3rem;
}

.reviews-stats-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
}

.rating-huge-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 3rem;
}

.rating-huge-num {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.rating-huge-stars {
    color: var(--color-warning);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.rating-huge-count {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.rating-bars-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.rating-bar-label {
    width: 60px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

[data-theme="dark"] .rating-bar-bg {
    background: rgba(255, 255, 255, 0.08);
}

.rating-bar-fill {
    height: 100%;
    background: #94a3b8;
    border-radius: 4px;
    transition: width var(--transition-fast), background var(--transition-fast);
}

[data-theme="dark"] .rating-bar-fill {
    background: #475569;
}

.rating-bar-fill.highest {
    background: var(--color-warning);
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.45);
}

.rating-bar-percent {
    width: 35px;
    text-align: right;
    color: var(--color-text-secondary);
}

.reviews-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.15rem;
}

.reviewer-location {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.review-stars {
    color: var(--color-warning);
    font-size: 0.9rem;
}

.review-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.review-product-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-cyan);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.review-date {
    color: var(--color-text-secondary);
    margin-left: auto;
}

.review-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    flex-grow: 1;
}

/* Review Submission Form Styles */
.write-review-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 2.5rem;
}

.write-review-container.active {
    max-height: 1000px;
}

.write-review-form {
    padding: 2.5rem;
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    margin-top: 0.25rem;
}

.star-rating-input i.active {
    color: var(--color-warning);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
    .reviews-stats-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-huge-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    .reviews-actions-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PROMO DISCOUNT MODAL STYLING
   ========================================== */
.promo-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.promo-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 420px;
    background: var(--color-bg-darker);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px var(--color-cyan-glow);
    z-index: 4001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem;
    text-align: center;
}

.promo-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.close-promo-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast), background-color var(--transition-fast);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-close-btn-bg);
}

.close-promo-btn:hover {
    color: var(--color-cyan);
    background: var(--color-close-btn-hover);
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.promo-badge {
    background: var(--color-cyan-glow);
    color: var(--color-cyan);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.promo-content h2 {
    font-size: 1.65rem;
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
}

.promo-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

.promo-text strong {
    color: var(--color-cyan);
    font-weight: 700;
}

.promo-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cyan);
    display: block;
    margin: 0.5rem 0;
    text-shadow: 0 0 10px var(--color-cyan-glow);
}

.promo-counter-container {
    background: rgba(15, 23, 42, 0.03);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

[data-theme="dark"] .promo-counter-container {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}






