/* General Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
}

p, li {
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
}

/* Main Content */
main {
    padding-top: 100px;
    padding-bottom: 50px;
}
 
section {
    margin-bottom: 3rem;
    text-align: center;
}
 
/* Responsive Sections */
.address-columns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
 
.address-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
}
 
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
 
.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    text-align: center;
}
 
.social-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
 
/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}
 
.whatsapp-fab img {
    width: 30px;
    height: 30px;
}
 
/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .header-container {
        padding: 1rem 2rem;
    }
}
 
@media screen and (max-width: 768px) {
    /* Mobile Navigation */
    .desktop-nav, .desktop-lang {
        display: none;
    }
 
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
    }
 
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255,255,255,0.95);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
 
    .mobile-nav.active {
        transform: translateX(0);
    }
 
    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        list-style: none;
        gap: 2rem;
    }
 
    .mobile-nav ul li a {
        font-size: 1.5rem;
        color: #000;
        text-decoration: none;
    }
 
    /* Responsive Adjustments */
    .address-columns {
        flex-direction: column;
        align-items: center;
    }
 
    .social-icons {
        align-items: center;
    }
 
    footer {
        grid-template-columns: 1fr;
    }
}
 
@media screen and (max-width: 480px) {
    main {
        padding-top: 80px;
    }
 
    .whatsapp-fab {
        width: 45px;
        height: 45px;
    }
 
    .whatsapp-fab img {
        width: 25px;
        height: 25px;
    }
}

/* Animations and Transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.contact-details ul {
    list-style-type: none;
    padding: 0;
}
.map {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
}
/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text h2 {
        font-size: 3rem;
    }
    .hero-image img {
        width: 350px;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    header {
        padding: 20px;
    }
    
    .desktop-nav, .desktop-lang {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        padding: 0 20px;
    }
    .hero-image {
        margin-bottom: 40px;
    }
    .hero-image img {
        width: 300px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .cta-content {
        padding: 40px;
    }
    .about-us-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .content-section h2 {
        font-size: 2.5rem;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
    footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
    .footer-column .logo {
        margin: 0 auto 20px;
        display: block;
    }
    .footer-column .copyright-text {
        margin: 0 auto;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .brands-grid, .marketplace-grid, .certification-grid {
        gap: 30px;
    }
    .brands-grid img, .marketplace-grid img, .certification-grid img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 20px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-text h2 {
        font-size: 2rem;
    }
    .hero-image img {
        width: 250px;
    }
    .content-section h2 {
        font-size: 2rem;
    }
    .button {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}