* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #29B6F6;
    --primary-dark: #0288D1;
    --primary-light: #4FC3F7;
    --secondary-color: #81D4FA;
    --accent-color: #FFD700;
    --accent-dark: #FFC107;
    --accent-light: #FFF59D;
    --text-color: #2d2d2d;
    --text-light: #666;
    --text-muted: #999;
    --white: #fff;
    --light-bg: #f8f9fa;
    --light-bg-2: #E1F5FE;
    --border-color: #B3E5FC;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 2px 8px rgba(41, 182, 246, 0.15);
    --shadow-lg: 0 10px 30px rgba(41, 182, 246, 0.25);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #29B6F6 0%, #0288D1 100%);
    --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --gradient-hero: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 50%, #0288D1 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(41, 182, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(41, 182, 246, 0.5);
    background: var(--primary-dark);
}

.top-bar {
    background: linear-gradient(90deg, #0288D1, #29B6F6);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.95);
}

.top-bar-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.95);
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary-light);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-bar {
    display: flex;
    flex: 1;
    max-width: 550px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--light-bg-2);
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(41, 182, 246, 0.2);
    background: var(--white);
}

.search-bar input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    background: transparent;
}

.search-bar button {
    padding: 14px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--accent-color);
    color: var(--text-color);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.account-btn, .cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
    background: var(--light-bg-2);
}

.account-btn:hover, .cart-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-accent);
    color: var(--text-color);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 50%;
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.main-nav {
    background: var(--gradient-primary);
    padding: 0;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}

.nav-list {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list li a:hover {
    background: rgba(255,255,255,0.15);
}

.nav-list li a:hover::before {
    width: 100%;
}

.nav-list li.active a {
    background: var(--accent-color);
    color: var(--text-color);
}

.nav-list li.active a::before {
    width: 100%;
    background: var(--white);
}

.wholesale-btn {
    background: var(--gradient-accent);
    border-radius: 50px;
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    color: var(--text-color);
}

.wholesale-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: var(--accent-dark);
}

.hero {
    background: var(--gradient-hero);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    font-weight: 400;
}

.shipping-banner {
    background: var(--accent-color);
    padding: 18px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.shipping-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.shipping-content i {
    font-size: 1.5rem;
    animation: truck 2s ease-in-out infinite;
}

@keyframes truck {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.categories {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg-2) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    justify-items: center;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 3px solid var(--primary-light);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: var(--light-bg-2);
}

.category-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
    border: 3px solid var(--primary-light);
    padding: 5px;
    background: var(--white);
}

.category-card:hover img {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.category-card span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.products {
    padding: 70px 0;
    background: var(--light-bg-2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.product-card:hover::before {
    transform: scaleX(1);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-accent);
    color: var(--text-color);
    padding: 8px 15px;
    font-size: 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
    background: var(--light-bg-2);
    border-radius: 15px;
    transition: var(--transition);
}

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

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.4;
    min-height: 45px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.new-price {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-buy {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(41, 182, 246, 0.4);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 182, 246, 0.5);
    background: var(--accent-color);
    color: var(--text-color);
}

.benefits {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--light-bg-2) 0%, var(--white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--primary-light);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    background: var(--light-bg-2);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.benefit-card:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.displays-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg-2) 100%);
}

.partners {
    padding: 60px 0;
    background: var(--white);
    border-top: 3px solid var(--primary-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    justify-items: center;
}

.partner-logo {
    padding: 25px 35px;
    background: var(--light-bg-2);
    border-radius: 15px;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-light);
}

.partner-logo:hover {
    border-color: var(--accent-color);
    background: var(--accent-light);
    transform: translateY(-3px);
}

.wholesale-cta {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-color);
}

.wholesale-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.main-footer {
    background: #01579B;
    color: var(--white);
    padding: 70px 0 25px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

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

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #B3E5FC;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--primary-light);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.2rem;
    border: 2px solid var(--primary-light);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--accent-color);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #81D4FA;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--white);
}

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

.whatsapp-float a:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-links {
        justify-content: center;
    }
    
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        flex: 1;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .search-bar {
        width: 100%;
        max-width: 100%;
        order: 3;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-banner {
        padding: 12px 10px;
    }
    
    .shipping-content {
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .hero {
        padding: 60px 0;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0288D1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 2px solid #E1F5FE;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0288D1;
    cursor: pointer;
}

.mobile-menu-user {
    padding: 20px;
    background: #E1F5FE;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #29B6F6;
}

.mobile-menu-user-info h4 {
    color: #0288D1;
    font-size: 1rem;
}

.mobile-menu-user-info p {
    font-size: 0.8rem;
    color: #666;
}

.mobile-menu-user-actions {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
}

.mobile-menu-user-actions a {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-mobile-account {
    background: #29B6F6;
    color: white;
}

.btn-mobile-cart {
    background: #FFD700;
    color: #333;
}

.mobile-nav-list {
    padding: 20px;
}

.mobile-nav-list li {
    border-bottom: 1px solid #E1F5FE;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav-list li a:hover {
    color: #29B6F6;
    padding-left: 10px;
}

.mobile-nav-list li a.active {
    color: #29B6F6;
    font-weight: 700;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 2px solid #E1F5FE;
}

.mobile-contact-info {
    margin-bottom: 15px;
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.mobile-contact-info i {
    color: #29B6F6;
}

.mobile-social-links {
    display: flex;
    gap: 10px;
}

.mobile-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E1F5FE;
    color: #29B6F6;
    transition: all 0.3s;
}

.mobile-social-links a:hover {
    background: #29B6F6;
    color: white;
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo p {
        font-size: 0.7rem;
    }
    
    .header-actions {
        width: auto;
        gap: 10px;
    }
    
    .account-btn span, .cart-btn span {
        display: none;
    }
    
    .account-btn, .cart-btn {
        padding: 10px 14px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 12px;
    }
    
    .category-card img {
        width: 60px;
        height: 60px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .categories, .products, .benefits {
        padding: 40px 0;
    }
    
    .top-bar {
        display: none;
    }
    
    .shipping-banner {
        padding: 10px;
    }
    
    .shipping-content {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .wholesale-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
}