/* ==================== BASE STYLES ==================== */
:root {
    /* Colors - Light Cream + Sky Blue Theme */
    --bg-base: #f0f4f8;
    --bg-hero: #e8eef5;
    --bg-warm: #f5f8fc;
    --bg-sky: #dbeafe;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-sky: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-bg: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    
    /* Glass Colors */
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-bg-strong: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-strong: rgba(255, 255, 255, 0.45);
    --glass-shadow: rgba(31, 38, 135, 0.1);
    
    /* Text Colors */
    --text-primary: #1e3a5f;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    /* Accent Colors */
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: rgba(59, 130, 246, 0.1);
    --accent-secondary: #8b5cf6;
    
    /* Semantic Colors */
    --success: #25d366;
    --success-hover: #20bd5a;
    --white: #ffffff;
    
    /* Spacing */
    --sidebar-width: 80px;
    --sidebar-expanded: 240px;
    --content-max-width: 1200px;
    --section-padding: 80px 40px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-base);
    background-image: 
        linear-gradient(135deg, rgba(224, 195, 252, 0.3) 0%, rgba(142, 197, 252, 0.3) 100%),
        radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ==================== MAIN CONTENT AREA ==================== */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left var(--transition-normal);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(245, 240, 232, 0.85) 0%,
        rgba(235, 229, 217, 0.75) 50%,
        rgba(245, 240, 232, 0.85) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.stat-item {
    text-align: center;
    padding: 20px 16px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--section-padding);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-badge {
    display: inline-flex;
    padding: 6px 14px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
}

/* ==================== FEATURED PRODUCTS SWIPER ==================== */
.featured-swiper {
    padding: 20px 0 60px;
}

.featured-swiper .swiper-slide {
    height: auto;
}

.featured-swiper .swiper-pagination {
    bottom: 0;
    position: relative;
    margin-top: 30px;
}

.featured-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-light);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.featured-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.2);
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.product-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.product-card-price {
    margin-bottom: 16px;
}

.product-card-price .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.product-card-price .tax {
    font-size: 12px;
    color: var(--text-muted);
}

.product-card-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==================== CATEGORIES ==================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    overflow: hidden;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 83, 9, 0.1);
    border-radius: 50%;
    color: var(--accent);
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    background: rgba(180, 83, 9, 0.15);
    transform: scale(1.05);
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.category-count {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

.category-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 83, 9, 0.1);
    border-radius: 50%;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== WHY CHOOSE US ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 32px;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 83, 9, 0.1);
    border-radius: 50%;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== BRANDS ==================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    gap: 16px;
    text-align: center;
}

.brand-card img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==================== ABOUT SNIPPET ==================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 0 40px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 12px 24px;
}

.about-year {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.about-content {
    padding: 20px 0;
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content .glass-btn {
    margin-top: 12px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 40px;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 400px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(44, 36, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    padding: 60px 40px 0;
}

.footer-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}

.footer-bottom {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

/* ==================== SWIPER NAVIGATION BUTTONS ==================== */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 1) 0%, rgba(124, 58, 237, 1) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}

.swiper-button-next {
    right: 16px;
}

.swiper-button-prev {
    left: 16px;
}

/* Featured Swiper - Navigation outside */
.featured-swiper {
    padding: 20px 50px 60px;
}

/* Product Swiper - Navigation inside */
.product-swiper {
    position: relative;
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-swiper .swiper-button-next::after,
.product-swiper .swiper-button-prev::after {
    font-size: 16px;
    color: #3b82f6;
}

.product-swiper .swiper-button-next:hover,
.product-swiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: transparent;
}

.product-swiper .swiper-button-next:hover::after,
.product-swiper .swiper-button-prev:hover::after {
    color: #ffffff;
}

.product-swiper .swiper-button-next {
    right: 12px;
}

.product-swiper .swiper-button-prev {
    left: 12px;
}

/* Pagination Dots */
.featured-swiper .swiper-pagination-bullet,
.product-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(59, 130, 246, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.featured-swiper .swiper-pagination-bullet-active,
.product-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* ==================== CATEGORY PAGE STYLES ==================== */
.category-hero {
    padding: 40px 40px 60px;
    text-align: center;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-bottom: 24px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.back-link:hover {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.category-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.category-hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.category-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 20px 40px;
    border-radius: var(--radius-xl);
}

.category-hero-stats .stat-item {
    text-align: center;
}

.category-hero-stats .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.category-hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-hero-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Product Card Large (for category pages) */
.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    min-height: 500px;
}

.product-card-large-image {
    position: relative;
    background: rgba(59, 130, 246, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-card-large-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.product-card-large-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card-large-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-card-large-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.spec-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.product-card-large-cta {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

/* Categories Grid Small (for other categories section) */
.categories-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

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

.category-card-small .category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--accent);
}

.category-card-small h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-card-small .category-count {
    font-size: 13px;
    color: var(--text-muted);
}

.products-section {
    padding: 0 40px 60px;
}

.product-counter {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-card-large {
        grid-template-columns: 1fr;
    }
    
    .product-card-large-image {
        min-height: 250px;
    }
    
    .categories-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-hero {
        padding: 20px 20px 40px;
    }
    
    .category-hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 30px;
    }
    
    .category-hero-stats .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .product-card-large-content {
        padding: 24px;
    }
    
    .product-card-large-cta {
        flex-direction: column;
    }
    
    .products-section {
        padding: 0 20px 40px;
    }
    
    .categories-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
