/* ==========================================================================
   DESIGN SYSTEM & GLOBAL VARIABLES
   ========================================================================== */
:root {
    --primary-blue: #0057B8;
    --light-blue: #A1D8EF;
    --white: #FFFFFF;
    --dark-text: #111827;
    --secondary-gray: #6B7280;
    --whatsapp-green: #25D366;
    --bg-light: #F8FAFC;
    --border-color: #E5E7EB;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--secondary-gray);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Helper Utilities */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.center {
    text-align: center;
}

.section-header.space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    height: 80px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-primary {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--dark-text);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-text);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-text);
    padding: 8px;
}

.btn-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--dark-text);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-container {
    position: relative;
    width: 80%;
    max-width: 600px;
}

.search-container input {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-blue);
    color: var(--white);
    font-size: 24px;
    outline: none;
}

#closeSearch {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 650px;
    background: linear-gradient(120deg, var(--white) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-title .highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
}

.btn-whatsapp-outline {
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

/* Layered Graphic Composition */
.visual-stack {
    position: relative;
    height: 420px;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-desktop {
    width: 320px;
    height: 240px;
    top: 0;
    right: 0;
    z-index: 1;
}

.card-laptop {
    width: 360px;
    height: 260px;
    bottom: 20px;
    left: 0;
    z-index: 2;
}

.card-acc {
    width: 180px;
    height: 140px;
    top: 140px;
    right: 40px;
    z-index: 3;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   CATEGORY SHOWCASE
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--light-blue);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    margin-bottom: 24px;
}

.category-link {
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}



/* Category Card Base Layout */
.category-card {
    background-color: var(--bg-light);
    background: var(--bg-light);
    border: 1px solid var(--border-subtle, rgba(140, 142, 144, 0.15));
    border-radius: var(--radius-lg, 24px);
    overflow: hidden; /* Clips image overflow on zoom */
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(33, 100, 220, 0.05));
}

/* Image Container Alignment & Aspect Ratio */
.category-image-wrap {
    width: 100%;
    height: 190px;
    background-color: var(--bg-white, #FAFDFD);
    overflow: hidden;
    position: relative;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Guarantees all images fill the space perfectly without distorting */
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Content Area */
.category-content {
    padding: 24px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark, #323232);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--neutral-gray, #8C8E90);
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    margin-top: auto; /* Pushes button to bottom for consistent vertical alignment */
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-blue, #2164DC);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.category-link .arrow {
    transition: transform 0.2s ease;
}

/* Hover Interactions */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg, 0 20px 32px -8px rgba(33, 100, 220, 0.12));
    border-color: rgba(41, 144, 230, 0.3);
}

.category-card:hover .category-image-wrap img {
    transform: scale(1.08); /* Subtle image zoom on card hover */
}

.category-card:hover .category-link {
    color: var(--primary-blue, #2990E6);
}

.category-card:hover .category-link .arrow {
    transform: translateX(5px);
}
/* ==========================================================================
   FEATURED PRODUCTS
   ========================================================================== */
.products-section {
    background-color: var(--bg-light);
}

.filter-pills {
    display: flex;
    gap: 8px;
}

.filter-btn {
    border: none;
    background: var(--white);
    color: var(--secondary-gray);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dark-text);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

.product-image-wrap {
    height: 220px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-specs {
    font-size: 13px;
    color: var(--secondary-gray);
    margin-bottom: 16px;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.btn-product-order {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

.btn-product-order:hover {
    background: var(--whatsapp-green);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us-section {
    background: var(--primary-blue);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
}

.feature-icon-circle {
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px auto;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ==========================================================================
   TRUST & BRANDS SECTION
   ========================================================================== */
.brands-block {
    text-align: center;
    margin-bottom: 64px;
}

.brands-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.brands-flex {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-gray);
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--primary-blue);
}

.divider-line {
    height: 1px;
    background: var(--border-color);
    margin: 64px 0;
}

.trust-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trust-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.trust-lead {
    font-size: 18px;
    margin: 16px 0 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.stat-plus, .stat-percent, .stat-symbol {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

/* ==========================================================================
   WHATSAPP CTA BANNER
   ========================================================================== */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003B7E 100%);
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 18px;
}

.btn-cta-whatsapp {
    display: inline-block;
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark-text);
    color: #9CA3AF;
    padding-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-col h3, .footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1F2937;
    text-align: center;
    padding: 24px;
    font-size: 14px;
}

/* ==========================================================================
   HERO SLIDER STYLES
   ========================================================================== */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background: var(--dark-text);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glassmorphism Badge inside Slide */
.slide-overlay-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

/* Arrow Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--dark-text);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 16px; }
.next-btn { right: 16px; }

/* Dot Pagination */
.slider-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--white);
}

/* Text Fade Animation Class */
.fade-text {
    animation: textFade 0.5s ease-in-out;
}

@keyframes textFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}




/* Header Height adjustment to fit a prominent logo */
.site-header {
    height: 90px; /* Increased slightly for better visual breathing room */
}

/* Brand Logo Link Container */
.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 6px 0;
    text-decoration: none;
}

/* Updated Image Logo Constraints */
.logo-image {
    height: 64px;       /* Increased from 48px to 64px for strong visibility */
    width: auto;        /* Maintains exact aspect ratio */
    max-height: 100%;   /* Ensures it doesn't overflow the header */
    max-width: 240px;   /* Allows wider/horizontal logos to expand properly */
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.brand-logo:hover .logo-image {
    transform: scale(1.03); /* Subtle interactive hover feedback */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-header {
        height: 75px;
    }
    
    .logo-image {
        height: 48px;
        max-width: 180px;
    }

    /* Show the hamburger button */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop nav by default on mobile */
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-sm);
    }

    .nav-links.open {
        max-height: 400px; /* enough to fit all items */
    }

    .nav-links li {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
    }

    /* Turn the 3 spans into an X when open */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .mobile-menu-toggle span {
        transition: var(--transition);
    }
}




/* ==========================================================================
   MOBILE & RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet & Mobile Devices (Up to 992px) */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 32px auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .trust-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Mobile Devices (Up to 768px) */
@media (max-width: 768px) {
    /* Header & Nav Adjustments */
    .site-header {
        height: 75px;
    }
    
    .logo-image {
        height: 48px;
        max-width: 180px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-sm);
        z-index: 999;
    }

    .nav-links.open {
        max-height: 400px;
    }

    .nav-links li {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-toggle span {
        transition: var(--transition);
    }

    .header-actions .btn-whatsapp-pill {
        display: none; /* Hide top pill button on small screens to save space */
    }

    /* Hero Section Mobile Reflow */
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-slider-wrapper {
        height: 280px;
        border-radius: 16px;
    }

    .slide-overlay-badge {
        font-size: 12px;
        padding: 6px 14px;
        bottom: 14px;
        left: 14px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 32px;
    }

    .section-header.space-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    /* Featured Products Filter Pills */
    .filter-pills {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    /* Trust & Metrics Section */
    .brands-flex {
        gap: 24px;
    }

    .brand-item {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA Banner */
    .cta-banner-section {
        padding: 48px 20px;
    }

    .cta-container h2 {
        font-size: 26px;
    }

    .cta-container p {
        font-size: 15px;
    }

    /* Footer Layout */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Small Phones (Up to 480px) */
@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group a {
        width: 100%;
        text-align: center;
    }

    .btn-cta-whatsapp {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}


