.site-header{
position:sticky;
top:0;
background:#fff;
z-index:999;
border-bottom:1px solid #eee;
}

.cart-drawer{display:none}
.cart-drawer.active{display:block}

@media(max-width:992px){
.main-navigation{display:none}
.main-navigation.active{display:block}
}


/*-----product card css-----*/
.custom-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.custom-product-card:hover {
    transform: translateY(-5px);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-title {
    font-size: 16px;
    margin: 10px 0;
}

.price-wrapper {
    margin-bottom: 8px;
}

.sale-price {
    font-size: 20px;
    font-weight: 700;
    color: #5e35b1;
}

.regular-price {
    text-decoration: line-through;
    margin-left: 8px;
    color: #999;
}

.rating-sold {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.product-buttons .button {
    flex: 1;
    background: #6c3ad6;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.buy-now-btn {
    flex: 1;
    background: #6c3ad6;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
}