/* ===============================================
   TOLEDO INDOOR GARDEN - RESPONSIVE 90/100 VERSION
   Fixed ALL mobile issues + visual improvements
   =============================================== */

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

:root {
    /* BRAND COLORS (SACRED - DO NOT CHANGE) */
    --logo-green: #008b44;
    --green: #008b44;
    --green-dark: #006d35;
    --green-primary: #008b44;
    --gold: #F7C951;
    --gold-dark: #e5b53d;
    --logo-yellow: #ffc20f;
    --dark: #0a1612;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #FAFBFC;
    --pure-white: #ffffff;
    
    /* TYPOGRAPHY SCALE (Consistent & Fluid) */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 48px;
    --text-4xl: 64px;
    
    /* SPACING SCALE (8px base grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    --space-4xl: 100px;
    --space-5xl: 120px;
    
    /* CONSISTENT SHADOW SYSTEM */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    
    /* TRANSITIONS */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FLUID TYPOGRAPHY (clamp() for smooth scaling) ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(32px, 5vw + 1rem, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(28px, 4vw + 1rem, 48px);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(22px, 3vw + 0.5rem, 32px);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: clamp(18px, 2vw + 0.25rem, 24px);
    font-weight: 600;
}

h5 {
    font-size: var(--text-lg);
    font-weight: 600;
}

h6 {
    font-size: var(--text-base);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
}

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

a:hover:not([class*="btn"]):not(.subcat-btn):not(.nav-cart):not(.btn-phone):not(.mega-cat):not(.shop-dropdown-btn) {
    color: var(--green-dark);
}

.large {
    font-size: clamp(20px, 2vw + 0.5rem, 24px);
    line-height: 1.6;
}

.lead {
    font-size: clamp(18px, 1.5vw + 0.5rem, 20px);
    line-height: 1.7;
    color: var(--gray);
}

/* ===== BUTTONS (Bigger, More Prominent) ===== */
.btn-hero {
    padding: 20px 48px;
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero:hover {
    transform: translateY(-2px);
}

.btn-hero:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

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

/* Button ripple effect */
.btn-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:active::after {
    width: 300px;
    height: 300px;
}

/* ===== HEADER/NAV/SEARCH/CART/PHONE styles are in /css/header.css ===== */
/* Only page-specific layout overrides below */

/* .logo layout handled by header.css */

/* Cart pulse animation */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.cart-pulse {
    animation: cartPulse 0.4s ease;
}

.nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Lighter overlay for better image visibility */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.3));
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.badge-hero {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
}

.hero-headline {
    font-size: clamp(28px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

.hero-subhead {
    font-size: clamp(16px, 3vw, 24px);
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

/* FIXED: Mobile Trust Bar - No mid-word wrapping, proper flex */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 3vw, 32px);
    padding: clamp(16px, 3vw, 24px);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.hero-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: white;
    white-space: nowrap;
    font-size: clamp(14px, 2vw, 16px);
}

.hero-trust-bar .trust-icon {
    font-size: clamp(20px, 3vw, 24px);
    flex-shrink: 0;
}

.hero-trust-bar .trust-text {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.carousel-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: var(--space-xs);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.scroll-arrow {
    font-size: 24px;
}

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

/* ===== SECTIONS ===== */
section {
    padding: clamp(48px, 10vw, 100px) 0;
}

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

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

.section-header p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray);
}

.badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

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

.feature-card p {
    color: var(--gray);
    margin: 0;
}

/* ===== SHOP SECTION ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

.product-image {
    height: 200px;
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    transition: var(--transition-slow);
}

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

.product-icon {
    font-size: 40px;
    margin-bottom: var(--space-sm);
}

.product-card h3 {
    margin-bottom: var(--space-xs);
}

.product-card p {
    color: var(--gray);
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
}

.product-link {
    color: var(--green);
    font-weight: 600;
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition);
}

.product-link:hover {
    gap: var(--space-sm);
}

/* ===== ATHENA SECTION (Solid color + subtle shadow instead of heavy gradient) ===== */
.athena-section {
    background: var(--green);
    color: white;
    text-align: center;
    box-shadow: inset 0 4px 20px rgba(0,0,0,0.1);
}

.athena-content h2 {
    color: white;
}

.athena-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-lg);
}

.athena-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.athena-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 500;
}

.athena-feature .check {
    font-size: 24px;
    color: var(--gold);
}

/* ===== CLASSES SECTION ===== */
.classes-section {
    background: var(--light-gray);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.class-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--green);
}

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

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

.date-badge {
    background: var(--green);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: var(--text-base);
}

.time {
    color: var(--gray);
    font-weight: 600;
}

.class-card h3 {
    margin-bottom: var(--space-xs);
}

.instructor {
    color: var(--green);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.btn-class {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: var(--space-md);
    transition: var(--transition);
}

.btn-class:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ===== CALCULATORS ===== */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.calculator-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.calculator-card:hover {
    box-shadow: var(--shadow-lg);
}

.calculator-card h3 {
    margin-bottom: var(--space-sm);
}

.calc-form {
    margin-top: var(--space-md);
}

.calc-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: var(--space-sm);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: var(--text-base);
    transition: var(--transition);
}

.calc-form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(71, 158, 82, 0.1);
}

.calc-btn {
    width: 100%;
    background: var(--green);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.calc-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.calc-result {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--light-gray);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.rating-display .stars {
    color: var(--gold);
    font-size: 32px;
}

.rating-text {
    color: var(--gray);
    font-size: var(--text-lg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-card .stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.testimonial-card p {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

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

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
}

.author strong {
    display: block;
    color: var(--dark);
    margin-bottom: 2px;
}

.author span {
    display: block;
    color: var(--gray);
    font-size: var(--text-sm);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--dark);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.trust-number {
    font-size: clamp(40px, 8vw, 56px);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: var(--space-xs);
    font-family: 'Poppins', sans-serif;
}

.trust-label {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.8);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-details {
    margin: var(--space-xl) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-item .icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: var(--text-lg);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.contact-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: var(--space-3xl) 0 var(--space-md);
}

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

.footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

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

.footer-trust {
    margin-top: var(--space-md);
}

.footer-trust .stars {
    color: var(--gold);
    font-size: 20px;
    margin-right: var(--space-xs);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    font-size: 32px;
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.security-badges {
    display: flex;
    gap: var(--space-lg);
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
}

.chat-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: var(--transition);
}

.chat-header {
    background: var(--green);
    color: white;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    color: white;
    margin: 0;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.chat-body {
    padding: var(--space-md);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.chat-option {
    display: block;
    background: var(--light-gray);
    padding: var(--space-sm);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.chat-option:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVENESS ===== */

/* Medium screens (1024px) - nav handled by header.css */

/* Tablets and below (768px) */
@media (max-width: 768px) {
    :root {
        --space-xl: 32px;
        --space-2xl: 48px;
        --space-3xl: 56px;
        --space-4xl: 64px;
    }
    
    /* logo-img, .nav, .mobile-menu-btn handled by header.css */

    .container {
        padding: 0 var(--space-sm);
    }

    section {
        padding: clamp(40px, 8vw, 64px) 0;
    }
    
    /* FIXED: Hero elements properly sized on mobile */
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
        padding: 18px 32px;
        font-size: var(--text-base);
    }
    
    /* FIXED: Trust bar stacks cleanly on mobile */
    .hero-trust-bar {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    
    .hero-trust-bar .trust-item {
        font-size: var(--text-sm);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* FIXED: Footer spacing reduced on mobile */
    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }
    
    .footer-grid {
        gap: var(--space-md);
    }
    
    .footer-col {
        margin-bottom: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-controls {
        bottom: var(--space-md);
        gap: var(--space-sm);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* FIXED: Chat widget mobile optimized */
    .chat-box {
        width: calc(100vw - 32px);
        max-width: 380px;
        right: 16px;
    }
    
    .chat-widget {
        bottom: var(--space-md);
        right: var(--space-md);
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .btn-phone {
        padding: 10px 16px;
        font-size: var(--text-sm);
    }
    
    .hero-headline {
        font-size: clamp(24px, 7vw, 32px);
    }
    
    .hero-subhead {
        font-size: clamp(14px, 3vw, 18px);
    }
    
    /* Trust bar items stack vertically on very small screens */
    .hero-trust-bar {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .btn-hero {
        padding: 16px 24px;
        font-size: var(--text-sm);
        min-height: 48px;
    }
    
    .carousel-controls {
        bottom: var(--space-xs);
    }
}

/* iPhone SE and very small screens (375px and below) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-trust-bar {
        padding: 12px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    /* Chat widget full width on smallest screens */
    .chat-box {
        width: calc(100vw - 16px);
        right: 8px;
    }
}

/* ===== MOBILE MENU DRAWER ===== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* FIXED: Mobile menu full width on mobile */
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 400px;
    background: white;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

.mobile-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-header img {
    width: 120px;
}

/* FIXED: Close button 44x44px minimum */
.mobile-close {
    background: var(--light-gray);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--green);
    color: white;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 44px;
}

.mobile-nav-link:hover {
    background: var(--light-gray);
    color: var(--green);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

/* Shop dropdown */
.shop-mega { display: none; }
.shop-dropdown-wrap:hover .shop-mega { display: block; }
.shop-dropdown-wrap.active .shop-mega { display: block; }
