:root{
    --primary:#0d6efd;
    --dark:#1f2937;
    --light:#f8f9fa;
    --border:#e5e7eb;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fb;
    color:#222;
}

a{
    text-decoration:none;
}

.top-header{
    font-size:14px;
}

.logo{
    font-size:32px;
    font-weight:700;
}

.search-box{
    height:48px;
}

.category-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    transition:.3s;
    border:1px solid #eee;
}

.category-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.product-card:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.price{
    font-size:22px;
    color:#0d6efd;
    font-weight:bold;
}

.old-price{
    color:#999;
    text-decoration:line-through;
}

.btn-cart{
    width:100%;
}
.mega-menu{
display:none;
position:absolute;
left:0;
width:100%;
z-index:999;
padding:30px 0;
}

.nav-item:hover .mega-menu{
display:block;
}

.mega-menu h5{
font-size:18px;
font-weight:600;
}

.mega-menu ul li{
padding:6px 0;
}

.mega-menu ul li a{
color:#555;
text-decoration:none;
}

.mega-menu ul li a:hover{
color:#dc3545;
padding-left:5px;
transition:.3s;
}
.search-result{

display:none;

position:absolute;

top:100%;

left:0;

width:100%;

background:#fff;

border:1px solid #ddd;

z-index:9999;

max-height:450px;

overflow-y:auto;

}

.live-search-item{

display:flex;

align-items:center;

padding:10px;

border-bottom:1px solid #eee;

}

.live-search-item img{

width:60px;

height:60px;

object-fit:contain;

margin-right:10px;

}

.live-search-item:hover{

background:#f8f9fa;

}

.live-search-item h6{

margin:0;

font-size:14px;

color:#222;

}

.live-search-item p{

margin:0;

color:#dc3545;

font-weight:600;

}