* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Spartan", sans-serif;
}

.section-p1 {
    padding: 80px 40px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}




/* Waluemax Design System */
:root {
    --deep-blue: #012C4A;
    --soft-green: #21b8ab;
    --light-gray: #eaebec;
    --white: #fff;
    --text-dark: #21b8ab;
    --text-light: #2aada2e7;
    --shadow: 0 2px 10px rgba(1, 44, 74, 0.07);
    --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Poppins', Arial, sans-serif;
}

/* .btn-org{
    background: #21b8ab !important;
    color: #fff !important;
    font-weight: 500 !important;
    font-size: 18px !important;
} */



/* Header & Navbar */
.wmx-header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 80px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.wmx-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

.wmx-logo {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wmx-logo img {
    cursor: pointer;
}

.wmx-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-blue);
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.wmx-nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wmx-nav-links li a {
    color: var(--deep-blue);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    /* border-radius: 20px; */
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
}

.wmx-nav-links li a.active,
.wmx-nav-links li a:hover {
    color: var(--soft-green);
}

.wmx-nav-links li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--soft-green);
    transition: all 0.5s ease;
}

.wmx-nav-links li a.active::after,
.wmx-nav-links li a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    color: var(--deep-blue);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--soft-green);
    color: var(--white);
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wmx-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.wmx-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep-blue);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.wmx-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.wmx-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.wmx-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .wmx-navbar {
        justify-content: space-between;
        padding: 0.5rem;
    }

    .wmx-hamburger {
        display: flex;
        order: 3;
    }

    .wmx-nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wmx-nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .wmx-nav-links li {
        width: 100%;
        text-align: center;
    }

    .wmx-nav-links li a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid var(--light-gray);
    }

    .cart-icon {
        order: 2;
        margin-right: 1rem;
        display: flex;
        align-items: center;
    }

    .cart-icon a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }

    .wmx-logo {
        order: 1;
    }

    .wmx-dropdown-content {
        position: static;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .wmx-dropdown:hover .wmx-dropdown-content {
        display: none;
    }
}

/* Hero Section */
.wmx-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(120deg, var(--deep-blue) 60%, var(--soft-green) 100%);
    color: var(--white);
    min-height: 420px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.wmx-hero-content {
    flex: 1;
    z-index: 1;
    max-width: 600px;
}

.wmx-hero-content h1 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.wmx-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0f7ef;
}

.wmx-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.wmx-btn-primary {
    background: var(--soft-green);
    color: var(--deep-blue);
    box-shadow: 0 2px 8px rgba(93, 204, 142, 0.08);
}

.wmx-btn-primary:hover {
    background: var(--white);
    color: var(--soft-green);
    border: 1px solid var(--soft-green);
}

.wmx-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.wmx-hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* filter: drop-shadow(0 10px 20px rgba(1,44,74,0.10)); */
    border-radius: 12px;
}

/* --- Hero Slider Styles (Pastel Blue/Green, Left Content) --- */
.wmx-hero-slider {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: #e6f2f0;
    /* pastel blue-green */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.wmx-slider-wrapper {
    display: flex;
    width: 100%;
    height: 70vh;
    position: relative;
}


.wmx-slide {
    display: none;
    flex: 1 0 100%;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1);
    opacity: 0;
    z-index: 1;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #e6f2f0;
}

.wmx-slide.active {
    display: flex;
    opacity: 1;
    z-index: 2;
}

.wmx-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.wmx-slide-content {
    color: #1a3a3a;
    max-width: 600px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
    margin-left: 80px;
    align-items: flex-start;
    min-width: 320px;
    padding: 0 20px;
}

.wmx-slide-content h1 {
    width: 80%;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a3a3a;
    text-shadow: 0 2px 8px rgba(230, 242, 240, 0.15);
}

.wmx-slide-content p {
    font-size: 1.15rem;
    color: #3b5c5c;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 4px rgba(230, 242, 240, 0.10);
}

.wmx-btn-primary {
    background: var(--soft-green);
    color: #fff;
    box-shadow: 0 2px 8px rgba(191, 227, 208, 0.08);
    /* border: 1px solid #bfe3d0; */
}

.wmx-btn-primary:hover {
    background: #e6f2f0;
    color: #397575;
    border: none;
}

.wmx-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #21b8ab;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}


.wmx-slider-btn:hover {
    background: #21b8ab;
    color: #fff;
}

.wmx-slider-btn.prev {
    left: 2%;
}

.wmx-slider-btn.next {
    right: 2%;
}

.wmx-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 11;
}

.wmx-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: White;
    border: 2px solid White;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.wmx-slider-dots .dot.active {
    background: var(--soft-green);
    border: 2px solid #e6f2f0;
}

/* --- Product Category Slider Section --- */
.wmx-category-slider-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    gap: 5px;
    overflow: hidden;
    padding: 50px 20px;
}



/* padding: 50px;
 .cat-sliter{

 } */

.wmx-category-slider-section h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.wmx-category-slider-section h4 {
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

/* .wmx-category-slider-section h4:hover {
    color: var(--soft-green);
} */

.wmx-section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    /* letter-spacing: 0.5px; */
}

.wmx-section-title1 {

    font-size: 2.1rem;
    font-weight: 600;
    color: var(--deep-blue);

    /* letter-spacing: 0.5px; */
}

.wmx-category-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90%;
    margin: 0;
    /* padding: 0 40px; */

}

.wmx-category-slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wmx-category-slider-track::-webkit-scrollbar {
    display: none;
}

.wmx-category-slide {
    background: #fff;
    box-shadow: 0 2px 12px rgba(33, 184, 171, 0.07);
    min-width: 150px;
    max-width: 150px;
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.2rem 1rem 0rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}


.wmx-category-slide a {
    text-decoration: none;
    text-align: center;
}

.wmx-category-slide img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    /* border-radius: 12px; */
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(33, 184, 171, 0.08);
    transition: all 0.3s ease;
}

.wmx-category-slide span {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--deep-blue);
    margin-top: 0.5rem;
    text-align: center;
}

.wmx-category-slide:hover img {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 6px 24px rgba(33, 184, 171, 0.13);
}

.wmx-category-slider-btn {
    background: #fff;
    color: var(--soft-green);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(33, 184, 171, 0.10);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    margin: 0 40px;
}

.wmx-category-slider-btn.prev {
    left: -24px;
}

.wmx-category-slider-btn.next {
    right: -24px;
}

.wmx-category-slider-btn:hover {
    background: var(--soft-green);
    color: #fff;
}

.wmx-category-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.wmx-category-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bfe3d0;
    border: 2px solid #bfe3d0;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.wmx-category-slider-dots .dot.active {
    background: var(--soft-green);
    border: 2px solid #e6f2f0;
}

/* --- Compact Feature Products Section (Updated) --- */
.wmx-feature-products-section {
    background: #fff;
    width: 100%;
    padding-bottom: 40px;
}


.wmx-feature-products-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto 1rem auto;
    padding: 30px 80px;
    flex-wrap: wrap;
    gap: 0.5rem;
}



.wmx-section-title {
    width: 30%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0;
    flex: 0 0 auto;
    text-align: left;
}

.wmx-category-slider-names-wrapper {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 1 1 0;
    min-width: 0;
    width: 70%;
}

.wmx-category-slider-arrow {
    background: #fff;
    color: var(--soft-green);
    border: 1px solid #e6f2f0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin: 0 2px;
}

.wmx-category-slider-arrow:hover {
    background: var(--soft-green);
    color: #fff;
}

.wmx-category-slider-names {
    display: flex;
    gap: 0.3rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    flex: 1 1 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100;
    min-width: 0;
}

.wmx-category-slider-names::-webkit-scrollbar,
.wmx-category-slider-names:hover::-webkit-scrollbar,
.wmx-category-slider-names::-webkit-scrollbar-thumb {
    display: none;
}

.wmx-category-name {
    background: #fff;
    color: var(--deep-blue);
    border: none;
    border-radius: 16px;
    padding: 0.38rem 1rem;
    font-size: 1.01rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    white-space: nowrap;
    position: relative;
}

.wmx-category-name::after,
.wmx-category-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 0;
    height: 3px;
    background: var(--deep-blue);
    transition: all 0.5s ease;
}

.wmx-category-name.active::after,
.wmx-category-name:hover::after {
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    padding: 0 80px;
    gap: 20px;
    margin: 20px auto 0 auto
}

/* .product-card{
    
} */

.cart-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #21b8ab;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    animation: slideIn 0.3s ease-out;
}

.wmx-feature-product-info h3 {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
    cursor: pointer;
}

.wmx-feature-product-info p {
    font-size: 19rem;
    color: #397575;
    margin: 0;
}



/* Highlighted Title */


















/* Section: International Footprint */




.international-footprint {
    background: #f9f9f9;
    width: 100%;
    padding: 40px 20px;
}

.footprint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    gap: 40px;
    transition: all 0.3s ease;
}


.footprint-image {
    flex: 40%;
}

.footprint-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 300px;
    object-fit: cover;
}


.footprint-content {
    flex: 60%;
}

.footprint-content h2 {
    font-size: 40px !important;
    color: var(--deep-blue);
    margin-bottom: 30px;

}

.footprint-content p {
    color: #444;
    font-size: 18px;
    margin-bottom: 30px;
}

.flags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-content: center;
}


.flags div:hover img {
    transform: scale(1.1);
}

.flags div {
    width: 100px;



    text-align: center;
    transition: all 0.3s ease;
}

.flags img {
    width: 100%;
    height: 70px;

    border-radius: 5px;
    transition: transform 0.3s ease;
    /* smooth zoom */
}

.flags div a {
    text-decoration: none;
    color: #012C4A;

}



.flags span {

    display: block;
    margin-top: 5px;
    font-size: 14px;
}



/* Section: Certifications */




.certifications {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.certifications h2 {
    font-size: 50px;
    color: var(--deep-blue);
    margin-bottom: 40px;
}

.certifications p {
    width: 60%;
    color: #444;
    font-size: 16px;
}

.certifications img {

    height: 60px;
    margin: 60px auto 30px auto;
}

.cert-logos img {


    width: 80px;
    height: auto;
}

/* Footer Styles */

.wmx-footer {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 40px 80px;
    margin-top: 4rem;
    max-width: 100%;

}

.wmx-footer-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.wmx-footer-column h3 {
    color: var(--soft-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.wmx-footer-column p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wmx-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wmx-footer-column ul li {
    margin-bottom: 0.8rem;
}

.wmx-footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmx-footer-column ul li a:hover {
    color: var(--soft-green);
}

.wmx-social-links {
    display: flex;
    gap: 1rem;
}

.wmx-social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.wmx-social-links a:hover {
    color: var(--soft-green);
}

.wmx-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
}

.wmx-contact-info li i {
    color: var(--soft-green);
    width: 20px;
}

.wmx-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #e0e0e0;
}

.wmx-newsletter {
    margin-top: 20px;
}

.wmx-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.wmx-newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.wmx-newsletter-form button {
    background-color: #21b8ab;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wmx-newsletter-form button:hover {
    background-color: #1a9589;
}



Updated Dropdown Menu Styles .wmx-dropdown {
    position: relative;
}

.wmx-dropdown-content {
    display: none;
    position: absolute;
    top: 250%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 900px;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.wmx-dropdown:hover .wmx-dropdown-content {
    top: 70%;
    display: block;
    opacity: 1;
}

.wmx-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.wmx-dropdown-banner {
    margin-top: 20px;
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.wmx-dropdown-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* Existing dropdown styles remain the same */
.wmx-dropdown-column h3 {
    color: var(--soft-green);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.wmx-dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wmx-dropdown-column ul li {
    margin-bottom: 8px;
}

.wmx-dropdown-column ul li a {
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.wmx-dropdown-column ul li a:hover {
    color: var(--soft-green);
}






/* -----------------------------Banner Slider------------------------------------- */

@media (max-width: 1200px) {
    .wmx-header {
        padding: 15px 40px;
    }

  
    .footprint {
        padding: 30px 15px;
        gap: 30px;
    }

    .footprint-content h2 {
        font-size: 32px !important;
    }

    .flags {
        gap: 15px;
    }

    .flags div {
        width: 90px;
    }

    .certifications h2 {
        font-size: 40px;
    }

    .certifications p {
        width: 70%;
    }

    .wmx-nav-links li a {
        gap: -111px;
        font-size: 12px;
    }

    .wmx-logo img {
        width: 100px;
    }
    

}

@media (max-width: 992px) {
    .wmx-nav-links {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: center;
        z-index: 99;
    }

    .wmx-nav-links.active {
        display: flex;
    }

    .wmx-hamburger {
        display: flex;
    }

  

    .footprint {
        flex-direction: column;
        text-align: center;
    }

    .footprint-image {
        flex: 100%;
        order: 1;
    }

    .footprint-content {
        flex: 100%;
        order: 2;
    }

    .flags {
        justify-content: center;
    }

    .certifications h2 {
        font-size: 36px;
    }

    .certifications p {
        width: 80%;
    }

    .container-form {
        flex-direction: column;
    }

    .container-form .left,
    .container-form .right {
        width: 100%;
    }

    .container-form .left img {
        max-height: 300px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .wmx-header {
        padding: 20px 30px;
    }

    .wmx-logo img {
        height: 45px;
    }

    .wmx-nav-links li a {
        font-size: 1.1rem;
        padding: 1rem;
    }

  
    .wmx-social-links {
        justify-content: center;
    }



    .footprint-content h2 {
        font-size: 28px !important;
    }

    .footprint-content p {
        font-size: 16px;
    }

    .flags div {
        width: 80px;
    }

    .flags img {
        height: 60px;
    }

    .flags span {
        font-size: 12px;
    }

    .certifications {
        padding: 30px 15px;
    }

    .certifications h2 {
        font-size: 32px;
    }

    .certifications p {
        width: 90%;
        font-size: 15px;
    }

    .certifications img {
        height: 50px;
        margin: 40px auto 20px auto;
    }

    .container-form h2 {
        font-size: 24px;
    }

    .container-form input,
    .container-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .container-form button {
        padding: 10px;
        font-size: 16px;
    }
    .banner-section {
        padding: 0 !important;
    }

    .banner-container{
        padding: 0 !important;
        gap: 5px !important;

    }

    .banner-container .banner {
        flex: 0 0 calc( 40% - 16px);
        max-width: calc(40% - 16px);
    }
}

@media (max-width: 480px) {
    .wmx-header {
        padding: 15px 20px;
    }

    .cart-icon a {
        color: var(--deep-blue);
    }

    .wmx-logo img {
        height: 40px;
    }

    .wmx-slider-dots {
        display: none;
    }

    .wmx-slide-content {
        align-items: center;
        text-align: center;
        margin-left: 0;
    }
    .wmx-slide-content h1, .wmx-slide-content p{
        color: black !important;

    }

    .wmx-slide-content h2 {
        font-size: 16px;

    }

    .wmx-category-slider-section {
        text-align: center;
    }

    .wmx-category-slider-section h4 {
        font-size: 12px;
        margin-top: -8px;
    }

    .wmx-slide-content h2 p {
        font-size: 12px;
        margin-left: 0;

    }

    .wmx-nav-links li a {
        font-size: 1rem;
        padding: 0.8rem;
    }


   
    

    .wmx-feature-products-section {
        margin: 30px;
    }

    .wmx-feature-products-header {
        /* width: 200px; */
        display: flex;
        flex-direction: column;
        padding: 0;
        align-items: center;
    }

    .banner-section {
        padding: 0 !important;
    }

    .banner-container{
        padding: 0 !important;
        gap: 5px !important;

    }

    .banner-container .banner {
        flex: 0 0 calc( 40% - 16px);
        max-width: calc(40% - 16px);
    }

    .grid-container{
        padding:30px !important;
    }





    .wmx-feature-products-header .wmx-section-title {
        width: 100%;
        text-align: center;
    }

    .wmx-category-slider-names-wrapper {
        width: 90%;
    }

    .wmx-category-slider-names {
        gap: 1px;
    }

    .wmx-category-name {
        font-size: 11px;
    }

   

    .footprint {
        padding: 20px 10px;
    }

    .footprint-content h2 {
        font-size: 24px !important;
    }

    .flags div {
        width: 70px;
    }

    .flags img {
        height: 50px;
    }

    .certifications {
        padding: 20px 10px;
    }

    .certifications h2 {
        font-size: 28px;
    }

    .certifications p {
        width: 100%;
        font-size: 14px;
    }

    .certifications img {
        height: 40px;
        margin: 30px auto 15px auto;
    }

    .container-form {
        padding: 15px;
    }

    .container-form .right {
        padding: 20px 15px;
    }

    .container-form h2 {
        font-size: 20px;
    }

    .container-form label {
        font-size: 14px;
    }

    .container-form input,
    .container-form textarea {
        padding: 8px;
        font-size: 13px;
    }

    .container-form button {
        padding: 8px;
        font-size: 14px;
    }
    .banner-slider-container{
        padding: 10px;
    }
}

/* -----------------------------Banner Slider------------------------------------- */


.banner-slider-container {
    padding: 20px 30px !important;
    width: 100%;
}

.banner-section {
    padding: 40px 80px;
    text-align: center;
}

.title {
    font-size: 40px;
    font-weight: bold;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
}

.banner-slider-wrapper {
    position: relative;
    overflow: visible;

}

.banner-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grabbing;
    user-select: none;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
}

.banner-container::-webkit-scrollbar {
    height: 0;
    /* optional: hide scrollbar */
}

.banner {
    flex: 0 0 calc(20% - 16px);
    /* 5 banners in 100% width */
    max-width: calc(20% - 16px);
}

.banner img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner img:hover {
    transform: scale(1.05);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #21b8ab;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.arrow:hover {
    background-color: var(--soft-green);
    color: white;
}

.arrow.left {
    left: 1px;
}

.arrow.right {
    right: 1px;
}






.container-form {
    display: flex;
    background: white;

    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.container-form .left {
    flex: 1;
    min-width: 300px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container-form .left img {
    width: 100%;
    max-width: 800px;
    height: 80%;
}

.container-form .right {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: white;
}

.container-form h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--deep-blue);
}

.container-form form {
    display: flex;
    flex-direction: column;
}

.container-form label {
    margin: 10px 0 5px;
    font-weight: 600;
}

.container-form input,
textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 16px;
    resize: vertical;
}

.container-form button {
    padding: 12px;
    background: var(--soft-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.container-form button:hover {
    background: var(--text-light);
}


.wmx-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.wmx-whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

.wmx-whatsapp-float i {
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .wmx-footer {
        padding: 40px 40px;
    }

    .wmx-footer-content {
        grid-template-columns: repeat(2, 1fr);   /* 2-column grid */
        gap: 2.5rem;
    }
}

/* ---------- Mobile (≤ 600px) ---------- */
@media (max-width: 600px) {
    .wmx-footer {
        padding: 30px 20px;
    }

    .wmx-footer-content {
        grid-template-columns: 1fr;              /* single column */
        gap: 2rem;
        text-align: center;
    }

    /* stack social icons nicely */
    .wmx-social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    /* make the newsletter input/button full-width */
    .wmx-newsletter-form {
        flex-direction: column;
    }

    .wmx-newsletter-form input,
    .wmx-newsletter-form button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* center the contact list bullets */
    .wmx-contact-info li {
        justify-content: center;
    }
}