body{
font-family:'Poppins',sans-serif;
}

/* Navbar */

.navbar-custom{
background:#000;
padding:15px;
}

.navbar-custom .nav-link{
color:#fff;
font-weight:500;
margin-left:15px;
}

.navbar-custom .nav-link:hover{
color:#ffb703;
}

/* Sidebar */

.sidebar{
position:fixed;
top:0;
left:-260px;
width:260px;
height:100%;
background:#000;
padding-top:60px;
transition:0.4s;
z-index:9999;
}

.sidebar a{
display:block;
color:#fff;
padding:15px 25px;
text-decoration:none;
font-size:16px;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.sidebar a:hover{
background:#111;
color:#ffb703;
}

.sidebar.active{
left:0;
}

/* overlay */

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
z-index:999;
}

.overlay.active{
display:block;
}

/* hamburger */

.menu-btn{
font-size:24px;
color:#fff;
cursor:pointer;
margin-right:15px;
display:none;
}

/* Mobile & Tablet */

@media(max-width:991px){

.menu-btn{
display:block;
}

.desktop-menu{
display:none;
}

}

/* Desktop */

@media(min-width:992px){

.sidebar{
display:none;
}

.overlay{
display:none;
}

}

/* ===== HERO SLIDER IMAGE ===== */
.slider-img {
    width: 100%;
    height: 45vh; /* responsive height */
    min-height: 220px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

/* ===== CAPTION STYLE ===== */
.carousel-caption {
    background: rgba(0, 0, 0, 0.55);
    padding: 12px 20px;
    border-radius: 10px;
    bottom: 20px;
}

.carousel-caption h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

/* ===== ARROWS STYLE ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* white arrows */
}

/* ===== LARGE DESKTOP ===== */
@media (min-width: 1200px) {
    .slider-img {
        height: 420px;
    }
}

/* ===== LAPTOP / TABLET ===== */
@media (max-width: 992px) {
    .slider-img {
        height: 320px;
    }

    .carousel-caption h2 {
        font-size: 20px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .slider-img {
        height: 220px;
    }

    .carousel-caption {
        padding: 8px 12px;
    }

    .carousel-caption h2 {
        font-size: 16px;
    }
}

/* ===== Products Cards===== */
.product-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.product-body { padding: 12px; }

.product-title { font-size: 15px; font-weight: 600; }

.product-desc {
    font-size: 12px;
    color: #777;
    height: 32px;
    overflow: hidden;
}

.price { font-weight: bold; color: #28a745; }

.add-btn {
    font-size: 12px;
    border-radius: 20px;
}

.badge-popular {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 20px;
}