@charset "utf-8";
/* CSS Document */

  :root { --primary-color: #d32f2f; --accent-color: #25D366; }
        body { font-family: 'Poppins', sans-serif; background-color: #f4f7f6; color: #333; padding-bottom: 100px; scroll-behavior: smooth; }
        #auth-screen { min-height: 90vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
        .auth-card { background: white; padding: 2.5rem; border-radius: 25px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); width: 100%; max-width: 450px; text-align: center; }
        .category-sticky-header { position: sticky; top: 0; background: white; z-index: 1000; padding: 12px 15px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); display: flex; justify-content: space-between; align-items: center; }
        .dropdown-menu { border-radius: 15px; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.15); max-height: 70vh; overflow-y: auto; width: 280px; padding: 10px; }
        .category-header { background: #fff; border-left: 5px solid var(--primary-color); color: #333; padding: 12px 20px; margin: 30px 0 15px 0; border-radius: 5px; font-weight: 700; text-transform: uppercase; scroll-margin-top: 130px; }
        .product-card { position: relative; transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden; background: white; border: none; border-radius: 15px; height: 100%; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
	
	.product-card:hover{
	transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
	
	}
	
	
	.quantity-control {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .quantity-control {
    opacity: 1;
    transform: translateY(0);
}
	
        .product-img-wrapper { overflow: hidden; position: relative; padding-top: 80%; background-color: #fff; border-bottom: 1px solid #f0f0f0; }
        .product-img-wrapper img { width: 100%;
    transition: transform 0.4s ease; position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px; }
	
	.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}
	
        .product-details { padding: 12px; flex-grow: 1; text-align: center; }
        .product-name { font-size: 0.85rem; font-weight: 600; min-height: 2.5rem; }
        .current-price { color: var(--primary-color); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 10px; }
        .quantity-control { display: flex; align-items: center; justify-content: center; background: #f8f9fa; border-radius: 50px; padding: 3px; border: 1px solid #eee; }
        .btn-qty { width: 32px; height: 32px; border-radius: 50%; border: none; background: white; color: var(--primary-color); font-weight: bold; box-shadow: 0 2px 4px rgba(0,0,0,0.1); cursor: pointer; }
        .qty-input { width: 40px; text-align: center; border: none; background: transparent; font-weight: 700; }
        .bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: white; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 15px 20px; z-index: 1050; display: none; align-items: center; justify-content: space-between; border-top: 3px solid var(--primary-color); }
        .btn-cart-view { background: var(--primary-color); color: white; border: none; padding: 12px 25px; border-radius: 50px; font-weight: 700; }
        #cart-overlay, #success-screen { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: white; z-index: 2000; transition: 0.4s; padding: 20px; overflow-y: auto; }
        #cart-overlay.active, #success-screen.active { right: 0; }
        #loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.95); display: none; flex-direction: column; justify-content: center; align-items: center; z-index: 9999; }
        .cart-item-img { width: 60px; height: 60px; object-fit: contain; border-radius: 10px; margin-right: 15px; border: 1px solid #eee; }
        .cart-qty-mini { background: #f8f9fa; border-radius: 20px; padding: 2px 8px; display: flex; align-items: center; gap: 10px; }
        .btn-qty-sm { width: 28px; height: 28px; border-radius: 50%; border: none; background: white; color: var(--primary-color); font-weight: bold; box-shadow: 0 1px 3px rgba(0,0,0,0.1); cursor: pointer; }
		
		/* Menu Group */
.offcanvas {
    width: 80%;
}
.list-group{
	list-style:none;
	padding:0px;
	margin:0px;
	
}
.list-group li a{
	display:block;
	width:100%;
	color:#333;
	padding:4px 0;
	margin:4px 0;
	border-bottom:1px solid rgba(0,0,0,0.2);
	
	
}
.list-group li a:hover{
  background-color: var(--primary-color);
	color:#fff;	
}
.list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.list-group-item:hover {
    background-color: var(--primary-color);
	color:#fff;
}

/* offer price */
.price-box {
    display: flex;
    gap: 6px;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.current-price {
    color: #e53935;
    font-weight: bold;
    font-size: 16px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
}

#btn-place-order:disabled {
    background: #ccc !important;
    border: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.buynow{
	
}