 /* =========================
   GLOBAL RESET
========================= */

* {
    box-sizing: border-box;
    margin:0;
    padding: 0;
}
.row{
    margin-left:0px!important;
}
html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;   /* ✅ FIX SCROLLBAR ISSUE */
    font-family: 'Inter', sans-serif;
}

/* BREADCRUMB */
.breadcrumb-wrap{
    background:#f9f9f9;
    padding:12px 0;
    border-bottom:1px solid #eee;
    
}

.breadcrumb-wrap a{
    color:#2e7d32;
    text-decoration:none;
}

.breadcrumb-wrap span{
    margin:0 8px;
    color:#999;
}
.my-text{
    margin:0px 45px;

}

/* =========================
   CONTAINER SYSTEM
========================= */

.container-global {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =========================
   SECTION SPACING SYSTEM
========================= */

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 576px) {
    .section-padding {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}
/* =========================
   Product Image
========================= */
.product-img {
 width: 150px;
 height: 150px;
 object-fit: cover;
}

/* =========================
   FOOTER MAP (RESPONSIVE FIX)
========================= */

.footer-map {
    width: 100%;
    max-width: 520px;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;   /* ✅ FIX INLINE GAP ISSUE */
}

/* Tablet */
@media (max-width: 992px) {
    .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    }

    .search-box {
        width: 100%;
    }

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

    .dropdown-submenu .submenu-right {
        position: static;
        display: none;
        box-shadow: none;
    }

    .dropdown-submenu:hover .submenu-right {
        display: none;
    }
    .my-text{
        margin:0px 25px;

    }
    .footer-map {
        max-width: 100%;
        height: 200px;
    }

    .my-location-title{ 
        text-align: left!important; 
    }
}

/* Mobile */
@media (max-width: 576px) {
    .my-text{
        margin:0px 15px;

    }
    .footer-map {
        height: 180px;
    }
    .my-location-title{ text-align: left!important; }
}



  







/* =========================
   CATEGORY CARDS
========================= */

.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.category-card img {
    transition: 0.4s;
}

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

/* =========================
   GLOBAL SAFETY FIX (IMPORTANT)
========================= */

.container,
.container-fluid,
.row {
    max-width: 100%;
}