/*
Theme Name: AI Bridge Premium Theme
Version: 4.0.0
Description: Farmacia Mundial GT - Premium pharmacy theme with AI
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Colors */
    --color-primary: #059669;
    --color-primary-light: #10b981;
    --color-primary-dark: #047857;
    --color-secondary: #0ea5e9;
    --color-accent: #8b5cf6;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    
    /* Neutrals */
    --color-ink: #0f172a;
    --color-ink-light: #334155;
    --color-muted: #64748b;
    --color-subtle: #94a3b8;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    /* Backgrounds */
    --bg-page: #f8fafc;
    --bg-elevated: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-accent: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 50%, #faf5ff 100%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(5,150,105,0.15) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 4px 12px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
    --shadow-xl: 0 24px 60px rgba(15,23,42,0.16);
    --shadow-glow: 0 0 40px rgba(5,150,105,0.2);
    --shadow-card: 0 1px 3px rgba(15,23,42,0.04), 0 6px 16px rgba(15,23,42,0.06);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-sans);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-ink);
    background: var(--bg-page);
    overflow-x: hidden;
}

/* Page background decoration */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: -1;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-ink);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--color-ink-light);
    line-height: 1.7;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--color-muted);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
}

/* Grid systems */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 4px 14px rgba(5,150,105,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 24px rgba(5,150,105,0.4);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--color-ink);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--color-ink);
    color: white;
}

.btn-dark:hover {
    background: var(--color-ink-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-ink);
}

.btn-ghost:hover {
    background: var(--bg-subtle);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border);
}

.card-glass {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-featured {
    position: relative;
    overflow: hidden;
}

.card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(248,250,252,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    height: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-xl);
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-ink-light);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.cart-icon:hover {
    background: var(--bg-subtle);
}

.cart-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-ink);
    stroke-width: 1.5;
    fill: none;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    padding: 0 5px;
}

.ai-chat-trigger {
    background: var(--color-ink);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
}

.ai-chat-trigger:hover {
    background: var(--color-ink-light);
    transform: translateY(-1px);
}

.ai-chat-trigger .pulse {
    width: 8px;
    height: 8px;
    background: var(--color-primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-ink);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-links a {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .nav-links a:hover {
        background: var(--bg-subtle);
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
    background: var(--bg-accent);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-ink-light);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(5,150,105,0.2);
    z-index: -1;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.ai-assistant-card {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.ai-assistant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--gradient-primary);
    opacity: 0.05;
}

.assistant-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    position: relative;
}

.assistant-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

.assistant-info h3 {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.assistant-info p {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.assistant-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}

.assistant-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.assistant-preview {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.chat-bubble.bot {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation-delay: 0.3s;
}

.chat-bubble:nth-child(3) { animation-delay: 0.6s; }

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

/* Floating elements */
.floating-badge {
    position: absolute;
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 20%;
    right: -20px;
}

.floating-badge.badge-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .floating-badge {
        display: none;
    }
}

/* ============================================
   FEATURES SECTION (Kits)
   ============================================ */
.features-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    transition: transform var(--transition-base);
    box-shadow: 0 4px 12px rgba(5,150,105,0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.feature-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOYALTY SECTION
   ============================================ */
.loyalty-section {
    background: var(--bg-accent);
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.loyalty-card {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.loyalty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.loyalty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
}

.loyalty-icon svg {
    width: 100%;
    height: 100%;
}

.loyalty-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.loyalty-card p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.loyalty-badge {
    display: inline-block;
    background: var(--bg-subtle);
    color: var(--color-ink-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.loyalty-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .loyalty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .loyalty-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--color-border-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.product-card {
    background: var(--bg-page);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-ink);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.product-badge.best {
    background: var(--color-warning);
}

.product-badge.sale {
    background: var(--color-danger);
}

.product-image {
    aspect-ratio: 1;
    background: var(--bg-subtle);
    display: grid;
    place-items: center;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-placeholder {
    font-size: 3rem;
    opacity: 0.5;
}

.product-info {
    padding: var(--space-lg);
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.product-category {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-rating {
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating .stars {
    color: var(--color-warning);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.product-price-old {
    font-size: 0.875rem;
    color: var(--color-subtle);
    text-decoration: line-through;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-add-cart {
    width: 100%;
    background: var(--color-ink);
    color: white;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-add-cart:hover {
    background: var(--color-primary);
}

.catalog-cta {
    text-align: center;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-ink);
    font-weight: 600;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-catalog:hover {
    color: var(--color-primary);
    background: var(--bg-subtle);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HEALTH TIPS SECTION
   ============================================ */
.health-tips-section {
    background: var(--bg-page);
}

.health-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.health-tip-card {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.health-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tip-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.tip-category {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.health-tip-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.health-tip-card p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.tip-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tip-link:hover {
    gap: 8px;
}

@media (max-width: 968px) {
    .health-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .health-tips-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.cta-box h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: 1.0625rem;
}

.btn-cta-large {
    background: white;
    color: var(--color-ink);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
}

.btn-cta-large:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-ink);
    color: white;
    padding-top: var(--space-4xl);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col:first-child {
    padding-right: var(--space-2xl);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    color: rgba(255,255,255,0.5);
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-contact li,
.footer-hours li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.ai-available {
    color: var(--color-primary-light) !important;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-credits {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col:first-child {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.site-main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: var(--bg-accent);
    border-bottom: 1px solid var(--color-border-light);
}

.page-title-main {
    margin-bottom: var(--space-sm);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-muted);
}

.page-breadcrumb a:hover {
    color: var(--color-primary);
}

.page-content {
    padding: var(--space-3xl) 0;
}

.page-content-wrapper {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

/* ============================================
   WOOCOMMERCE: SHOP
   ============================================ */
.shop-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: var(--bg-accent);
    border-bottom: 1px solid var(--color-border-light);
}

.shop-title {
    margin-bottom: var(--space-sm);
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.woocommerce-result-count {
    color: var(--color-muted);
    font-size: 0.875rem;
    margin: 0;
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    padding: 10px 36px 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--bg-elevated);
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    float: none;
    transition: all var(--transition-base);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
}

.woocommerce ul.products li.product img {
    margin: 0;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-md) var(--space-sm);
    color: var(--color-ink);
}

.woocommerce ul.products li.product .star-rating {
    margin: 0 var(--space-md) var(--space-sm);
    font-size: 0.75rem;
}

.woocommerce ul.products li.product .price {
    padding: 0 var(--space-md) var(--space-md);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.woocommerce ul.products li.product .price del {
    color: var(--color-subtle);
    font-size: 0.875rem;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--color-primary);
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-danger);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin: 0;
    min-width: auto;
    min-height: auto;
    line-height: 1;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: block;
    width: calc(100% - var(--space-lg));
    margin: 0 var(--space-sm) var(--space-md);
    background: var(--color-ink);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--transition-fast);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: var(--color-primary);
}

/* Pagination */
.woocommerce-pagination {
    margin-top: var(--space-2xl);
    text-align: center;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    gap: var(--space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--bg-elevated);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
    transition: all var(--transition-fast);
}

.woocommerce-pagination .page-numbers li a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.woocommerce-pagination .page-numbers li .current {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: white;
}

/* ============================================
   WOOCOMMERCE: SINGLE PRODUCT
   ============================================ */
.product-hero {
    padding: var(--space-2xl) 0;
    background: var(--bg-accent);
    border-bottom: 1px solid var(--color-border-light);
}

.product-hero-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-detail {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.woocommerce div.product {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

.woocommerce div.product div.images {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.woocommerce div.product p.price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--color-ink-light);
    margin-bottom: var(--space-xl);
}

.woocommerce div.product form.cart {
    margin-bottom: var(--space-xl);
}

.woocommerce div.product form.cart .quantity .qty {
    width: 80px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1rem;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}

/* ============================================
   WOOCOMMERCE: CART
   ============================================ */
.woocommerce-cart .woocommerce {
    padding: var(--space-2xl) 0;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
}

.woocommerce-cart table.shop_table {
    border: none;
}

.woocommerce-cart table.shop_table th {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-cart table.shop_table td {
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
    vertical-align: middle;
}

.woocommerce-cart .product-thumbnail img {
    width: 80px;
    border-radius: var(--radius-md);
}

.woocommerce-cart .product-name a {
    font-weight: 600;
    color: var(--color-ink);
}

.woocommerce-cart .product-name a:hover {
    color: var(--color-primary);
}

.woocommerce-cart .quantity .qty {
    width: 70px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.woocommerce-cart .cart_totals table {
    border: none;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-ink);
    border-bottom: none;
}

.woocommerce-cart .wc-proceed-to-checkout a {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    margin-top: var(--space-lg);
    transition: all var(--transition-base);
}

.woocommerce-cart .wc-proceed-to-checkout a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}

.woocommerce-cart .cart-empty {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.woocommerce-cart .return-to-shop a {
    background: var(--color-ink);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* ============================================
   WOOCOMMERCE: CHECKOUT
   ============================================ */
.woocommerce-checkout .woocommerce {
    padding: var(--space-2xl) 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: start;
}

.woocommerce-checkout .col2-set {
    grid-column: 1;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

.woocommerce-checkout h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.woocommerce-checkout .form-row {
    margin-bottom: var(--space-md);
}

.woocommerce-checkout .form-row label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    display: block;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}

.woocommerce-checkout #order_review_heading {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: var(--space-md);
    box-shadow: none;
}

.woocommerce-checkout #payment {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.woocommerce-checkout #place_order {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 16px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    margin-top: var(--space-lg);
    transition: all var(--transition-base);
}

.woocommerce-checkout #place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}

@media (max-width: 968px) {
    .woocommerce-checkout .woocommerce {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1;
    }
}

/* ============================================
   WOOCOMMERCE: MY ACCOUNT
   ============================================ */
.woocommerce-account .woocommerce {
    padding: var(--space-2xl) 0;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 2px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-ink-light);
    transition: all var(--transition-fast);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: var(--bg-subtle);
    color: var(--color-ink);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: var(--gradient-primary);
    color: white;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

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

/* ============================================
   WOOCOMMERCE: NOTICES
   ============================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.woocommerce-message {
    border-left: 4px solid var(--color-primary);
}

.woocommerce-info {
    border-left: 4px solid var(--color-secondary);
}

.woocommerce-error {
    border-left: 4px solid var(--color-danger);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   CHAT PAGE
   ============================================ */
.chat-page {
    padding: var(--space-3xl) 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-accent);
}

.chat-page-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.chat-page-header .section-title {
    margin-bottom: var(--space-sm);
}

.chat-page-container {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-height: 500px;
}

.chat-tips {
    max-width: 900px;
    margin: 0 auto;
}

.chat-tips h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    color: var(--color-ink);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.tip-card {
    background: var(--bg-elevated);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.tip-card p {
    font-size: var(--text-sm);
    color: var(--color-ink-light);
    margin: 0;
    font-style: italic;
}

/* Chat Widget Styles */
#botgt-chat-container {
    display: flex;
    flex-direction: column;
    height: 600px;
}

#botgt-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.botgt-message {
    max-width: 80%;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    animation: messageSlide 0.3s ease;
}

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

.botgt-message.user {
    align-self: flex-end;
    background: var(--gradient-primary);
    color: white;
    border-bottom-right-radius: var(--radius-sm);
}

.botgt-message.assistant {
    align-self: flex-start;
    background: var(--bg-subtle);
    color: var(--color-ink);
    border-bottom-left-radius: var(--radius-sm);
}

.botgt-message.assistant a {
    color: var(--color-primary);
    text-decoration: underline;
}

#botgt-chat-form {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-subtle);
    border-top: 1px solid var(--color-border);
}

#botgt-chat-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    transition: var(--transition-fast);
    outline: none;
}

#botgt-chat-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

#botgt-chat-form button {
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

#botgt-chat-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

#botgt-chat-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Typing indicator */
.botgt-typing {
    display: flex;
    gap: 4px;
    padding: var(--space-md);
}

.botgt-typing span {
    width: 8px;
    height: 8px;
    background: var(--color-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.botgt-typing span:nth-child(1) { animation-delay: -0.32s; }
.botgt-typing span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ============================================
   ENHANCED SHOP & PRODUCT STYLES
   ============================================ */

/* Shop Hero */
.shop-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: var(--bg-accent);
    text-align: center;
}

.shop-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.shop-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.shop-subtitle {
    font-size: var(--text-lg);
    color: var(--color-muted);
}

/* Shop Wrapper */
.shop-wrapper {
    padding: var(--space-2xl) 0 var(--space-4xl);
    background: var(--bg-page);
}

/* Category Pills */
.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.category-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-pill.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.category-pill .cat-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
}

.category-pill.active .cat-count {
    background: rgba(255,255,255,0.25);
}

/* Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.shop-results {
    color: var(--color-muted);
    font-size: var(--text-sm);
}

.shop-sorting select {
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    background: var(--bg-elevated);
    cursor: pointer;
    min-width: 200px;
}

/* Products Grid - Custom */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Product Card - Enhanced */
.product-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badges {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.sale {
    background: var(--color-danger);
    color: white;
}

.product-badge.featured {
    background: var(--color-warning);
    color: white;
}

/* Product Image */
.product-image-link {
    display: block;
    text-decoration: none;
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-subtle);
}

/* Product Info */
.product-info {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: var(--text-xs);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-title a {
    color: var(--color-ink);
    text-decoration: none;
    transition: var(--transition-fast);
}

.product-title a:hover {
    color: var(--color-primary);
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .star {
    font-size: 14px;
}

.product-rating .star.filled {
    color: var(--color-warning);
}

.product-rating .star.half {
    color: var(--color-warning);
    opacity: 0.6;
}

.product-rating .star.empty {
    color: var(--color-border);
}

.product-rating .rating-count {
    font-size: var(--text-xs);
    color: var(--color-muted);
}

/* Price Row */
.product-price-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    margin-top: auto;
}

.product-price-row .price-old,
.product-price-row del {
    font-size: var(--text-sm);
    color: var(--color-muted);
    text-decoration: line-through;
}

.product-price-row .price-current {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
}

.product-price-row .price-current del {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.product-price-row .price-current ins {
    text-decoration: none;
    font-weight: 700;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--space-sm);
}

.product-actions .button,
.product-actions a.button,
.product-actions .add_to_cart_button {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.product-actions .button:hover,
.product-actions a.button:hover,
.product-actions .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.product-actions .btn-quick-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: var(--bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-ink-light);
    transition: var(--transition-fast);
}

.product-actions .btn-quick-view:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Shop Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.shop-pagination ul {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-sm);
    border-radius: var(--radius-lg);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    background: var(--bg-elevated);
    border: 1px solid var(--color-border);
    color: var(--color-ink-light);
}

.shop-pagination .page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.shop-pagination .page-numbers.current {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
}

.no-products-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.no-products-found h2 {
    font-family: var(--font-display);
    margin-bottom: var(--space-sm);
}

.no-products-found p {
    color: var(--color-muted);
    margin-bottom: var(--space-xl);
}

/* Shop CTA */
.shop-cta {
    padding: var(--space-2xl) 0;
    background: var(--bg-subtle);
}

.shop-cta .cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.shop-cta .cta-content h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.shop-cta .cta-content p {
    color: var(--color-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .shop-cta .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */

.product-single {
    padding: var(--space-xl) 0 var(--space-4xl);
    background: var(--bg-page);
}

/* Breadcrumb */
.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-2xl);
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.product-breadcrumb a {
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.product-breadcrumb a:hover {
    color: var(--color-primary);
}

.product-breadcrumb .sep {
    color: var(--color-subtle);
}

.product-breadcrumb .current {
    color: var(--color-ink);
    font-weight: 500;
}

/* Product Main Layout */
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 968px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-gallery .product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 10;
}

.gallery-main {
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-card);
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.product-placeholder-large {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    color: var(--color-subtle);
}

.gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
}

.gallery-thumbs .thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-elevated);
    transition: var(--transition-fast);
    padding: 0;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    border-color: var(--color-primary);
}

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

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
}

.product-category-label {
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.product-rating-large .stars {
    display: flex;
    gap: 2px;
}

.product-rating-large .star {
    font-size: 18px;
}

.product-rating-large .star.filled {
    color: var(--color-warning);
}

.product-rating-large .star.empty {
    color: var(--color-border);
}

.product-rating-large .rating-text {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

/* Price Large */
.product-price-large {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.product-price-large .price-old {
    font-size: var(--text-lg);
    color: var(--color-muted);
    text-decoration: line-through;
}

.product-price-large .price-discount {
    padding: 4px 10px;
    background: var(--color-danger);
    color: white;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
}

.product-price-large .price-current {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
}

.product-price-large .price-current .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
}

/* Short Description */
.product-short-desc {
    margin-bottom: var(--space-lg);
    color: var(--color-ink-light);
    line-height: 1.7;
}

.product-short-desc p {
    margin-bottom: var(--space-sm);
}

/* Stock Status */
.product-stock {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.product-stock.in-stock {
    background: rgba(5, 150, 105, 0.1);
    color: var(--color-primary);
}

.product-stock.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

/* Add to Cart */
.product-add-to-cart {
    margin-bottom: var(--space-xl);
}

.product-add-to-cart form.cart {
    display: flex;
    gap: var(--space-md);
    align-items: stretch;
}

.product-add-to-cart .quantity {
    display: flex;
    align-items: center;
}

.product-add-to-cart .quantity .qty {
    width: 80px;
    height: 54px;
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 600;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
}

.product-add-to-cart .single_add_to_cart_button {
    flex: 1;
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-primary);
    color: white;
    font-size: var(--text-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-base);
}

.product-add-to-cart .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Trust Items */
.product-trust {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

.trust-item svg {
    color: var(--color-primary);
}

@media (max-width: 600px) {
    .product-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Meta Info */
.product-meta-info {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.product-meta-info p {
    margin-bottom: var(--space-xs);
}

.product-meta-info a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: var(--space-3xl);
}

.product-tabs-section .woocommerce-tabs {
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.product-tabs-section .woocommerce-tabs ul.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--bg-subtle);
}

.product-tabs-section .woocommerce-tabs ul.tabs li {
    margin: 0;
}

.product-tabs-section .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: var(--space-md) var(--space-xl);
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
}

.product-tabs-section .woocommerce-tabs ul.tabs li a:hover {
    color: var(--color-ink);
}

.product-tabs-section .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: var(--bg-elevated);
}

.product-tabs-section .woocommerce-tabs .panel {
    padding: var(--space-2xl);
}

.product-tabs-section .woocommerce-tabs .panel h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

/* Related Products */
.related.products {
    margin-top: var(--space-3xl);
}

.related.products > h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================================
   ENHANCED PRODUCT CARDS V2
   ============================================ */

/* Wishlist Button */
.product-wishlist {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 15;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(-5px);
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product-wishlist:hover {
    background: var(--color-danger);
}

.product-wishlist:hover .heart-icon {
    stroke: white;
}

.product-wishlist.active .heart-icon {
    fill: var(--color-danger);
    stroke: var(--color-danger);
}

/* Product Image Swap on Hover */
.product-image .secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image .primary-img {
    opacity: 0;
}

.product-card:hover .product-image .secondary-img {
    opacity: 1;
}

/* Overlay Actions */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.overlay-actions .btn-add-cart,
.overlay-actions .button {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: white;
    color: var(--color-ink);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.overlay-actions .btn-add-cart:hover,
.overlay-actions .button:hover {
    background: var(--color-primary);
    color: white;
}

.overlay-actions .btn-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: white;
    border-radius: var(--radius-lg);
    color: var(--color-ink);
    transition: var(--transition-fast);
}

.overlay-actions .btn-view:hover {
    background: var(--color-secondary);
    color: white;
}

/* Badge Enhancements */
.product-badge.new {
    background: var(--color-secondary);
    color: white;
}

.product-badge.out-of-stock {
    background: var(--color-muted);
    color: white;
}

/* Stock Indicator */
.stock-indicator {
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.stock-indicator.low {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
    animation: pulse 2s infinite;
}

/* Product Bottom Row */
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-top: auto;
}

/* Empty Stars */
.stars.empty-stars .star {
    color: var(--color-border);
}

.rating-count.no-reviews {
    font-style: italic;
    color: var(--color-subtle);
}

/* Mobile Add to Cart */
.product-actions-mobile {
    display: none;
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .product-overlay {
        display: none;
    }
    
    .product-actions-mobile {
        display: block;
    }
    
    .product-actions-mobile .button {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: var(--radius-lg);
        font-weight: 600;
    }
    
    .product-wishlist {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ENHANCED SHOP PAGE V2
   ============================================ */

/* Badge Glow */
.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.badge-glow svg {
    animation: float 3s ease-in-out infinite;
}

/* Title Icon */
.title-icon {
    font-size: 1.2em;
    margin-right: var(--space-xs);
}

/* Shop Search */
.shop-search {
    max-width: 500px;
    margin: var(--space-xl) auto 0;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: var(--space-xs);
    transition: var(--transition-fast);
}

.search-input-wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.search-icon {
    margin-left: var(--space-md);
    color: var(--color-muted);
}

.search-input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    font-size: var(--text-base);
    outline: none;
}

.search-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    transform: scale(1.02);
}

/* Quick Stats */
.shop-quick-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

.stat-item svg {
    color: var(--color-primary);
}

/* Categories Scroll */
.categories-scroll {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

/* Enhanced Pills */
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink-light);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.category-pill .pill-icon {
    font-size: 1.1em;
}

.category-pill .pill-count {
    background: var(--bg-subtle);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
}

.category-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-pill.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.category-pill.active .pill-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* View Toggle */
.shop-controls-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.view-toggle {
    display: flex;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 3px;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.view-btn:hover {
    color: var(--color-ink);
}

.view-btn.active {
    background: var(--bg-elevated);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* List View */
.products-grid.view-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.products-grid.view-list .product-card {
    flex-direction: row;
    max-width: 100%;
}

.products-grid.view-list .product-image {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.products-grid.view-list .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-grid.view-list .product-title {
    font-size: var(--text-lg);
}

.products-grid.view-list .product-overlay {
    display: none;
}

.products-grid.view-list .product-actions-mobile {
    display: block;
}

/* CTA Gradient */
.cta-gradient {
    background: var(--gradient-primary);
    color: white;
}

.cta-gradient .cta-content h2 {
    color: white;
}

.cta-gradient .cta-content p {
    color: rgba(255,255,255,0.9);
}

.cta-icon {
    font-size: 3rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    color: var(--color-primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    .shop-quick-stats {
        gap: var(--space-md);
    }
    
    .stat-item span {
        display: none;
    }
    
    .view-toggle {
        display: none;
    }
    
    .products-grid.view-list .product-card {
        flex-direction: column;
    }
    
    .products-grid.view-list .product-image {
        width: 100%;
    }
}

/* ============================================
   ENHANCED SINGLE PRODUCT PAGE V2
   ============================================ */

/* Main Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Gallery Section */
.product-gallery-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image-wrapper {
    position: relative;
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.main-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image:hover .gallery-main-img {
    transform: scale(1.02);
}

/* Product Badges Large */
.product-badges-large {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 10;
}

.product-badges-large span {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.badge-sale {
    background: var(--color-danger);
    color: white;
}

.badge-out {
    background: var(--color-muted);
    color: white;
}

.badge-low {
    background: var(--color-warning);
    color: var(--color-ink);
}

.badge-new {
    background: var(--color-secondary);
    color: white;
}

/* Zoom Trigger */
.zoom-trigger {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    z-index: 10;
}

.zoom-trigger:hover {
    background: var(--color-primary);
    color: white;
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
}

.thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-subtle);
    transition: var(--transition-fast);
    padding: 0;
}

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

.thumb:hover,
.thumb.active {
    border-color: var(--color-primary);
}

.thumb.active {
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

/* Product Info Section */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.product-meta-top {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.product-category-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-sku {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.product-title-large {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-ink);
    margin: 0;
}

/* Rating Large */
.product-rating-large {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.stars-display {
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

.write-review-link {
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-decoration: underline;
}

/* Price Large */
.product-price-large {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.product-price-large .original-price {
    font-size: var(--text-lg);
    color: var(--color-muted);
    text-decoration: line-through;
}

.product-price-large .sale-price,
.product-price-large .current-price {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-ink);
}

.product-price-large .sale-price {
    color: var(--color-danger);
}

.discount-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Stock Status Large */
.stock-status-large .in-stock,
.stock-status-large .out-of-stock {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
}

.stock-status-large .in-stock {
    color: var(--color-primary);
}

.stock-status-large .out-of-stock {
    color: var(--color-danger);
}

.stock-qty {
    font-weight: 400;
    color: var(--color-muted);
}

/* Short Description */
.product-short-desc {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-ink-light);
}

/* Delivery Estimate */
.delivery-estimate {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-lg);
}

.delivery-icon {
    color: var(--color-primary);
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.delivery-info strong {
    font-size: var(--text-sm);
    color: var(--color-ink);
}

.delivery-info span {
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

/* Add to Cart Form */
.cart-form {
    display: flex;
    gap: var(--space-md);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border: none;
    font-size: var(--text-xl);
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--color-primary);
    color: white;
}

.qty-input {
    width: 60px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: var(--text-base);
    font-weight: 600;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.btn-add-to-cart-large {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-add-to-cart-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    color: var(--color-ink-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.action-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.action-btn span {
    display: none;
}

@media (min-width: 480px) {
    .action-btn span {
        display: inline;
    }
}

/* Out of Stock Notice */
.out-of-stock-notice {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
}

.out-of-stock-notice p {
    color: var(--color-muted);
    margin-bottom: var(--space-md);
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-ink);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
}

/* Trust Badges Large */
.trust-badges-large {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.trust-badges-large .trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

.trust-badges-large .trust-badge svg {
    color: var(--color-primary);
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: var(--space-3xl);
}

.tabs-nav {
    display: flex;
    gap: var(--space-xs);
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
}

.tab-btn {
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-ink);
}

.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--bg-subtle);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
}

.tab-btn.active .tab-count {
    background: rgba(5, 150, 105, 0.1);
    color: var(--color-primary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.product-description {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-ink-light);
}

.product-description h2,
.product-description h3 {
    color: var(--color-ink);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.product-description ul,
.product-description ol {
    padding-left: var(--space-lg);
    margin: var(--space-md) 0;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:nth-child(even) {
    background: var(--bg-subtle);
}

.specs-table th,
.specs-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.specs-table th {
    width: 40%;
    font-weight: 600;
    color: var(--color-ink);
}

.specs-table td {
    color: var(--color-ink-light);
}

.no-specs {
    text-align: center;
    color: var(--color-muted);
    padding: var(--space-xl);
}

/* Related Products */
.related-products-section {
    margin-bottom: var(--space-3xl);
}

.related-products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.related-products-section h2 {
    margin: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-card {
    text-decoration: none;
}

/* Sticky Cart Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--color-border);
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.sticky-cart-bar.visible {
    transform: translateY(0);
}

.sticky-cart-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.sticky-product-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-weight: 700;
    color: var(--color-ink);
}

.sticky-stock {
    font-size: var(--text-sm);
}

.sticky-stock.in {
    color: var(--color-primary);
}

.sticky-stock.out {
    color: var(--color-danger);
}

.sticky-add-btn {
    padding: var(--space-sm) var(--space-xl);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
}

@media (min-width: 992px) {
    .sticky-cart-bar {
        display: none;
    }
}

/* Lightbox */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: var(--space-lg);
}

.lightbox-next {
    right: var(--space-lg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .product-gallery-section {
        position: static;
    }
    
    .product-title-large {
        font-size: var(--text-2xl);
    }
    
    .product-price-large .sale-price,
    .product-price-large .current-price {
        font-size: var(--text-2xl);
    }
    
    .cart-form {
        flex-direction: column;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .trust-badges-large {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================
   IMPROVED PLACEHOLDER STYLES
   ============================================ */

/* Product Placeholder */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #94a3b8;
    position: relative;
}

.product-placeholder svg {
    opacity: 0.5;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(148, 163, 184, 0.05) 10px,
        rgba(148, 163, 184, 0.05) 20px
    );
}

/* Hide woocommerce defaults if duplicated */
.woocommerce-result-count:nth-of-type(2),
.woocommerce-ordering:nth-of-type(2) {
    display: none !important;
}

/* Shop controls alignment fix */
.shop-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.shop-results {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.shop-sorting select {
    padding: var(--space-sm) var(--space-md);
    padding-right: var(--space-xl);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--bg-elevated);
    font-size: var(--text-sm);
    color: var(--color-ink);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.shop-sorting select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Animate on scroll base */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* Empty/no products placeholder fix */
.no-products-found {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
}

.no-products-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.no-products-found h2 {
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.no-products-found p {
    color: var(--color-muted);
    margin-bottom: var(--space-lg);
}

/* Shop pagination improvements */
.shop-pagination {
    margin-top: var(--space-2xl);
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.shop-pagination a,
.shop-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.shop-pagination a {
    background: var(--bg-elevated);
    color: var(--color-ink);
    border: 1px solid var(--color-border);
}

.shop-pagination a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.shop-pagination span.current {
    background: var(--color-primary);
    color: white;
}

/* ============================================
   SHOP CTA SECTION FIX
   ============================================ */

.shop-cta {
    padding: var(--space-3xl) 0;
    background: var(--bg-subtle);
}

.cta-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    background: var(--gradient-primary);
}

.cta-card .cta-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cta-card .cta-content {
    flex: 1;
}

.cta-card .cta-content h2 {
    font-size: var(--text-2xl);
    color: white;
    margin: 0 0 var(--space-sm) 0;
}

.cta-card .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-card .btn-white {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   ABOUT US PAGE (NOSOTROS)
   ============================================ */

.about-page {
    overflow-x: hidden;
}

/* Hero */
.about-hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.about-hero .hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.about-hero h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.about-hero .hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-ink-light);
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: var(--text-3xl);
    }
}

/* Mission & Vision */
.about-mission {
    padding: var(--space-3xl) 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.mission-card {
    background: var(--bg-elevated);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.mission-card h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.mission-card p {
    color: var(--color-ink-light);
    line-height: 1.8;
}

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

/* Values */
.about-values {
    padding: var(--space-3xl) 0;
    background: var(--bg-subtle);
}

.about-values .section-header {
    margin-bottom: var(--space-2xl);
}

.about-values .section-header h2 {
    font-size: var(--text-3xl);
    margin-top: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.value-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--color-ink-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Features */
.about-features {
    padding: var(--space-3xl) 0;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.features-content h2 {
    font-size: var(--text-3xl);
    margin: var(--space-md) 0;
}

.features-content > p {
    color: var(--color-ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
}

.feature-check {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
}

.feature-item strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.feature-item p {
    font-size: var(--text-sm);
    color: var(--color-ink-light);
    margin: 0;
}

.features-image {
    position: relative;
}

.image-card {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
    color: var(--color-primary);
}

.image-placeholder svg {
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.image-placeholder span {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 800;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-elevated);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top-left {
    top: var(--space-xl);
    left: var(--space-xl);
}

.floating-badge.bottom-right {
    bottom: var(--space-xl);
    right: var(--space-xl);
    animation-delay: 1.5s;
}

.floating-badge .emoji {
    font-size: 1.2em;
}

@media (max-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .features-image {
        order: -1;
    }
}

/* CTA */
.about-cta {
    padding: var(--space-3xl) 0;
    background: var(--bg-subtle);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.btn-outline-white {
    padding: var(--space-md) var(--space-xl);
    border: 2px solid white;
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-page {
    overflow-x: hidden;
}

/* Blog Hero */
.blog-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.03) 0%, rgba(16, 185, 129, 0.08) 100%);
}

.blog-hero .hero-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-2xl);
}

.blog-hero h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.blog-hero .hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-ink-light);
    line-height: 1.7;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
}

.blog-search {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-elevated);
    padding: var(--space-sm);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 500px;
}

.blog-search svg {
    margin-left: var(--space-sm);
    color: var(--color-muted);
}

.blog-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: var(--space-sm);
    font-size: var(--text-base);
    outline: none;
}

.blog-search .btn {
    padding: var(--space-sm) var(--space-lg);
}

/* Featured Post */
.featured-post {
    padding: var(--space-2xl) 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    background: var(--bg-elevated);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image .placeholder-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--color-primary);
}

.featured-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background: var(--color-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: var(--text-2xl);
    margin: var(--space-md) 0;
    line-height: 1.3;
}

.featured-content h2 a {
    color: inherit;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: var(--color-primary);
}

.featured-content > p {
    color: var(--color-ink-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.post-category {
    background: rgba(5, 150, 105, 0.1);
    color: var(--color-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.post-category:hover {
    background: var(--color-primary);
    color: white;
}

.post-date {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.post-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author span {
    font-size: var(--text-sm);
    font-weight: 500;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: var(--space-sm);
}

@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 280px;
    }
}

/* Posts Grid */
.blog-posts {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.blog-posts .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blog-posts .section-header h2 {
    margin-top: var(--space-sm);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.post-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image a {
    display: block;
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.post-image .placeholder-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--color-primary);
}

.post-category-tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: white;
    color: var(--color-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.post-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.post-content .post-meta {
    margin-bottom: var(--space-sm);
}

.read-time {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--color-muted);
}

.post-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.post-content h3 a {
    color: inherit;
    text-decoration: none;
}

.post-content h3 a:hover {
    color: var(--color-primary);
}

.post-content > p {
    font-size: var(--text-sm);
    color: var(--color-ink-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
}

.post-content .post-footer {
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.post-content .post-author img {
    width: 32px;
    height: 32px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    color: var(--color-muted);
}

.no-posts svg {
    opacity: 0.3;
    margin-bottom: var(--space-lg);
}

.no-posts h3 {
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1 {
        font-size: var(--text-3xl);
    }
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-ink);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.blog-pagination a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-pagination .current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Newsletter Section */
.blog-newsletter {
    padding: var(--space-3xl) 0;
    background: var(--bg-subtle);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    color: white;
}

.newsletter-content {
    max-width: 400px;
}

.newsletter-content .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-content h2 {
    font-size: var(--text-2xl);
    margin: var(--space-md) 0;
}

.newsletter-content p {
    opacity: 0.9;
    line-height: 1.7;
}

.newsletter-form {
    flex: 1;
    max-width: 450px;
}

.input-group {
    display: flex;
    gap: var(--space-sm);
    background: white;
    border-radius: var(--radius-full);
    padding: var(--space-xs);
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-base);
    outline: none;
    min-width: 0;
}

.input-group .btn {
    flex-shrink: 0;
}

.form-note {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-size: var(--text-xs);
    opacity: 0.8;
}

@media (max-width: 992px) {
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-note {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .input-group {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }
    
    .input-group .btn {
        width: 100%;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
    overflow-x: hidden;
}

/* Contact Hero */
.contact-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.03) 0%, rgba(16, 185, 129, 0.08) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.contact-hero .hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-ink-light);
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    padding: var(--space-2xl) 0;
    margin-top: calc(-1 * var(--space-xl));
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.method-card {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.method-card.highlight {
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    color: white;
}

.method-card.highlight .method-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.method-card.highlight p {
    opacity: 0.9;
}

.method-card.highlight .method-link {
    color: white;
}

.method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
}

.method-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.method-card p {
    font-size: var(--text-sm);
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.method-link {
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.method-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: var(--text-3xl);
    }
}

/* Contact Main */
.contact-main {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-elevated);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-header h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
}

.form-header p {
    color: var(--color-ink-light);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-form .form-group {
    margin-bottom: var(--space-lg);
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--bg-base);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.checkbox-group {
    margin-bottom: var(--space-xl) !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--color-primary);
}

.contact-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.form-success {
    text-align: center;
    padding: var(--space-2xl);
}

.success-icon {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.form-success h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--color-ink-light);
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-card {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.sidebar-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list span {
    color: var(--color-ink-light);
}

.schedule-list strong {
    color: var(--color-ink);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    color: var(--color-ink-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
}

.faq-teaser {
    text-align: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(16, 185, 129, 0.1));
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.faq-teaser p {
    color: var(--color-ink-light);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

/* Map Section */
.contact-map {
    margin-top: var(--space-xl);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2305966955' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card {
    background: var(--bg-elevated);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.map-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.map-card p {
    color: var(--color-ink-light);
    margin-bottom: var(--space-md);
}

.map-card .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ============================================
   WOOCOMMERCE CART STYLES
   ============================================ */

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    padding: var(--space-2xl) 0;
}

/* Cart Page Header */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Cart Table */
.woocommerce table.shop_table {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-elevated);
}

.woocommerce table.shop_table thead {
    background: var(--bg-subtle);
}

.woocommerce table.shop_table th {
    font-weight: 600;
    padding: var(--space-lg);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-ink-light);
    border: none;
}

.woocommerce table.shop_table td {
    padding: var(--space-lg);
    border: none;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}

.woocommerce table.shop_table .product-thumbnail {
    width: 100px;
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.woocommerce table.shop_table .product-name a {
    font-weight: 600;
    color: var(--color-ink);
    text-decoration: none;
    font-size: var(--text-base);
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--color-primary);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    font-weight: 600;
    color: var(--color-ink);
}

.woocommerce table.shop_table .product-remove a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee2e2;
    color: #ef4444 !important;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.woocommerce table.shop_table .product-remove a:hover {
    background: #ef4444;
    color: white !important;
}

/* Quantity Input */
.woocommerce .quantity {
    display: flex;
    align-items: center;
    gap: 0;
}

.woocommerce .quantity .qty {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 600;
    background: var(--bg-base);
}

.woocommerce .quantity .qty:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Cart Totals */
.woocommerce .cart-collaterals {
    margin-top: var(--space-2xl);
}

.woocommerce .cart_totals {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    max-width: 450px;
    margin-left: auto;
}

.woocommerce .cart_totals h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.woocommerce .cart_totals table {
    border: none;
}

.woocommerce .cart_totals th,
.woocommerce .cart_totals td {
    padding: var(--space-md) 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce .cart_totals tr.order-total th,
.woocommerce .cart_totals tr.order-total td {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: none;
    padding-top: var(--space-lg);
}

.woocommerce .wc-proceed-to-checkout {
    padding-top: var(--space-lg);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Update Cart Button */
.woocommerce table.shop_table td.actions {
    padding: var(--space-lg);
}

.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg-subtle);
    color: var(--color-ink);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce input[name="update_cart"]:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.woocommerce button[name="update_cart"]:disabled,
.woocommerce input[name="update_cart"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Coupon */
.woocommerce .coupon {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.woocommerce .coupon label {
    display: none;
}

.woocommerce .coupon #coupon_code {
    flex: 1;
    min-width: 200px;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
}

.woocommerce .coupon #coupon_code:focus {
    outline: none;
    border-color: var(--color-primary);
}

.woocommerce .coupon button {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.woocommerce .coupon button:hover {
    background: #047857;
}

/* Empty Cart */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.woocommerce-cart .cart-empty::before {
    content: '🛒';
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.woocommerce-cart .return-to-shop a {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.woocommerce-cart .return-to-shop a:hover {
    background: #047857;
}

/* ============================================
   WOOCOMMERCE CHECKOUT STYLES
   ============================================ */

.woocommerce-checkout .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
}

/* Checkout Steps Indicator */
.checkout-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-muted);
}

.checkout-step.active {
    color: var(--color-primary);
}

.checkout-step .step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border-radius: 50%;
    font-weight: 600;
    font-size: var(--text-sm);
}

.checkout-step.active .step-number {
    background: var(--color-primary);
    color: white;
}

/* Checkout Layout */
.woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 100%;
}

/* Form Styling */
.woocommerce form .form-row {
    margin-bottom: var(--space-md);
}

.woocommerce form .form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
}

.woocommerce form .form-row .required {
    color: #ef4444;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--bg-base);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .select2-container--default .select2-selection--single:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Select2 Override */
.woocommerce .select2-container--default .select2-selection--single {
    height: auto;
    padding: var(--space-sm);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding-left: var(--space-sm);
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: var(--space-sm);
}

/* Checkout Sections */
.woocommerce-checkout h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border);
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

/* Order Review */
.woocommerce-checkout #order_review_heading {
    margin-top: var(--space-2xl);
    font-size: var(--text-2xl);
}

.woocommerce-checkout #order_review {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
}

.woocommerce-checkout-review-order-table {
    margin-bottom: var(--space-lg);
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: var(--space-md);
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
}

/* Payment Methods */
.woocommerce-checkout #payment {
    background: transparent;
    border-radius: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    margin: 0 0 var(--space-lg);
    list-style: none;
    border: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: var(--bg-subtle);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.woocommerce-checkout #payment ul.payment_methods li:hover,
.woocommerce-checkout #payment ul.payment_methods li.active {
    border-color: var(--color-primary);
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.woocommerce-checkout #payment ul.payment_methods li img {
    max-height: 24px;
}

.woocommerce-checkout #payment .payment_box {
    background: var(--bg-base);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-ink-light);
}

.woocommerce-checkout #payment .payment_box::before {
    display: none;
}

/* Place Order Button */
.woocommerce #place_order {
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
}

.woocommerce #place_order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Privacy Policy */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: var(--text-sm);
    color: var(--color-muted);
    margin-bottom: var(--space-md);
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--color-primary);
}

/* Terms */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: var(--space-md);
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

/* Messages */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border: none;
}

.woocommerce .woocommerce-error {
    background: #fef2f2;
    color: #dc2626;
}

.woocommerce .woocommerce-info {
    background: #eff6ff;
    color: #2563eb;
}

.woocommerce .woocommerce-message {
    background: #f0fdf4;
    color: var(--color-primary);
}

.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before {
    display: none;
}

/* Thank You Page */
.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-size: var(--text-xl);
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--space-2xl);
}

.woocommerce-order-received .woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
    list-style: none;
}

.woocommerce-order-received .woocommerce-order-overview li {
    text-align: center;
    padding: var(--space-md);
}

.woocommerce-order-received .woocommerce-order-overview li strong {
    display: block;
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

/* Responsive */
@media (max-width: 992px) {
    .woocommerce-checkout #customer_details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .woocommerce table.shop_table {
        display: block;
    }
    
    .woocommerce table.shop_table thead {
        display: none;
    }
    
    .woocommerce table.shop_table tbody {
        display: block;
    }
    
    .woocommerce table.shop_table tr {
        display: flex;
        flex-wrap: wrap;
        padding: var(--space-lg);
        border-bottom: 1px solid var(--color-border);
    }
    
    .woocommerce table.shop_table td {
        display: block;
        padding: var(--space-xs);
        border: none;
    }
    
    .woocommerce table.shop_table .product-thumbnail {
        width: 80px;
    }
    
    .woocommerce table.shop_table .product-name {
        flex: 1;
    }
    
    .woocommerce table.shop_table .product-price,
    .woocommerce table.shop_table .product-quantity,
    .woocommerce table.shop_table .product-subtotal {
        width: 33.33%;
        text-align: center;
        margin-top: var(--space-sm);
    }
    
    .woocommerce table.shop_table .product-remove {
        position: absolute;
        right: var(--space-md);
        top: var(--space-md);
    }
    
    .woocommerce table.shop_table td.actions {
        width: 100%;
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .woocommerce .coupon {
        width: 100%;
    }
    
    .woocommerce-order-received .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   MINI CART SIDEBAR
   ============================================ */

.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-elevated);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.mini-cart-sidebar.active {
    right: 0;
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.mini-cart-header h3 {
    font-size: var(--text-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mini-cart-count {
    background: var(--color-primary);
    color: white;
    font-size: var(--text-xs);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.mini-cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mini-cart-close:hover {
    background: var(--color-primary);
    color: white;
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
}

.mini-cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
}

.mini-cart-item-name {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.mini-cart-item-name a {
    color: inherit;
    text-decoration: none;
}

.mini-cart-item-name a:hover {
    color: var(--color-primary);
}

.mini-cart-item-meta {
    font-size: var(--text-xs);
    color: var(--color-muted);
}

.mini-cart-item-price {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-xs);
}

.mini-cart-item-remove {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee2e2;
    color: #ef4444;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.mini-cart-item-remove:hover {
    background: #ef4444;
    color: white;
}

.mini-cart-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    color: var(--color-muted);
}

.mini-cart-empty svg {
    opacity: 0.3;
    margin-bottom: var(--space-lg);
}

.mini-cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
    background: var(--bg-subtle);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.mini-cart-subtotal strong {
    color: var(--color-primary);
}

.mini-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mini-cart-buttons .btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
}

/* My Account Page */
.woocommerce-account .woocommerce {
    padding: var(--space-2xl) 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    margin-bottom: var(--space-xl);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-elevated);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-subtle);
    border-radius: var(--radius-full);
    color: var(--color-ink);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: var(--color-primary);
    color: white;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

/* Login/Register Forms */
.woocommerce-form-login,
.woocommerce-form-register {
    background: var(--bg-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.woocommerce form.login,
.woocommerce form.register {
    border: none;
    padding: 0;
    margin: 0;
}

.woocommerce form .show-password-input {
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   MY ACCOUNT PAGE - ENHANCED
   ============================================ */

.woocommerce-account .woocommerce-notices-wrapper {
    margin-bottom: var(--space-lg);
}

/* Dashboard */
.woocommerce-account .woocommerce-MyAccount-content p {
    line-height: 1.8;
    color: var(--color-ink-light);
}

.woocommerce-account .woocommerce-MyAccount-content p strong {
    color: var(--color-ink);
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--color-primary);
}

/* Orders Table */
.woocommerce-account .woocommerce-orders-table {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.woocommerce-account .woocommerce-orders-table th {
    background: var(--bg-subtle);
    padding: var(--space-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: 0.5px;
}

.woocommerce-account .woocommerce-orders-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status {
    font-weight: 600;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button:hover {
    background: #047857;
}

/* Addresses */
.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.woocommerce-account .woocommerce-Address {
    background: var(--bg-subtle);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.woocommerce-account .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-account .woocommerce-Address-title h3 {
    font-size: var(--text-lg);
    margin: 0;
}

.woocommerce-account .woocommerce-Address-title a {
    font-size: var(--text-sm);
}

.woocommerce-account .woocommerce-Address address {
    font-style: normal;
    line-height: 1.8;
    color: var(--color-ink-light);
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

/* Edit Account Form */
.woocommerce-account .woocommerce-EditAccountForm {
    max-width: 600px;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.woocommerce-account .woocommerce-EditAccountForm legend {
    font-weight: 600;
    padding: 0 var(--space-sm);
}

/* ============================================
   LOGIN/REGISTER PAGE - ENHANCED
   ============================================ */

.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.woocommerce-account .u-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    width: 100%;
}

.woocommerce-form-login,
.woocommerce-form-register {
    background: var(--bg-elevated);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.woocommerce-form-login h2::after,
.woocommerce-form-register h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
    margin-bottom: var(--space-lg);
}

.woocommerce form.login label,
.woocommerce form.register label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
}

.woocommerce form.login input.input-text,
.woocommerce form.register input.input-text {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: var(--transition-fast);
}

.woocommerce form.login input.input-text:focus,
.woocommerce form.register input.input-text:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.woocommerce form.login .woocommerce-button,
.woocommerce form.register .woocommerce-button {
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.woocommerce form.login .woocommerce-button:hover,
.woocommerce form.register .woocommerce-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.woocommerce-LostPassword {
    text-align: center;
    margin-top: var(--space-lg);
}

.woocommerce-LostPassword a {
    color: var(--color-primary);
    font-size: var(--text-sm);
}

/* Password field wrapper */
.woocommerce form .password-input {
    position: relative;
}

.woocommerce form .show-password-input {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
}

/* Social login placeholder */
.woocommerce-form-login::before {
    content: '🔐';
    display: block;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.woocommerce-form-register::before {
    content: '✨';
    display: block;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

/* Privacy policy text */
.woocommerce-privacy-policy-text {
    font-size: var(--text-xs);
    color: var(--color-muted);
    text-align: center;
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-form-login,
    .woocommerce-form-register {
        padding: var(--space-xl);
    }
}

/* ============================================
   LOST PASSWORD PAGE
   ============================================ */

.woocommerce-ResetPassword {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-elevated);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.woocommerce-ResetPassword p {
    margin-bottom: var(--space-lg);
    color: var(--color-ink-light);
}

.woocommerce-ResetPassword .form-row-first {
    width: 100%;
    margin-bottom: var(--space-lg);
}

.woocommerce-ResetPassword .woocommerce-Button {
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--color-primary), #10b981);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
}

/* ========================================
   Account Icon in Header
   ======================================== */

.account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.account-icon svg {
    width: 20px;
    height: 20px;
}

.account-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* ========================================
   Chat Page Enhanced
   ======================================== */

.chat-page {
    padding: 60px 0 100px;
    min-height: 100vh;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 30%, #f8fafc 100%);
    position: relative;
}

.chat-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.chat-page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.chat-page-header .badge {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(13, 148, 136, 0.15));
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.chat-page-header .section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.chat-page-header .section-subtitle {
    color: var(--text-light);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
}

.chat-page-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Decorative elements */
.chat-page-container::before,
.chat-page-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(13, 148, 136, 0.05));
    pointer-events: none;
    z-index: -1;
}

.chat-page-container::before {
    top: -50px;
    left: -100px;
}

.chat-page-container::after {
    bottom: -50px;
    right: -100px;
}

/* Tips Section */
.chat-tips {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.chat-tips h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tip-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.12);
}

.tip-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Chat Page Features Strip */
.chat-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.chat-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.chat-feature svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .chat-page {
        padding: 40px 0 80px;
    }
    
    .chat-page-header .section-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .chat-page-container {
        padding: 0 16px;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }
    
    .tip-card {
        padding: 16px 12px;
    }
    
    .tip-icon {
        font-size: 24px;
    }
    
    .tip-card p {
        font-size: 12px;
    }
}

/* ============================================
   ELEMENTOR INTEGRATION
   ============================================ */

/* Full width Elementor pages */
.elementor-page-content,
.elementor-full-width-content {
    width: 100%;
}

.elementor-page-content .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

/* Elementor sections inherit theme colors */
.elementor-section {
    --e-global-color-primary: var(--color-primary);
    --e-global-color-secondary: var(--color-secondary);
    --e-global-color-text: var(--color-ink);
    --e-global-color-accent: var(--color-accent);
}

/* Elementor buttons match theme */
.elementor-button {
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-lg) !important;
    transition: all 0.3s ease !important;
}

.elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Elementor headings match theme */
.elementor-heading-title {
    font-family: var(--font-display) !important;
}

/* Canvas template - remove all margins */
.elementor-canvas .site-main,
.elementor-canvas .elementor-canvas-content {
    padding: 0;
    margin: 0;
}

/* Full width sections */
.elementor-section-full_width {
    padding-left: 0;
    padding-right: 0;
}

/* Elementor widgets inherit theme styling */
.elementor-widget-text-editor {
    font-family: var(--font-sans);
    color: var(--color-ink-light);
    line-height: 1.7;
}

/* Elementor forms */
.elementor-form .elementor-field-textual {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    font-family: var(--font-sans);
}

.elementor-form .elementor-field-textual:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Elementor image boxes */
.elementor-widget-image-box .elementor-image-box-content {
    font-family: var(--font-sans);
}

.elementor-widget-image-box .elementor-image-box-title {
    font-family: var(--font-display);
}

/* Elementor icons */
.elementor-icon {
    transition: all 0.3s ease;
}

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

/* Elementor testimonials */
.elementor-widget-testimonial {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: var(--space-lg);
}

/* Elementor tabs & accordions */
.elementor-tab-title {
    font-family: var(--font-display) !important;
}

.elementor-accordion-title {
    font-family: var(--font-display) !important;
}

/* Elementor products grid */
.elementor-products .product {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Hide Elementor edit button in frontend for non-admins */
body:not(.logged-in) .elementor-edit-area {
    display: none;
}

