/* Frontend layout – prevent black/blank screen, ensure content visible */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff !important;
    background: #fff !important;
    color: #333;
}
#navbar_top {
    display: block !important;
    visibility: visible !important;
}
#content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 300px;
    overflow-x: hidden;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: #fff !important;
}
#content > section,
#content > div {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both;
    display: block;
}
/* Force no sidebar column on home – all rows full width */
#content .row .col-sm-2,
#content .row .col-sm-3,
#content .slider-section .row .col-sm-2 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1200px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
@media (min-width: 576px) {
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
}
@media (min-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}
@media (min-width: 992px) {
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

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

/* ========== Reference-style stacked hero (product collage) ========== */
.hero-stacked {
    padding: 20px 0 24px;
    background: #f8f9fa;
    width: 100% !important;
    float: none !important;
}
.hero-stacked .container {
    width: 100%;
    max-width: 100%;
}
.hero-stacked-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}
.hero-stacked-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    aspect-ratio: 4/3;
}
.hero-stacked-item a {
    display: block;
    height: 100%;
}
.hero-stacked-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 576px) {
    .hero-stacked-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 100%;
    }
    .hero-stacked-item { aspect-ratio: 1; }
}
@media (min-width: 992px) {
    .hero-stacked-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hero-stacked-item { aspect-ratio: 4/3; }
}

/* ========== Top bar & header – readable size, no squish ========== */
/* Fix: one header at a time – desktop = main-header, mobile = mobile-header (no double logo) */
/* Default: mobile first – show mobile header, hide desktop */
.mobile-header,
.mobile-search {
    display: block;
}
.main-header,
.main-header .logo-area {
    display: none;
}
/* Desktop: hide mobile header completely, show only main header */
@media (min-width: 992px) {
    #navbar_top .mobile-header,
    #navbar_top .mobile-search {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    #navbar_top .main-header,
    #navbar_top .main-header .logo-area {
        display: block !important;
        visibility: visible !important;
    }
    .main-header .logo-area .container {
        display: block;
    }
}
@media (max-width: 991px) {
    #navbar_top .main-header {
        display: none !important;
    }
}
/* ========== Header (navbar_top) – three rows: green bar | white bar | green nav ========== */
#navbar_top {
    position: relative;
    z-index: 100;
    width: 100% !important;
    max-width: 100% !important;
}
#navbar_top .top_header,
#navbar_top .main-header,
#navbar_top .menu-area {
    width: 100% !important;
    max-width: 100% !important;
}
#navbar_top .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.top_header {
    padding: 8px 0;
    min-height: 42px;
    overflow: visible !important;
}
.top_header .container.top_header_inner,
.top_header_inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    justify-content: space-between;
}
.top_header_hotline {
    font-size: 15px !important;
    font-weight: 700;
    padding: 8px 14px !important;
    background: #fff;
    color: #13027D !important;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
}
.top_header_marquee {
    flex: 1 1 auto;
    min-width: 120px;
    overflow: visible !important;
}
.top_header marquee {
    font-size: 14px !important;
    line-height: 1.4;
    display: block;
}
/* Track / Login / Cart on top bar – white text (reference style) */
.top_header_actions {
    flex-shrink: 0;
    direction: ltr;
    position: relative;
}
.top_header_actions ul {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.top_header_actions li a,
.top_header_actions li p a,
.top_header_actions .margin-shopping {
    color: #fff !important;
    font-size: 14px !important;
    text-decoration: none;
    padding: 4px 6px;
}
.top_header_actions li a:hover,
.top_header_actions li p a:hover {
    opacity: 0.9;
}
.top_header_actions #cart-qty {
    position: relative !important;
}
/* Mini-cart: always right-aligned under cart icon, never overlap logo/search */
.top_header_actions .cshort-summary {
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    margin-top: 6px !important;
    margin-left: 0 !important;
    z-index: 99999 !important;
    background: #fff !important;
    color: #333 !important;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    direction: ltr !important;
}
.top_header_actions .cshort-summary ul {
    overflow: auto;
}
.top_header_actions .cshort-summary a {
    color: #333 !important;
}
.top_header_actions .cart-count-badge {
    background: #dc3545 !important;
    color: #fff !important;
}

.main-header {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.logo-area .container .row {
    align-items: center;
}
.logo-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}
.main-logo {
    flex-shrink: 0;
    order: 1;
}
.main-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}
.main-search {
    flex: 1 1 280px;
    min-width: 180px;
    max-width: 400px;
    order: 2;
}
.header-list-items {
    order: 3;
}

/* Desktop: white bar = logo left + search center only (reference style) */
@media (min-width: 992px) {
    .main-header .logo-area {
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    .main-header .logo-area .container {
        width: 100% !important;
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .main-header .logo-area .logo-header {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: unset !important;
        align-items: center;
        gap: 24px;
        width: 100% !important;
        justify-content: center !important;
    }
    .main-header .logo-header .main-logo {
        flex-shrink: 0;
    }
    .main-header .logo-header .main-search {
        flex: 1 1 auto !important;
        min-width: 220px;
        max-width: 520px !important;
        margin: 0 20px;
    }
    /* Mini-cart dropdown (top bar cart) */
    #navbar_top .top_header_actions #cart-qty {
        position: relative !important;
    }
    #navbar_top .top_header_actions .cshort-summary {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        margin-top: 6px !important;
        z-index: 99999 !important;
        min-width: 320px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    }
    /* Green nav bar: full width, all categories one line (reference) */
    #navbar_top .menu-area {
        width: 100% !important;
        overflow: visible !important;
    }
    #navbar_top .menu-area .container {
        width: 100% !important;
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #navbar_top .catagory_menu {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    #navbar_top .catagory_menu ul {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 4px !important;
        list-style: none;
        margin: 0;
        padding: 8px 0 !important;
    }
    #navbar_top .catagory_menu .cat_bar > a {
        padding: 8px 12px !important;
        font-size: 13px !important;
        white-space: nowrap;
    }
    #navbar_top .catagory_menu {
        overflow: visible !important;
    }
    #navbar_top .catagory_menu .cat_bar {
        position: relative !important;
    }
    #navbar_top .menu-area .Cat_menu {
        position: absolute !important;
        left: 0 !important;
        top: 100% !important;
        min-width: 220px !important;
        z-index: 1000 !important;
        box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
        visibility: hidden;
        opacity: 0;
    }
    #navbar_top .catagory_menu li:hover .Cat_menu,
    #navbar_top .menu-area .cat_bar:hover .Cat_menu {
        visibility: visible !important;
        opacity: 1 !important;
    }
}
.main-search input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.header-list-items {
    flex-shrink: 0;
}
.header-list-items ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-list-items li {
    margin: 0;
    padding: 0;
}
.header-list-items li a,
.header-list-items li p,
.header-list-items li p a {
    font-size: 14px !important;
    padding: 8px 4px;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
}
.header-list-items .margin-shopping {
    font-size: 16px;
}
.header-list-items .margin-shopping span {
    font-size: 13px;
    margin-left: 4px;
}

.menu-area {
    background: #2e7d32;
    padding: 10px 0;
}
.catagory_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.catagory_menu .cat_bar > a {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px !important;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}
.catagory_menu .cat_bar > a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.cat_head {
    margin-right: 4px;
}
.catagory_menu .cat_bar .cat_down,
.catagory_menu .fa-angle-down {
    color: rgba(255,255,255,0.9);
}

/* Cart count badge – red circle like reference */
.header-list-items .cart-dialog .margin-shopping span,
.header-list-items #cart-qty .margin-shopping span,
.cart_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #dc3545;
    border-radius: 50%;
}

.mobile-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.mobile-header .menu-logo img {
    max-height: 40px;
    width: auto;
}
.mobile-header .menu-bag a,
.mobile-header .margin-shopping {
    font-size: 18px;
    padding: 8px;
}
.mobile-header .mobilecart-qty {
    font-size: 12px;
    margin-left: 2px;
}

/* Mobile menu panel (.first-nav) – off-screen when closed, no layout shift */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    z-index: 9998;
    background: #fff;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15);
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu .first-nav {
    list-style: none;
    margin: 0;
    padding: 15px 0;
}
.mobile-menu .parent-category {
    border-bottom: 1px solid #eee;
}
.mobile-menu .menu-category-name {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}
.mobile-menu .side_cat_img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.mobile-menu .second-nav,
.mobile-menu .third-nav {
    list-style: none;
    margin: 0;
    padding-left: 15px;
    background: #f8f9fa;
}
.mobile-menu .menu-subcategory-name,
.mobile-menu .menu-childcategory-name {
    display: block;
    padding: 10px 15px;
    color: #444;
    text-decoration: none;
}
.mobile-menu .menu-category-toggle,
.mobile-menu .menu-subcategory-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}
.mobile-menu .parent-category {
    position: relative;
}
.mobile-menu .second-nav {
    display: none;
}
.mobile-menu .parent-category.active .second-nav {
    display: block;
}
.mobile-menu .third-nav {
    display: none;
}
.mobile-menu .parent-subcategory.active .third-nav {
    display: block;
}

/* ========== Product grid & cards (fix overlap / broken layout) ========== */
.homeproduct {
    padding: 30px 0 40px;
}

.category-product,
.main_product_inner,
.product_sliders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
@media (min-width: 576px) {
    .category-product,
    .main_product_inner,
    .product_sliders {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (min-width: 768px) {
    .category-product,
    .main_product_inner,
    .product_sliders {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (min-width: 992px) {
    .category-product,
    .main_product_inner,
    .product_sliders {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
}

.product_item.wist_item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.product_item.wist_item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.product_item_inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
}

.product_item .pro_img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f8f8f8;
    border-radius: 6px;
    overflow: hidden;
}
.product_item .pro_img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
.product_item .pro_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.product_item .pro_des {
    padding: 10px 0 8px;
    flex: 1;
}
.product_item .pro_name {
    margin-bottom: 6px;
    line-height: 1.35;
    min-height: 2.7em;
}
.product_item .pro_name a {
    font-size: 14px;
    color: #222;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product_item .pro_name a:hover {
    color: #0d6efd;
}
.product_item .pro_price p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}
.product_item .pro_price del {
    color: #888;
    font-weight: 400;
    margin-right: 6px;
}

.product_item .pro_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.product_item .pro_btn form {
    margin: 0;
    display: inline;
}
.product_item .order-btn,
.product_item .order-btn-link,
.product_item .cart-icon-btn,
.product_item .cart-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: #0d6efd;
    color: #fff;
    transition: background 0.2s;
}
.product_item .order-btn-link:hover,
.product_item .cart-icon-link:hover {
    background: #0b5ed7;
    color: #fff;
}
.product_item .cart-icon-btn,
.product_item .cart-icon-link {
    min-width: 40px;
    padding: 8px;
}

.product_item .sale-badge,
.product_item_inner .sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    right: auto;
    z-index: 2;
}
.product_item .sale-badge-inner .sale-badge-box,
.product_item_inner .sale-badge-box {
    background: #dc3545;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.product_item .sale-badge-text p {
    margin: 0;
}

/* Owl carousel product slider – prevent overlap when used as grid fallback */
.product_slider.owl-carousel .product_item.wist_item {
    min-width: 0;
}

/* Section titles & buttons */
.sec_title {
    margin-bottom: 20px;
}
.sec_title .section-title-header {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
}
.show_more_btn {
    margin-top: 20px;
    text-align: center;
}
.view_more_btn {
    display: inline-block;
    padding: 10px 24px;
    background: #0d6efd;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.view_more_btn:hover {
    background: #0b5ed7;
    color: #fff;
}

.mb-4 { margin-bottom: 1.5rem; }

/* ========== Home page – slider & sections full width, no cramp ========== */
/* Prevent theme sidebar/offset from pushing content to right */
.slider-section .offset-sm-3,
.slider-section .offset-md-3,
.slider-section [class*="offset-"] {
    margin-left: 0 !important;
}
.slider-section .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
}
.slider-section .row .col-sm-12,
.slider-section .row .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.slider-section .row .col-sm-2 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}
.slider-section {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}
.home-slider-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.slider-section .slider-item,
.slider-section .slider-item img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.homeproduct .container {
    width: 100%;
}
.homeproduct .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.homeproduct .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.category-sliger,
.topcategory {
    width: 100% !important;
    max-width: 100% !important;
}

/* Top Categories – reference style: circular images, name below */
.top-categories-ref .top-cat-item {
    padding: 10px 8px;
    text-align: center;
}
.top-categories-ref .top-cat-circle-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3c7d17;
    background: #f5f5f5;
}
.top-categories-ref .top-cat-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.top-categories-ref .top-cat-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}
.top-categories-ref .top-cat-name a {
    color: #222;
    text-decoration: none;
}
.top-categories-ref .top-cat-name a:hover {
    color: #2e7d32;
}
@media (min-width: 768px) {
    .top-categories-ref .top-cat-circle-wrap {
        width: 140px;
        height: 140px;
    }
}

/* ========== Product details page – two-column layout, readable ========== */
.main-details-page .product-section {
    padding: 24px 0 40px;
    width: 100%;
}
.main-details-page .product-section .container {
    width: 100%;
}
.main-details-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
}
.main-details-page .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
    .main-details-page .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.main-details-page .details_right {
    padding: 20px 24px;
    min-height: 200px;
    font-size: 15px;
    line-height: 1.5;
}
.main-details-page .details_right .name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}
.main-details-page .details_right .details-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.main-details-page .details_right .details-price del {
    font-size: 1rem;
    color: #888;
    margin-right: 8px;
}
.main-details-page .details_slider,
.main-details-page .dimage_item {
    width: 100%;
    position: relative;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}
.main-details-page .dimage_item img,
.main-details-page .details_slider img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
}
.main-details-page .indicator_thumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.main-details-page .indicator-item {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #eee;
    cursor: pointer;
}
.main-details-page .indicator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-details-page .product-details-discount-badge {
    top: 12px;
    left: 12px;
    z-index: 2;
}
.pro_details_area .container {
    width: 100%;
}

/* ========== Footer – full width, layout, no overlap ========== */
footer {
    position: relative !important;
    z-index: 99 !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    overflow: hidden;
    box-sizing: border-box;
}
footer * {
    box-sizing: border-box;
}
.footer-top {
    width: 100% !important;
    max-width: 100% !important;
    padding: 40px 0 30px !important;
}
.footer-top .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.footer-top .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
}
.footer-top .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
.footer-about img {
    max-height: 50px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}
.footer-hotlint {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}
.footer-menu {
    margin-bottom: 0;
}
.footer-menu .title a,
.footer-menu .title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}
.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu ul li {
    margin-bottom: 8px;
}
.footer-menu ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
}
.footer-menu ul li a:hover {
    color: #fff;
}
.footer-newsletter {
    margin-top: 10px;
}
.footer-newsletter .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-newsletter .form-control {
    flex: 1;
    min-width: 160px;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
}
.footer-newsletter .btn {
    padding: 10px 16px;
    border-radius: 6px;
    white-space: nowrap;
}
.social_link {
    list-style: none;
    margin: 15px 0 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social_link li {
    margin: 0 !important;
}
.social_link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}
.footer-bottom {
    width: 100% !important;
    padding: 14px 0 !important;
    text-align: center;
}
.footer-bottom .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.copyright p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}
@media (max-width: 767px) {
    .footer-top {
        padding: 30px 0 20px !important;
    }
    .footer-top .row {
        flex-direction: column;
    }
    .footer-about,
    .footer-menu {
        text-align: center;
    }
    .footer-about img {
        margin-left: auto;
        margin-right: auto;
    }
    .social_link {
        justify-content: center;
    }
}
