/* Etsy Theme - Layout Styles */

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Hide mobile-only elements on desktop */
.mobile-brands-section {
    display: none;
}

.mobile-menu-toggle,
.mobile-search-icon,
.mobile-menu-overlay,
.mobile-search-overlay {
    display: none;
}

/* ===== MODERN 2-SECTION HEADER ===== */
.site-header {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #f9a8d4 100%);
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #ec4899, #f472b6, #fda4af, #ec4899) 1;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(217, 70, 166, 0.25), 0 0 40px rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(217, 70, 166, 0.25), 0 0 40px rgba(147, 51, 234, 0.2);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(217, 70, 166, 0.35), 0 0 50px rgba(147, 51, 234, 0.3);
    }
}

.site-header::before {
    content: '🌸';
    position: absolute;
    left: 5%;
    top: 15px;
    font-size: 32px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.site-header::after {
    content: '✨';
    position: absolute;
    right: 5%;
    top: 20px;
    font-size: 28px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite, twinkle 2s ease-in-out infinite;
    animation-delay: 3s, 0s;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes twinkle {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
    75% { transform: translateY(-8px) rotate(5deg); }
}

/* Top Bar - Logo, Search, Actions */
.header-top {
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) 1;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.header-top .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fda4af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.site-logo::before {
    content: '💐';
    font-size: 22px;
    margin-right: 5px;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0%, 90% { transform: rotate(0deg); }
    95% { transform: rotate(20deg); }
    100% { transform: rotate(0deg); }
}

.site-logo::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: -8px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.site-logo:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2) drop-shadow(0 4px 12px var(--parfum-pink-light));
}

.site-logo:hover::after {
    opacity: 1;
    right: -35px;
}

/* Logo Spray Effect */
.logo-spray-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    pointer-events: none;
    z-index: 10;
}

.logo-spray-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(217,70,166,0.9) 0%, rgba(147,51,234,0.6) 40%, rgba(245,158,11,0.3) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    animation: logoSprayFloat 2s ease-out infinite;
}

.logo-spray-particle:nth-child(1) { animation-delay: 0s; }
.logo-spray-particle:nth-child(2) { animation-delay: 0.4s; }
.logo-spray-particle:nth-child(3) { animation-delay: 0.8s; }
.logo-spray-particle:nth-child(4) { animation-delay: 1.2s; }
.logo-spray-particle:nth-child(5) { animation-delay: 1.6s; }

@keyframes logoSprayFloat {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(calc(-20px + (var(--particle-x, 0) * 40px)), calc(-30px + (var(--particle-y, 0) * -15px))) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(calc(-35px + (var(--particle-x, 0) * 70px)), calc(-60px + (var(--particle-y, 0) * -30px))) scale(0.3);
        opacity: 0;
    }
}

.logo-spray-particle:nth-child(1) { --particle-x: 0.3; --particle-y: 0.8; }
.logo-spray-particle:nth-child(2) { --particle-x: 0.5; --particle-y: 1; }
.logo-spray-particle:nth-child(3) { --particle-x: 0.7; --particle-y: 0.75; }
.logo-spray-particle:nth-child(4) { --particle-x: 0.4; --particle-y: 0.9; }
.logo-spray-particle:nth-child(5) { --particle-x: 0.8; --particle-y: 0.85; }

.logo-icon {
    color: var(--bunte-orange);
    flex-shrink: 0;
}

/* Header Search - Flat Design */
.header-search {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: stretch;
    border: 2px solid #1a1a1a;
    background: white;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-search:focus-within {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1), 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.search-icon {
    padding: 0 12px;
    color: var(--bunte-gray);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background: var(--bunte-white);
}

.search-brand {
    padding: 0 8px;
    border: none;
    border-right: 2px solid var(--parfum-pink-light);
    background: linear-gradient(135deg, var(--parfum-pink-light), var(--parfum-purple-light));
    color: var(--bunte-black);
    font-size: 13px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    width: 110px;
    max-width: 110px;
    transition: all 0.3s ease;
}

.search-brand:hover {
    background: linear-gradient(135deg, var(--parfum-pink-light), var(--parfum-purple-light));
    opacity: 1.5;
}

.search-input {
    flex: 1;
    padding: 0 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    min-width: 200px;
}

.search-input::placeholder {
    color: var(--text-tertiary);
    font-style: italic;
}

.search-btn {
    padding: 0 24px;
    border: none;
    background: var(--bg-gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--parfum-pink-light);
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: none;
    display: none;
}

.search-btn::after {
    content: '🔍';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-btn:hover::before {
    left: 0;
}

.search-btn:hover::after {
    opacity: 0;
    right: 12px;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.4);
}

.search-btn svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.search-btn:hover svg {
    filter: none;
    transform: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.header-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.header-btn > * {
    position: relative;
    z-index: 2;
}

.header-btn svg {
    position: relative;
    z-index: 2;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    border-color: white !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

.header-btn:hover::before {
    opacity: 1;
}

.cart-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cart-btn:hover::before {
    opacity: 1;
}

.cart-btn svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cart-btn:hover svg {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.cart-total-price {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #D946A6, #9333EA);
    color: white;
    border-radius: 10px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(217, 70, 166, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 2px 12px rgba(217, 70, 166, 0.6); }
}

.cart-badge:empty {
    display: none;
}

/* Navigation Bar */
.header-nav {
    background: #1a1a1a;
    position: relative;
    overflow: visible;
    z-index: 100;
}

.header-nav::before {
    content: '💫';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    filter: brightness(2);
}

.header-nav::after {
    content: '🎀';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    animation-delay: 4s;
    filter: brightness(2);
}

.header-nav .container {
    padding: 0;
}

.main-nav {
    display: flex;
    gap: 0;
    align-items: center;
    position: relative;
}

.nav-link {
    padding: 12px 18px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.1), rgba(147, 51, 234, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #f472b6, #fda4af);
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(217, 70, 166, 0.4);
}

.nav-link:hover {
    color: #d946a6;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: #d946a6;
    font-weight: 700;
}

.nav-link.active::before {
    width: 100%;
}

.nav-link.active::after {
    width: 80%;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(217, 70, 166, 0.4); }
    50% { box-shadow: 0 2px 12px rgba(217, 70, 166, 0.6); }
}

/* ===== FOOTER - FLAT DESIGN ===== */
.site-footer {
    background: #222;
    color: #e8e8e8;
    margin-top: 60px;
}

.footer-top {
    padding: 50px 0 30px;
    border-bottom: 1px solid #444;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.footer-text {
    color: #f0f0f0 !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background: #3a3a3a;
    color: #f5f5f5 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--bunte-orange);
    color: white;
}

.footer-heading {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #f5f5f5 !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--bunte-orange) !important;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #d0d0d0;
    font-size: 13px;
    margin: 0;
}

.footer-payment {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-text {
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
}

.payment-method {
    background: white;
    border: 1px solid #ddd;
    padding: 6px 10px;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: var(--bunte-orange);
}

.payment-method svg,
.payment-method img {
    display: block;
    max-width: 50px;
    max-height: 32px;
    object-fit: contain;
}

/* Footer Shipping Section */
.footer-shipping {
    background: #2a2a2a;
    padding: 30px 0;
    border-top: 1px solid #444;
}

.shipping-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px 0;
}

.shipping-partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.shipping-badge {
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.shipping-badge:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.shipping-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.shipping-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.feature-item svg {
    flex-shrink: 0;
}

/* Footer Trust Badges */
.footer-trust {
    background: #333;
    padding: 30px 0;
    border-top: 1px solid #444;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    background: #3a3a3a;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s;
}

.trust-badge:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.trust-badge svg {
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.trust-text span {
    color: #e0e0e0;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .shipping-partners {
        gap: 10px;
    }
    
    .shipping-badge {
        padding: 8px 12px;
    }
    
    .shipping-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background: var(--bunte-black);
    color: var(--bunte-white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: var(--font-size-base);
}

.site-footer .footer-link {
    margin: 10px 0 0 0;
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.site-footer a {
    color: var(--bunte-orange);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.site-footer a:hover {
    opacity: 0.8;
}

/* Grid Layouts */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

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

/* Page Structure */
.page-header {
    background: var(--bunte-cream);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid var(--bunte-light-gray);
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--bunte-black);
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--bunte-gray);
    margin: 0;
}

.page-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.page-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--bunte-black);
    margin: 0;
}

/* Product Detail Layout */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: var(--spacing-2xl) 0;
}

.product-gallery-main {
    position: sticky;
    top: 100px;
}

/* Filters Bar */
.filters-bar {
    background: var(--bunte-white);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--bunte-light-gray);
}

.filters-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    flex-wrap: wrap;
}

.filter-search-form {
    flex: 1;
    min-width: 300px;
}

.filter-search-form .search-box input {
    width: 100%;
}

.filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Sections */
.products-section {
    padding: var(--spacing-3xl) 0;
}

.related-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bunte-cream);
    border-top: 1px solid var(--bunte-light-gray);
}

.related-section h2 {
    text-align: center;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin: 0 0 var(--spacing-2xl) 0;
    color: var(--bunte-black);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        flex-wrap: wrap;
    }
    
    .header-search-form {
        order: 10;
        width: 100%;
        margin: 12px 0 0 0 !important;
    }
    
    .header-search-form input {
        width: 100% !important;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-logo {
        font-size: var(--font-size-xl);
    }
    
    .main-nav {
        gap: 4px;
        font-size: 13px;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .cart-icon-btn {
        padding: 4px 8px !important;
    }
    
    .page-header h1 {
        font-size: var(--font-size-2xl);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-md);
    }
}

/* Brand Product Sliders */
.brand-products-section {
    position: relative;
}

.brand-products-slider .products-track {
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: #1a1a1a #e5e7eb;
}

.brand-products-slider .products-track::-webkit-scrollbar {
    height: 8px;
}

.brand-products-slider .products-track::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 4px;
}

.brand-products-slider .products-track::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

.brand-products-slider .products-track::-webkit-scrollbar-thumb:hover {
    background: #2E5C8E;
}

@media (max-width: 768px) {
    .brand-products-section {
        padding: 40px 0 !important;
    }
    
    .brand-products-section h2 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    .brand-products-slider .product-card {
        flex: 0 0 200px !important;
        min-width: 200px !important;
    }
}
