/* ===== MOBILE ONLY SAFE CSS ===== */

@media (max-width:768px){

/* RESET */
body{
    background:#f5f6f8;
}

/* CONTAINER */
.container{
    padding:10px !important;
}

/* ===== HEADER ===== */
.header-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px;
    background:#fff;
}
.logo img{ height:36px; }

/* ===== SLIDER ===== */
.slider-height-6{
    height:240px !important;
    border-radius:16px;
    margin:10px;
    overflow:hidden;
    position:relative;
}

/* FIX SLIDER CONTENT POSITION */
.slider-content-1{
    position:absolute;
    bottom:20px;
    left:15px;
    right:15px;
}

/* TITLE FIX */
.slider-content-1 h1{
    font-size:16px !important;
    line-height:1.3;
    margin-bottom:10px;
    color:#fff;
}

/* BUTTON PERFECT ALIGN */
.shop-btn{
    display:inline-block;
    background:#0aad6a;
    
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.5px;
}

/* ADD DARK OVERLAY (IMPORTANT FOR VISIBILITY) */
.slider-height-6::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* ===== FEATURES FIX ===== */
.static-area .row{
    display:block !important;
}

.single-static{
    display:flex;
    gap:10px;
    background:#fff;
    padding:12px;
    margin-bottom:10px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.single-static img{
    width:30px;
}

.single-static-meta h4{
    font-size:14px;
    margin:0;
}

.single-static-meta p{
    font-size:11px;
    color:#777;
}

/* FORCE 1 COLUMN */
.col-lg-3,
.col-md-6,
.col-sm-6{
    width:100% !important;
}

/* ===== PRODUCT GRID ===== */
.new-product-slider{
    display:block !important;
}

.new-product-slider .owl-stage{
    display:flex !important;
}

.new-product-slider .owl-item{
    width:auto !important;
}

.product-inner-item,
.feature-slider-item{
    width:100% !important;
}

.list-product{
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    overflow:hidden;
}

.img-block img{
    width:100%;
    height:130px;
    object-fit:cover;
}

.product-decs h2{
    font-size:13px;
}

.current-price{
    color:#0aad6a;
    font-weight:700;
}

/* REMOVE OWL UI */
.owl-nav,
.owl-dots{
    display:none !important;
}

/* ===== BANNER ===== */
.banner-area .row{
    display:block !important;
}

.banner-area .col-md-3,
.banner-area .col-md-6{
    width:100% !important;
    margin-bottom:10px;
}

.banner-wrapper img{
    width:100%;
    border-radius:12px;
}

}