 .navbar {
 background-color: #f8f9fa;
 }

 .img-logo {
 width: 120px;
 height: 60px;
 padding-left: 0px !important;
 }

 .banner {
 width: 100%;
 overflow: hidden;

 }

 .banner-img {
 width: 100%;
 height: 300px;
 }

 .card-design {
 margin: 20px 0;
 padding: 5px;
 border: none;
 border-radius: 0 60px 0 60px;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

 }

 .card:hover {
 background-color: rgba(128, 128, 128, 0.3);
 /* transparent grey */
 }

 .card:hover .buy-now-btn {
 opacity: 1;
 transition: opacity 0.3s ease;
 }

 .card-body {
 text-align: center;
 height: 200px;
 }

 .card-body img {
 max-height: 120px;
 margin-bottom: 10px;
 border-radius: 5px;
 }

 .card-logo {
 max-width: 180px;
 max-height: 100px;
 }

 .store-badge {
 height: 40px;
 }

 .social-icon {
 width: 24px;
 height: 24px;
 filter: brightness(0) invert(1);
 }


 /* hlw */

 .topbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 10px;
 padding-bottom: 10px;
 padding-left: 10px;
 padding-right: 10px;
 background-color: #fff;
 }

 .left {
 display: flex;
 align-items: center;
 }

 .truck-icon {
 width: 20px;
 height: 20px;
 margin-right: 8px;
 }

 .delivery-text {
 font-size: 14px;
 font-weight: 500;
 }

 .right {
 position: relative;
 }

 .dropbtn {
 background-color: #0d6efd;
 color: white;
 padding: 6px 12px;
 font-size: 14px;
 border: none;
 cursor: pointer;
 border-radius: 3px;
 }

 .dropdown-content {
 display: none;
 position: absolute;
 right: 0;
 background-color: #ffffff;
 min-width: 160px;
 border: 1px solid #ddd;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 z-index: 1;
 }

 .dropdown-content a {
 color: black;
 padding: 8px 12px;
 text-decoration: none;
 display: block;
 }

 .dropdown-content a:hover {
 background-color: #f1f1f1;
 }

 .dropdown:hover .dropdown-content {
 display: block;
 }

 .topbar .left img {
 height: 30px;
 width: 30px;
 }

 /* hlw */

 .naviconImage {
 width: 30px;
 height: 30px;
 }

 .gap {
 margin-left: 20px;
 }

 .footerIcon {
 width: 34px;
 height: 34px;
 }

 .product-card {
 width: 350px;
 background: #ffffff;
 border-radius: 12px;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 overflow: hidden;
 font-family: 'Segoe UI', sans-serif;
 transition: transform 0.3s ease;
 padding: 20px;
 text-align: center;
 }

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

 .product-card img {
 width: 100%;
 height: auto;
 border-radius: 8px;
 margin-bottom: 15px;
 }

 .product-title {
 font-size: 1.2rem;
 color: #333;
 margin-bottom: 10px;
 }

 .product-price-cart {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 15px;
 }

 .price {
 color: #e53935;
 font-size: 1.5rem;
 font-weight: bold;
 }

 .cart-button {
 background-color: #2196f3;
 color: #fff;
 border: none;
 padding: 10px 16px;
 border-radius: 6px;
 cursor: pointer;
 font-weight: bold;
 transition: background-color 0.3s ease;
 }

 .cart-button:hover {
 background-color: #1976d2;
 }

 .product-details {
 list-style: none;
 padding: 0;
 margin: 0;
 text-align: left;
 }

 .product-details li {
 margin: 6px 0;
 color: #555;
 font-size: 0.95rem;
 }

 /* sIDE cART */
 .cart-container {
 background-color: #fff;
 border-radius: 12px;
 max-width: 400px;
 margin: auto;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 overflow: hidden;
 }

 .cart-header {
 display: flex;
 justify-content: space-between;
 padding: 16px;
 font-weight: bold;
 border-bottom: 1px solid #ddd;
 }

 .cart-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 16px;
 border-bottom: 1px solid #eee;
 }

 .item-info {
 display: flex;
 flex-direction: column;
 }

 .item-qty {
 display: flex;
 align-items: center;
 margin-top: 8px;
 }

 .item-qty button {
 width: 28px;
 height: 28px;
 font-size: 18px;
 border: none;
 background-color: #f0f0f0;
 border-radius: 4px;
 cursor: pointer;
 }

 .item-qty .qty {
 margin: 0 8px;
 font-weight: bold;
 }

 .item-price {
 font-weight: bold;
 }

 .subtotal {
 display: flex;
 justify-content: space-between;
 padding: 16px;
 font-weight: bold;
 background-color: #f8f8f8;
 }

 .checkout-btn {
 display: block;
 width: 100%;
 background-color: #007bff;
 color: white;
 text-align: center;
 padding: 16px;
 font-weight: bold;
 border: none;
 border-radius: 0 0 12px 12px;
 cursor: pointer;
 font-size: 16px;
 }

 .checkout-btn:hover {
 background-color: #0069d9;
 }

 .clear-btn {
 color: #007bff;
 cursor: pointer;
 font-weight: normal;
 font-size: 14px;
 }
