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

 .poppins-thin {
  font-family: 'Lato', sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: 'Lato', sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-style: italic;
}



:root {
    --bs-primary: #8bc53f;
    --bs-primary-rgb: 139, 197, 63;
}
body, html {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    max-width: 100%;
}

/* Force Lato everywhere on the public site (icon fonts excluded) */
body,
body *:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not([class*="fa-"]) {
    font-family: 'Lato', sans-serif !important;
}

/* Normalize legacy CMS rich-text: strip inline font-size/letter-spacing carried
   over from the old admin editor so every rich-text block shares one rhythm.
   Only typography is reset - layout inline styles (display/margin/width) stay. */
.cms-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
    letter-spacing: normal;
}

.cms-content *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: normal !important;
    font-family: 'Lato', sans-serif !important;
}

.cms-content h1, .cms-content h2, .cms-content h3,
.cms-content h4, .cms-content h5, .cms-content h6 {
    letter-spacing: normal !important;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
}

.cms-content h2 { font-size: 1.35rem !important; }
.cms-content h3 { font-size: 1.15rem !important; }
.cms-content h4, .cms-content h5, .cms-content h6 { font-size: 1rem !important; }

.cms-content p { margin-bottom: 12px; }
.cms-content p:last-child { margin-bottom: 0; }
.cms-content img { max-width: 100%; height: auto; }

/* Header */
header {
    background: #000;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 5px 10px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: #7ed957;
    font-style: italic;
    letter-spacing: 2px;
}

.logo img {
    width: 150px;
    display: inline;
}

.header-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .header-right span {
        color: #fff;
        font-size: 13px;
        cursor: pointer;
    }

.lang-selector {
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.search-icon::before {
    content: '🔍';
    font-size: 18px;
}

.cart-icon {
    width: 35px;
    height: 35px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

/* Sidebar Menu */
/*.sidebar {
    position: fixed;
    left: -100%;
    top: 84px;
    background: rgba(20, 20, 20, 0.98);
    width: 100%;
    padding: 0;
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

    .sidebar.active {
        left: 0;
    }*/


.fullscreen-offcanvas {
    width: 100% !important;
    height: 100vh;
}

.offcanvas-body {
    background: #141414;
    color: white;
}

.menu-link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #ddd;
    font-size: 18px;
}

    .menu-link:hover {
        color: #7ed957;
    }


    .sidebar-section h3 {
        color: #7ed957;
        font-size: 14px;
        padding: 20px 25px 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.sidebar a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

    .sidebar a:hover {
        background: rgba(126, 217, 87, 0.1);
        color: #7ed957;
        border-left-color: #7ed957;
        padding-left: 30px;
    }

/* Overlay */
.overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

    .overlay.active {
        display: block;
    }




    /* Hero Section */
    .hero {
        margin-top: var(--header-h, 84px);
        /* height: 550px; */
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"%3E%3Cdefs%3E%3ClinearGradient id="g" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%23567d44;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%2388b378;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill="url(%23g)" width="1200" height="600"/%3E%3C/svg%3E');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hero-content {
        text-align: left;
        padding-left: 80px;
    }

        .hero-content h1 {
            font-size: 64px;
            color: #fff;
            line-height: 1.1;
            font-weight: 300;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-content .highlight {
            color: #b4ff00;
            font-weight: 700;
            font-style: italic;
        }

    .arrow {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 50px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

    .arrow-right {
        left: auto;
        right: 30px;
    }

    /* Product Grid */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 30px 20px;
        /* max-width: 1300px; */
        margin: 0 auto;
    }

        .product-grid::-webkit-scrollbar {
            display: none;
        }

    .product-grid-wrapper {
        position: relative;
        padding: 0;
    }

        .product-grid-wrapper .carousel-nav-btn {
            display: none;
        }

        .product-grid-wrapper .prev-btn {
            left: 6px;
        }

        .product-grid-wrapper .next-btn {
            right: 6px;
        }

        .product-grid-wrapper .carousel-nav-btn:disabled {
            opacity: 0.35;
            pointer-events: none;
        }

    .product-card {
        position: relative;
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        background-size: cover;
        background-position: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

        .product-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 15px 20px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
        }

    .product-label {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 0 12px;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        letter-spacing: 1px;
        z-index: 1;
    }

    /* Product card backgrounds */
    .bottle-card {
        background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"%3E%3Crect fill="%234a4a4a" width="400" height="300"/%3E%3C/svg%3E');
    }

    .knives-card {
        background: linear-gradient(135deg, #6b4423 0%, #4a2f1a 100%);
    }

    .peelers-card {
        background: linear-gradient(135deg, #5a7d5a 0%, #3d5a3d 100%);
    }

    .chopper-card {
        background: linear-gradient(135deg, #7d9b6f 0%, #5a7350 100%);
    }

    .knife-block-1 {
        background: linear-gradient(135deg, #8b6f47 0%, #6b5335 100%);
    }

    .knife-block-2 {
        background: linear-gradient(135deg, #3d4f4f 0%, #2a3535 100%);
    }

    /* Feature Banner */
    .feature-banner {
        /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"%3E%3Cdefs%3E%3ClinearGradient id="b" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%232a5298;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%234a7ac5;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill="url(%23b)" width="1200" height="400"/%3E%3C/svg%3E'); */
        background: white;
        background-size: cover;
        background-position: center;
        /* padding: 80px 50px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottle-display {
        width: 200px;
        height: 280px;
        background: linear-gradient(135deg, #2563b5 0%, #4a8dd8 100%);
        border-radius: 100px 100px 20px 20px;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .bottle-cap {
        width: 60px;
        height: 30px;
        background: #1a4a8a;
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 5px 5px 0 0;
    }

    .bottle-logo {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        color: #7ed957;
        font-weight: bold;
        font-size: 24px;
        font-style: italic;
    }

    /* Values Section */
    .values {
        display: flex;
        justify-content: space-around;
        padding: 70px 50px;
        background: #f8f9fa;
        gap: 40px;
    }

    .value-item {
        text-align: center;
        max-width: 320px;
        flex: 1;
    }

    .value-icon {
        width: 100px;
        height: 100px;
        background: #7ed957;
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 50px;
        color: #fff;
        box-shadow: 0 5px 20px rgba(126, 217, 87, 0.3);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .value-item:hover .value-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 30px rgba(126, 217, 87, 0.5);
    }

    .value-item h3 {
        color: #7ed957;
        font-size: 26px;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .value-item p {
        color: #555;
        font-size: 14px;
        text-align: center;
        line-height: 1.7;
    }

    /* Hygiene Section */
    .hygiene-section {
        background: linear-gradient(135deg, #d8c7ab 0%, #f0e5d3 100%);
        /* padding: 80px 100px; */
        display: flex;
        align-items: center;
        gap: 80px;
        position: relative;
    }

    .hygiene-content {
        flex: 1;
    }

        .hygiene-content h2 {
            font-size: 48px;
            color: #3a3a3a;
            margin-bottom: 30px;
            line-height: 1.2;
            font-weight: 300;
            letter-spacing: 2px;
        }

    .product-image {
        width: 100%;
    }

    .product-title {
        font-weight: 600;
        font-size: 1.5rem;
        color: #8ec153;
        line-height: 24px;
        text-align: left;
        display: inline-block;
    }

    .hygiene-image {
        flex: 1;
        display: flex;
        gap: 30px;
        align-items: flex-end;
    }

    .hygiene-inner-box {
        position: absolute;
        top: 290px;
        background: #ffffff;
        height: 550px;
        width: 415px;
        right: 117px;
    }


    .tiffin-box {
        width: 280px;
        height: 200px;
        background: linear-gradient(135deg, #b8d8b8 0%, #a0c8a0 100%);
        border-radius: 20px;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .water-bottle-small {
        width: 120px;
        height: 260px;
        background: linear-gradient(135deg, #b8d8b8 0%, #a0c8a0 100%);
        border-radius: 60px 60px 15px 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .tiffin-detail {
        position: absolute;
        top: 20px;
        left: 30px;
        right: 30px;
    }

    .tiffin-title {
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
        border-radius: 10px;
        text-align: center;
    }

        .tiffin-title h4 {
            font-size: 16px;
            color: #3a3a3a;
            margin-bottom: 5px;
        }

        .tiffin-title p {
            font-size: 11px;
            color: #777;
        }

    /* Product Showcase */
    .product-showcase {
        display: flex;
        justify-content: space-around;
        padding: 70px 50px;
        background: #fff;
        gap: 30px;
    }

    .showcase-item {
        text-align: center;
        max-width: 230px;
        flex: 1;
    }

    .showcase-image {
        width: 180px;
        height: 180px;
        margin: 0 auto 25px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .showcase-item:hover .showcase-image {
        transform: scale(1.08) translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .bottle-showcase {
        background: linear-gradient(135deg, #2563b5 0%, #4a8dd8 100%);
        border-radius: 50%;
    }

    .knife-showcase {
        background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
    }

    .chef-knife-showcase {
        background: linear-gradient(135deg, #424242 0%, #616161 100%);
    }

    .cutter-showcase {
        background: linear-gradient(135deg, #7ed957 0%, #6bc043 100%);
        border-radius: 50%;
    }

    .showcase-item h4 {
        font-size: 15px;
        color: #333;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .showcase-item p {
        font-size: 12px;
        color: #888;
        line-height: 1.5;
    }

    /* Map Section */
    .map-section {
        background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
        padding: 70px 50px;
        text-align: center;
    }

        .map-section h3 {
            font-size: 36px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 300;
        }

        .map-section p {
            color: #666;
            margin-bottom: 50px;
            font-size: 15px;
        }

    .map-container {
        max-width: 900px;
        margin: 0 auto;
        height: 350px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* Footer */
    footer {
        background: #000;
        color: #fff;
        padding: 60px 50px 30px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        max-width: 1300px;
        margin: 0 auto 40px;
        gap: 50px;
    }

    .footer-brand {
        max-width: 350px;
    }

    .footer-logo {
        font-size: 42px;
        font-weight: bold;
        color: #7ed957;
        font-style: italic;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .footer-brand p {
        color: #888;
        line-height: 1.8;
        font-size: 13px;
    }

    .footer-column {
        flex: 1;
    }

        .footer-column h4 {
            margin-bottom: 20px;
            color: #7ed957;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column a {
            display: block;
            color: #aaa;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 13px;
            transition: all 0.3s;
        }

            .footer-column a:hover {
                color: #7ed957;
                padding-left: 5px;
            }

    .social-icons {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        background: #7ed957;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        .social-icon:hover {
            background: #6bc043;
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 5px 15px rgba(107, 192, 67, 0.4);
        }

    /* Bootstrap Card Enhancements */
    .card {
        border: none;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        border-radius: 16px;
        background-color: #fff !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    }
    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #333;
        color: #666;
        font-size: 12px;
    }

    /* Scroll to top button */
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: #7ed957;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 24px;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(126, 217, 87, 0.4);
        transition: all 0.3s;
        opacity: 0;
        pointer-events: none;
    }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-top:hover {
            background: #6bc043;
            transform: translateY(-5px);
        }

    .product-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-card {
        height: 300px;
        border-radius: 18px;
    }

    .product-showcase {
        height: 400px;
        margin-bottom: 50px;
    }

        .product-showcase img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-showcase h4,
        p {
            margin-bottom: 0;
            text-align: justify;
        }

        .product-showcase h4 {
            font-weight: bold;
            font-size: large;
            color: grey;
        }

    .showcase-item {
        height: 100%;
        align-items: start;
        gap: 15px;
        flex-direction: column;
        display: flex;
    }

    .showcase-item-text {
        display: flex;
        align-items: start;
        gap: 10px;
        flex-direction: column;
    }

    /* =========================
           RESPONSIVE FIXES
           ========================= */

    /* Large Tablets (≤1200px) */
    @media (max-width: 1200px) {

        .product-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .values,
        .product-showcase {
            padding: 50px 30px;
        }
    }

    /* Tablets (≤992px) */
    @media (max-width: 992px) {

        header {
            padding: 10px 20px;
        }

        .hero {
            margin-top: var(--header-h, 76px);
        }

        .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }

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

        .hygiene-section {
            padding: 50px 30px;
        }

        .product-showcase {
            flex-wrap: wrap;
            height: auto;
        }

        .showcase-item {
            max-width: 45%;
        }

        .footer-content {
            flex-wrap: wrap;
        }
    }

    /* Mobile (≤768px) */
    @media (max-width: 768px) {

        .logo img {
            width: 90px;
        }

        .sidebar {
            width: 100%;
            left: -100%;
        }

            .sidebar.active {
                left: 0;
            }

        /*  .hero img {
        height: 300px;
        object-fit: cover;
    }*/

        .product-grid {
            grid-template-columns: 1fr;
        }

        .product-grid-wrapper {
            padding: 0;
        }

        .product-grid-wrapper .carousel-nav-btn {
            display: none;
        }

        .product-card {
            height: 260px;
        }

        .feature-banner img {
            height: auto;
        }

        .values {
            padding: 40px 20px;
        }

        .value-item h3 {
            font-size: 22px;
        }

        .hygiene-section img {
            height: auto;
        }

        .product-showcase {
            padding: 40px 20px;
        }

        .showcase-item {
            max-width: 100%;
        }

        .map-container {
            height: 250px;
        }

        footer {
            padding: 40px 20px;
        }

        .footer-content {
            flex-direction: column;
            gap: 30px;
        }

        .scroll-top {
            right: 15px;
            bottom: 15px;
        }
    }

    /* Small Mobile (≤480px) */
    @media (max-width: 480px) {

        .logo img {
            width: 80px;
        }

        /*  .hero img {
        height: 240px;
    }*/

        .product-label {
            font-size: 14px;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            font-size: 36px;
        }

        .map-section h3 {
            font-size: 26px;
        }
    }

    .footer-dark {
        background-color: #000000;
        color: #ffffff;
    }

    .footer-top {
        position: relative;
        padding: 64px 0;
        overflow: hidden;
    }

    .footer-bg {
        position: absolute;
        inset: 0;
        background: url('/images/world-map.png') center center / cover no-repeat;
        opacity: 0.2;
    }

    .footer-content {
        position: relative;
        z-index: 10;
    }

    .footer-desc {
        max-width: 420px;
        font-size: 18px;
        line-height: 1.7;
    }

    .text-primary {
        color: #22c55e;
    }

    .footer-divider {
        border-top: 1px solid #374151;
    }

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

    .footer-brand {
        font-size: 24px;
        font-weight: bold;
        color: #ffffff;
        text-decoration: none;
    }

    .footer-muted {
        font-size: 14px;
        color: #9ca3af;
    }

    .social-links a {
        color: #9ca3af;
        margin-left: 12px;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.2s ease-in-out;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 32px;
        padding-top: 32px;
        border-top: 1px solid #374151;
    }

    .footer-label {
        display: inline-block;
        padding: 4px 8px;
        border: 1px solid #22c55e;
        color: #22c55e;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .footer-contact-link {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: #9ca3af;
        text-decoration: none;
        line-height: 1.5;
        transition: color 0.2s ease-in-out;
    }

        .footer-contact-link i {
            color: #91c73e;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-contact-link:hover {
            color: #91c73e;
        }

    .footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

        .footer-list li {
            margin-bottom: 8px;
        }

        .footer-list a {
            color: #9ca3af;
            text-decoration: none;
        }

            .footer-list a:hover,
            .social-links a:hover {
                color: #22c55e;
            }


    .global-map-section {
        margin-bottom: 0!important;
        background: #ffffff;
    }

    .map-heading-block {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .map-wrapper {
        position: relative;
        width: 100%;
    }

        .map-wrapper img {
            width: 100%;
            height: auto;
        }

    .world-map {
        width: 100%;
        height: 600px !important;
        background: transparent;
    }

        .world-map .jvm-container {
            width: 100% !important;
            height: 100% !important;
        }

    .jvm-zoom-btn {
        display: none;
    }

    .world-map .jvm-marker {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
        cursor: pointer;
    }

    .jvm-tooltip {
        background-color: #91c73e !important;
        color: #ffffff !important;
    }

    .map-text {
        position: absolute;
        top: 45%;
        left: 5%;
        max-width: 400px;
        color: #000;
        pointer-events: none;
    }

        .map-text h2 {
            font-size: 36px;
            font-weight: 700;
        }

        .map-text p {
            font-size: 16px;
        }
.img-hover {
    transition: all 0.4s ease;
}

    .img-hover:hover {
        transform: scale(1.06);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

.thumb-img {
    cursor: pointer;
    border: 2px solid transparent;
}

    .thumb-img:hover {
        border: 2px solid #000;
    }
@media only screen and (min-width: 320px) and (max-width: 768px) {

    header {
        padding: 8px 12px !important;
    }
    .logo img {
        width: 90px !important;
    }
    .header-right {
        gap: 12px !important;
    }
    .icons {
        gap: 12px !important;
    }
    .icons a img {
        width: 32px !important;
    }
    .icons i {
        font-size: 16px !important;
    }
    .lang-selector {
        font-size: 12px !important;
    }
    .lang-selector img {
        width: 18px !important;
    }
    .menu-toggle {
        font-size: 20px !important;
        padding: 4px 8px !important;
    }

    .hero {
        margin-top: var(--header-h, 68px) !important;
    }
    .hero.carousel,
    .hero.carousel .carousel-inner,
    .hero.carousel .carousel-item,
    .hero.carousel .carousel-item img {
        height: auto !important;
        background: none !important;
    }

    .section-factory {
        padding: 60px 0 !important;
        height: auto !important;
    }

    .global-map-section {
        min-height: auto !important;
    }

    .map-text {
        top: 24% !important;
    }

    .world-map {
        height: 300px;
    }

    .values-grids {
        justify-content: start;
        align-items: start !important;
        flex-direction: column;
    }

        .values-grids .p_div {
            left: 112% !important;
            width: 200px !important;
            border-left: 1px solid black;
            padding-left: 10px;
            min-height: 126px !important;
            display: flex;
            align-items: center;
        }
}

/* Breadcrumbs Styling */
.breadcrumb {
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/* First-in-body breadcrumb doubles as the page header spacer */
.breadcrumb.breadcrumb-top {
    margin-top: var(--header-h, 84px);
}
.breadcrumb b, .breadcrumb a, .breadcrumb {
    color: #000 !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover {
    color: #8bc53f !important;
    text-decoration: underline;
}

/* Product Page Breadcrumbs */
.bc-bar {
    margin-top: var(--header-h, 75px) !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 14px 0;
}
.bc-bar a, .bc-bar .bc-cur, .bc-bar a.bc-cur, .bc-bar .bc-sep {
    color: #000 !important;
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.bc-bar a:hover {
    color: #8bc53f !important;
    text-decoration: underline;
}

/* Premium Product Card Design (Category List Page) */
.category-product-card-link {
    display: block;
    color: inherit;
    text-decoration: none !important;
}

.category-product-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.category-product-card::before {
    display: none !important; /* Disables the global black shadow gradient overlay */
}

.category-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    border-color: #8bc53f; /* Border changes to brand green on hover */
}

.category-product-card .img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    margin: 0 !important;
    padding: 0 !important; /* Fully flat, no padding */
}

.category-product-card .img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important; /* Full width/height, cropped to fit beautifully */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-product-card:hover .img-wrapper img {
    transform: scale(1.08); /* Slight hover zoom */
}

.category-product-card .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.category-product-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-product-card .sku-badge {
    background: #f1f3f5;
    color: #495057;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 0; /* Squared badge look */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-product-card .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.category-product-card:hover .product-title {
    color: #8bc53f; /* Title highlights in brand green */
}

.category-product-card .product-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 20px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-product-card .colors-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.category-product-card .colors-label {
    font-size: 0.78rem;
    color: #777;
    font-weight: 600;
}

.category-product-card .swatches-list {
    display: flex;
    gap: 6px;
}

.category-product-card .swatches-list .swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
    display: inline-block;
    transition: transform 0.2s ease;
}

.category-product-card .swatches-list .swatch:hover {
    transform: scale(1.2);
}

.category-product-card .card-action {
    margin-top: auto;
}

.category-product-card .btn-explore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: #8bc53f;
    border: 2px solid #8bc53f;
    border-radius: 0;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-product-card:hover .btn-explore {
    background: #8bc53f;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(139, 197, 63, 0.3);
}

.category-product-card .btn-explore i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.category-product-card:hover .btn-explore i {
    transform: translateX(4px); /* Arrow moves to the right on hover */
}




/* ── Cookie consent ── */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    background: #000000;
    color: #ffffff;
    border-top: 1px solid #333333;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-consent.hide {
    transform: translateY(110%);
    opacity: 0;
}

.cookie-consent h4 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.cookie-consent p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cfcfcf;
    margin: 0;
    max-width: 70ch;
}

.cookie-consent a {
    color: #8bc53f;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cc-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cc-accept {
    background: #8bc53f;
    border: 1px solid #8bc53f;
    color: #ffffff;
}

.cc-accept:hover {
    background: #7ab317;
    border-color: #7ab317;
}

.cc-reject {
    background: transparent;
    border: 1px solid #666666;
    color: #ffffff;
}

.cc-reject:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

/* Lift the scroll-to-top button clear of the banner while it is shown */
body.cc-open .scroll-top {
    bottom: 150px;
}

@media (max-width: 767px) {
    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 18px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cc-btn {
        flex: 1;
        padding: 11px 12px;
    }

    body.cc-open .scroll-top {
        bottom: 190px;
    }
}
