/* ============================================
   BAGRU FACTORY - WORLD-CLASS WHOLESALE DESIGN
   Framework: Custom CSS (Material Design + Apple Standards)
   Font: Inter (GitHub/Notion standard)
   Grid: 8-point spacing system
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Brand Colors */
    --primary: #7A1E2D;
    --primary-hover: #5A1621;
    --primary-light: #F5E6E9;
    --accent: #2596BE;
    --accent-hover: #1D7A9E;
    --accent-light: #E3F4FA;
    --success: #25D366;
    --success-hover: #1EAB52;
    --success-light: #E8F5E9;
    --error: #E63946;
    --error-light: #FFEBEE;
    
    /* Neutrals */
    --dark: #1F1F1F;
    --gray-900: #1F1F1F;
    --gray-700: #6B6B6B;
    --gray-500: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-100: #F7F7F7;
    --white: #FFFFFF;
    --border: #E5E7EB;
    
    /* Layout */
    --max-width: 1100px;
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    
    /* Typography */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 30px;
    --font-4xl: 36px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    font-size: var(--font-base);
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    body { padding-bottom: 0; }
}

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

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================
   HEADER
============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    gap: var(--space-4);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: var(--font-lg);
}

.logo-text {
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    gap: var(--space-2);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gray-100);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.icon-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.icon-btn:hover i {
    color: var(--white);
}

.icon-btn i {
    font-size: var(--font-base);
    color: var(--gray-700);
}

.icon-btn.whatsapp {
    background: var(--success);
    border-color: var(--success);
}

.icon-btn.whatsapp i {
    color: var(--white);
}

.icon-btn.whatsapp:hover {
    background: var(--success-hover);
    border-color: var(--success-hover);
}

.search-wrap {
    padding: 0 0 var(--space-3);
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--font-sm);
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.search-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-icon {
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    background: none;
    border: none;
    cursor: pointer;
}

/* ============================================
   MENU DRAWER
============================================ */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.menu-drawer.active {
    right: 0;
}

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

.menu-title {
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--gray-900);
}

.menu-close {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-close:hover {
    background: var(--error);
    border-color: var(--error);
    color: var(--white);
}

.menu-nav {
    padding: var(--space-4);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    margin-bottom: var(--space-1);
    text-decoration: none;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    font-weight: 500;
}

.menu-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.menu-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

/* ============================================
   CATEGORIES - MOBILE-FIRST ICONS ONLY
============================================ */

/* ============================================
   CATEGORIES - MOBILE-FIRST ICONS ONLY
============================================ */
.categories-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-3) 0;
}

.categories-scroll-container {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

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

.categories-scroll-track {
    display: inline-flex;
    gap: var(--space-3);
    padding: 0 var(--space-4);
    min-width: 100%;
    width: max-content;
}

.category-card {
    flex-shrink: 0;
    flex-grow: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-card:active {
    transform: scale(0.9);
}

.category-card-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #7A1E2D 0%, #2596BE 100%) border-box;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.category-card:hover .category-card-image {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7A1E2D 0%, #2596BE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.category-placeholder i {
    font-size: 28px;
    color: var(--white);
}

/* Tablet */
@media (min-width: 768px) {
    .categories-section {
        padding: var(--space-4) 0;
    }
    
    .categories-scroll-track {
        padding: 0 var(--space-6);
        gap: var(--space-4);
    }
    
    .category-card-image {
        width: 72px;
        height: 72px;
        border: 3px solid transparent;
    }
    
    .category-placeholder i {
        font-size: 32px;
    }
}

/* Desktop - 1100px Max Width Container */
@media (min-width: 1100px) {
    .categories-section {
        padding: var(--space-5) 0;
    }
    
    /* Center the scroll container within 1100px */
    .categories-scroll-container {
        max-width: var(--max-width);
        margin: 0 auto;
    }
    
    .categories-scroll-track {
        gap: var(--space-4);
        padding: 0;
    }
    
    .category-card-image {
        width: 80px;
        height: 80px;
    }
    
    .category-placeholder i {
        font-size: 36px;
    }
}
/* ============================================
   BANNER
============================================ */
.banner {
    padding: var(--space-4) 0;
    overflow-x: auto;
}

.banner-scroll {
    display: flex;
    gap: var(--space-3);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.banner-card {
    flex-shrink: 0;
    width: calc(100% - 32px);
    scroll-snap-align: start;
    background: linear-gradient(135deg, #FEF3E0, #FFE5B4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

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

@media (min-width: 768px) {
    .banner-scroll {
        gap: var(--space-4);
    }
    
    .banner-card {
        width: calc(50% - 8px);
    }
}

.banner-card.blue {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.offer-tag {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.offer-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: var(--space-2);
    color: var(--dark);
}

@media (min-width: 768px) {
    .offer-title {
        font-size: 32px;
    }
}

.offer-subtitle {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-3);
}

.offer-pills {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.pill {
    background: var(--white);
    border: 2px solid var(--dark);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    transition: all 0.2s ease;
}

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

/* ============================================
   PRODUCTS
============================================ */
.products {
    padding: var(--space-5) 0;
}
/* Product Image Slider */
.product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-image.active {
    opacity: 1;
    position: relative;
}

.image-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 3px;
}

@media (min-width: 768px) {
    .image-dots {
        bottom: 50px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
        border-radius: 4px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 640px) {
    .products-grid { 
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .product-card:hover {
        transform: translateY(-4px);
    }
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--gray-100);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .product-badge {
        top: var(--space-2);
        left: var(--space-2);
        padding: var(--space-1) var(--space-2);
        font-size: 10px;
    }
}

.product-like {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .product-like {
        width: 32px;
        height: 32px;
        top: var(--space-2);
        right: var(--space-2);
    }
}

.product-like:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

.product-like i {
    font-size: 12px;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .product-like i {
        font-size: var(--font-sm);
    }
}

.product-like.active i {
    color: var(--error);
    font-weight: 900;
}

.moq-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 9px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .moq-badge {
        bottom: var(--space-2);
        left: var(--space-2);
        padding: var(--space-1) var(--space-2);
        font-size: 10px;
    }
}

.product-info {
    padding: 8px;
}

@media (min-width: 768px) {
    .product-info {
        padding: var(--space-3);
    }
}

.product-title {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 28px;
}

@media (min-width: 768px) {
    .product-title {
        font-size: var(--font-sm);
        margin-bottom: var(--space-2);
        min-height: 40px;
    }
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-main {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

@media (min-width: 768px) {
    .price-main {
        font-size: var(--font-lg);
    }
}

.stock-badge {
    font-size: 9px;
    color: var(--success);
    font-weight: 700;
    background: var(--success-light);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .stock-badge {
        font-size: var(--font-xs);
        padding: 2px var(--space-2);
    }
}

.product-actions {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 6px;
}

@media (min-width: 768px) {
    .product-actions {
        grid-template-columns: 44px 1fr;
        gap: var(--space-2);
    }
}

.btn-whatsapp {
    width: 40px;
    height: 40px;
    background: var(--success);
    border: 1px solid var(--success);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .btn-whatsapp {
        width: 44px;
        height: 44px;
    }
}

.btn-whatsapp:hover {
    background: var(--success-hover);
    border-color: var(--success-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

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

.btn-whatsapp i {
    font-size: 18px;
    color: var(--white);
}

@media (min-width: 768px) {
    .btn-whatsapp i {
        font-size: 20px;
    }
}

.btn-inquiry {
    padding: 0;
    height: 40px;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .btn-inquiry {
        height: 44px;
        font-size: var(--font-sm);
    }
}

.btn-inquiry:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

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

/* ============================================
   SEO CONTENT
============================================ */
.seo-section {
    background: var(--gray-100);
    padding: var(--space-8) 0;
    margin-top: var(--space-8);
}

.seo-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .seo-content {
        padding: var(--space-8);
    }
}

.seo-content h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
    line-height: 1.3;
}

.seo-content h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    margin: var(--space-6) 0 var(--space-3);
    color: var(--gray-900);
}

.seo-content p {
    font-size: var(--font-base);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-4);
}

.seo-preview {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.seo-preview.expanded {
    max-height: none;
}

.seo-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--white));
    pointer-events: none;
}

.seo-preview.expanded .seo-fade {
    display: none;
}

.seo-full {
    display: none;
}

.seo-preview.expanded .seo-full {
    display: block;
}

.read-more-btn {
    margin-top: var(--space-4);
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: 6px;
    font-size: var(--font-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.read-more-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-6) 0 var(--space-4);
}

@media (min-width: 768px) {
    .footer {
        padding: var(--space-8) 0 var(--space-4);
    }
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-6);
        text-align: left;
    }
}

.footer-logo {
    font-size: var(--font-2xl);
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-links {
        gap: var(--space-6);
        justify-content: flex-start;
    }
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: var(--font-sm);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.footer-copyright {
    font-size: var(--font-sm);
    color: rgba(255,255,255,0.6);
}

/* ============================================
   BOTTOM NAV (Mobile Only)
============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
    .bottom-nav { display: none; }
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2);
    text-decoration: none;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: var(--space-1);
}

.nav-item span {
    font-size: var(--font-xs);
    font-weight: 600;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item.active i {
    transform: scale(1.1);
}

/* ============================================
   PRODUCT DETAIL PAGE
============================================ */
.product-detail-page {
    padding: var(--space-8) 0;
    background: var(--white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

/* Images Section */
.product-images-section {
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--border);
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
}

.detail-badge-in-stock {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: 6px;
    font-size: var(--font-sm);
    font-weight: 700;
}

.thumbnail-images {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    cursor: pointer;
    object-fit: cover;
    transition: all 0.2s ease;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Info Section */
.product-detail-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .product-detail-title {
        font-size: var(--font-3xl);
    }
}

.product-meta-info {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    font-size: var(--font-sm);
    color: var(--gray-700);
}

.detail-price-section {
    background: var(--gray-100);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.detail-wholesale-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.detail-price-label {
    font-size: var(--font-sm);
    color: var(--gray-700);
    font-weight: 600;
}

.detail-moq-box {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--accent-light);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
}

.detail-moq-box i {
    font-size: 24px;
    color: var(--accent);
}

.moq-text {
    font-size: var(--font-sm);
    color: var(--gray-700);
}

.moq-number {
    font-size: var(--font-lg);
    font-weight: 800;
    color: var(--accent);
}

.product-attributes-list {
    border-top: 1px solid var(--border);
    padding-top: var(--space-4);
    margin-bottom: var(--space-5);
}

.attr-row {
    display: flex;
    padding: var(--space-2) 0;
    font-size: var(--font-base);
}

.attr-label {
    width: 120px;
    color: var(--gray-700);
    font-weight: 600;
}

.attr-value {
    flex: 1;
    color: var(--gray-900);
}

.detail-action-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.btn-primary-large,
.btn-secondary-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 56px;
    border-radius: 6px;
    font-size: var(--font-base);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-large {
    background: var(--success);
    color: var(--white);
    border: 2px solid var(--success);
}

.btn-primary-large:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-large {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary-large:hover {
    background: var(--accent);
    color: var(--white);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-sm);
    color: var(--gray-700);
}

.trust-item i {
    color: var(--success);
    font-size: var(--font-base);
}

/* ============================================
   ALL PRODUCTS PAGE
============================================ */
.products-page {
    padding: var(--space-6) 0;
    background: var(--white);
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 1024px) {
    .products-layout {
        grid-template-columns: 260px 1fr;
        gap: var(--space-8);
    }
}

/* Sidebar Filters */
.products-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .products-sidebar {
        display: block;
    }
}

.filter-section {
    margin-bottom: var(--space-6);
}

.filter-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.filter-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2);
    border-radius: 6px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: var(--font-sm);
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-option:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.filter-option.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.filter-option .count {
    font-size: var(--font-xs);
    color: var(--gray-500);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    cursor: pointer;
    font-size: var(--font-sm);
    color: var(--gray-700);
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Products Toolbar */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
}

.products-count {
    font-size: var(--font-sm);
    color: var(--gray-700);
}

.products-sort {
    display: none;
}

@media (min-width: 768px) {
    .products-sort {
        display: block;
    }
}

.sort-select {
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: var(--font-sm);
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: var(--font-sm);
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-700);
}

@media (min-width: 1024px) {
    .filter-toggle-btn {
        display: none;
    }
}

/* Mobile Filters */
.filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.filters-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.filters-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.filters-drawer.active {
    left: 0;
}

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

.filters-header h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
}

.close-filters {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filters-content {
    padding: var(--space-4);
}

/* No Products */
.no-products {
    grid-column: 1/-1;
    text-align: center;
    padding: var(--space-12) var(--space-4);
}

.no-products i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: var(--space-4);
}

.no-products h3 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.no-products p {
    font-size: var(--font-base);
    color: var(--gray-700);
    margin-bottom: var(--space-5);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* SEARCH PAGE */
.search-again-form { max-width: 600px; }
.search-input-wrapper { display: flex; gap: var(--space-2); }
.search-input-large {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: var(--font-base);
    font-family: inherit;
}
.search-input-large:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.search-btn-large {
    padding: var(--space-3) var(--space-6);
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: inherit;
}
.search-btn-large:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.search-results-page { padding: var(--space-6) 0; }
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}
.results-count {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--gray-900);
}
.view-all-link-small {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--accent);
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: 600;
}
.no-results { text-align: center; padding: var(--space-12) var(--space-4); }
.no-results-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-4);
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-results-icon i { font-size: 48px; color: var(--gray-500); }
.no-results h2 {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
}
.search-suggestions {
    max-width: 500px;
    margin: var(--space-6) auto;
    text-align: left;
    background: var(--gray-100);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
}
.search-suggestions ul { list-style: none; padding: 0; }
.search-suggestions li {
    padding: var(--space-2) 0 var(--space-2) var(--space-4);
    position: relative;
}
.search-suggestions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}
.popular-categories h3 {
    font-size: var(--font-xl);
    font-weight: 700;
    margin: var(--space-6) 0 var(--space-4);
}
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}
.category-pill {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 600;
}
.category-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
/* ============================================
   BULK ORDERS PAGE
============================================ */

/* Hero Section */
.bulk-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: var(--space-8) 0;
    color: var(--white);
    text-align: center;
}

.bulk-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.bulk-hero-title {
    font-size: var(--font-3xl);
    font-weight: 900;
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .bulk-hero-title {
        font-size: 48px;
    }
}

.bulk-hero-subtitle {
    font-size: var(--font-lg);
    margin-bottom: var(--space-6);
    opacity: 0.95;
    line-height: 1.6;
}

.bulk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.stat-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: var(--font-3xl);
    font-weight: 900;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-sm);
    opacity: 0.9;
}

/* Sections */
.bulk-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

.bulk-benefits {
    padding: var(--space-10) 0;
    background: var(--gray-100);
}

.section-heading-center {
    font-size: var(--font-3xl);
    font-weight: 900;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.section-subheading {
    text-align: center;
    font-size: var(--font-lg);
    color: var(--gray-700);
    margin-bottom: var(--space-8);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.step-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: var(--font-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-3);
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 36px;
    color: var(--primary);
}

.step-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.step-desc {
    font-size: var(--font-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-3);
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.benefit-card p {
    font-size: var(--font-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.pricing-header p {
    font-size: var(--font-sm);
    color: var(--gray-700);
}

.pricing-qty {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-2);
}

.pricing-discount {
    font-size: var(--font-sm);
    color: var(--accent);
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-5);
}

.pricing-features li {
    padding: var(--space-2) 0;
    font-size: var(--font-sm);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pricing-features i {
    color: var(--success);
    font-size: var(--font-base);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: var(--space-3);
    background: var(--accent);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* CTA Section */
.bulk-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: var(--space-10) 0;
    color: var(--white);
}

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

.cta-content h2 {
    font-size: var(--font-3xl);
    font-weight: 900;
    margin-bottom: var(--space-3);
}

.cta-content p {
    font-size: var(--font-lg);
    margin-bottom: var(--space-6);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: 6px;
    font-size: var(--font-base);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-primary {
    background: var(--success);
    color: var(--white);
    border: 2px solid var(--success);
}

.btn-cta-primary:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-4);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h3 {
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-4) var(--space-4);
    font-size: var(--font-sm);
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}
/* ============================================
   ABOUT US PAGE
============================================ */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    padding: var(--space-10) 0;
}

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

.about-hero-title {
    font-size: var(--font-3xl);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 48px;
    }
}

.about-hero-subtitle {
    font-size: var(--font-xl);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.about-hero-desc {
    font-size: var(--font-lg);
    color: var(--gray-700);
    line-height: 1.8;
}

/* About Sections */
.about-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

.about-values {
    padding: var(--space-10) 0;
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

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

.about-heading {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.about-content p {
    font-size: var(--font-base);
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.placeholder-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

.placeholder-box i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.placeholder-box p {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

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

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

.value-card {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-3);
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 32px;
    color: var(--primary);
}

.value-card h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.value-card p {
    font-size: var(--font-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Stats Section */
.about-stats-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

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

@media (min-width: 768px) {
    .stats-grid-large {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: var(--space-5);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-3);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-icon i {
    font-size: 28px;
    color: var(--primary);
}

.stat-number-large {
    font-size: var(--font-3xl);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.stat-label-large {
    font-size: var(--font-sm);
    color: var(--gray-700);
    font-weight: 600;
}

/* Features List */
.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    margin-bottom: var(--space-3);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 32px;
    color: var(--success);
}

.feature-content h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.feature-content p {
    font-size: var(--font-sm);
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.about-process {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    opacity: 0.5;
    margin-bottom: var(--space-2);
}

.process-step h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.process-step p {
    font-size: var(--font-sm);
    opacity: 0.9;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    padding: var(--space-10) 0;
    background: var(--gray-100);
}
/* ============================================
   CONTACT PAGE
============================================ */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: var(--space-8) 0;
    color: var(--white);
    text-align: center;
}

.contact-hero-title {
    font-size: var(--font-3xl);
    font-weight: 900;
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 48px;
    }
}

.contact-hero-subtitle {
    font-size: var(--font-lg);
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 400px 1fr;
    }
}

/* Contact Info Side */
.contact-info-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.contact-info-desc {
    font-size: var(--font-base);
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: var(--space-6);
}

.contact-method {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 24px;
    color: var(--white);
}

.method-details h3 {
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.method-details p {
    font-size: var(--font-sm);
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    line-height: 1.5;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--accent);
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: 600;
    transition: gap 0.2s ease;
}

.method-link:hover {
    gap: var(--space-2);
}

.business-hours {
    background: var(--primary-light);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.business-hours h3 {
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.business-hours h3 i {
    color: var(--primary);
}

.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours li {
    font-size: var(--font-sm);
    color: var(--gray-700);
    padding: var(--space-1) 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-100);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.form-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.form-subtitle {
    font-size: var(--font-sm);
    color: var(--gray-700);
    margin-bottom: var(--space-5);
}

.alert {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.alert-success {
    background: var(--success-light);
    color: var(--success-hover);
    border-left: 4px solid var(--success);
}

.alert-error {
    background: var(--error-light);
    color: var(--error);
    border-left: 4px solid var(--error);
}

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

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: var(--font-base);
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

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

.form-submit-btn {
    width: 100%;
    padding: var(--space-4);
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: var(--font-base);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Map Section */
.contact-map-section {
    padding: var(--space-10) 0;
    background: var(--gray-100);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.contact-faq-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

/* ============================================
   HERO BANNER - MOBILE FIRST
============================================ */

.hero-banner-mobile {
    background: linear-gradient(135deg, #F5E6E9 0%, #E3F4FA 100%);
    padding: var(--space-6) 0;
}

.hero-headline {
    text-align: center;
    margin-bottom: var(--space-5);
}

.hero-headline h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.hero-headline p {
    font-size: var(--font-base);
    color: var(--gray-700);
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-headline h1 {
        font-size: 42px;
    }
    .hero-headline p {
        font-size: var(--font-lg);
    }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-900);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    white-space: nowrap;
}

.trust-badge i {
    color: var(--primary);
    font-size: 12px;
}

@media (min-width: 768px) {
    .hero-trust-badges {
        gap: var(--space-3);
    }
    
    .trust-badge {
        font-size: var(--font-sm);
        padding: var(--space-3) var(--space-5);
        gap: var(--space-2);
    }
    
    .trust-badge i {
        font-size: var(--font-sm);
    }
}

/* CTA Buttons - SINGLE ROW ON MOBILE */
.hero-cta {
    display: flex;
    gap: var(--space-2);
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-cta {
        gap: var(--space-3);
        max-width: 600px;
    }
}

.hero-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-3);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hero-btn {
        padding: var(--space-4) var(--space-6);
        font-size: var(--font-base);
        gap: var(--space-2);
    }
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.hero-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-btn-whatsapp {
    background: var(--success);
    color: var(--white);
    border: 2px solid var(--success);
}

.hero-btn-whatsapp:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Offers Strip - SINGLE ROW ON MOBILE */
.offers-strip {
    background: var(--white);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
}

.offers-grid {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offers-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .offers-grid {
        gap: var(--space-3);
        justify-content: center;
        overflow-x: visible;
    }
}

.offer-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 200px;
}

@media (min-width: 768px) {
    .offer-item {
        min-width: auto;
        flex: 1;
        max-width: 400px;
        gap: var(--space-3);
        padding: var(--space-4);
    }
}

.offer-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.offer-icon {
    font-size: 28px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .offer-icon {
        font-size: 36px;
    }
}

.offer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offer-text strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-900);
}

.offer-text span {
    font-size: 10px;
    color: var(--gray-700);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .offer-text strong {
        font-size: var(--font-base);
    }
    .offer-text span {
        font-size: var(--font-sm);
    }
}
/* Make product title clickable */
.product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-title-link:hover .product-title {
    color: #7A1E2D;
}

.product-image-link {
    display: block;
    text-decoration: none;
}

.product-title {
    cursor: pointer;
    transition: color 0.3s ease;
}

/* ===================================
   CATEGORY PAGE STYLES
   =================================== */

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #7A1E2D;
}

.breadcrumb .separator {
    color: #999;
    margin: 0 8px;
}

.breadcrumb .current {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* Category Header */
.category-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 40px 0 30px;
    border-bottom: 1px solid #e9ecef;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
}

.category-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.category-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: #7A1E2D;
    font-size: 16px;
}

.meta-item strong {
    color: #333;
    font-weight: 600;
}

/* Subcategories Section */
.subcategories-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.subcat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.subcat-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.subcat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7A1E2D 0%, #2596BE 100%);
    color: white;
    font-size: 32px;
}

.subcat-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
}

.subcat-card:hover .subcat-name {
    color: #7A1E2D;
}

/* Products Section */
.products-section {
    padding: 40px 0 60px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.products-count {
    font-size: 14px;
    color: #666;
}

/* No Products */
.no-products {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
}

.no-products i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-products h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.no-products p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #7A1E2D;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5a1621;
    transform: translateY(-2px);
}

/* SEO Section */
.seo-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.seo-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
}

.seo-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
}

.seo-text p {
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 24px;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .subcat-icon {
        width: 60px;
        height: 60px;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
}