    /* Product Card Styles */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-badge-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #f8f9fa;
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background: #fff;
    padding: 15px;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.product-action-btn:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

.product-details {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: #0984e3;
}

.product-description {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 12px;
    flex: 1;
}

.product-price-container {
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #b2bec3;
    font-size: 14px;
    margin-right: 8px;
}

.current-price {
    color: #ff4757;
    font-size: 18px;
    font-weight: 700;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #6c5ce7, #0984e3);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #0984e3, #6c5ce7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .product-card {
        border-radius: 10px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .product-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 575.98px) {
    .product-title {
        font-size: 14px;
    }
    
    .product-description {
        display: none;
    }
    
    .add-to-cart-btn span {
        display: none;
    }
    
    .add-to-cart-btn {
        justify-content: center;
        padding: 8px;
    }
}

/* Product Rating Styles */
.product-rating {
    display: flex;
    align-items: center;
    margin: 8px 0 12px;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
}

.stars-empty {
    color: #e0e0e0;
}

.stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ffc107;
}

.review-count {
    font-size: 12px;
    color: #95a5a6;
    margin-left: 5px;
}

/* Rest of your existing CSS remains the same */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.small-banner .single-banner {
			position: relative;
			overflow: hidden;
			border-radius: 10px;
			margin-bottom: 20px;
			background-color: #f8f9fa;
			box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		}

		.small-banner .single-banner img {
			width:75%;
			height: 75%;
			object-fit: cover;
			border-radius: 10px;
		}

		.small-banner .btn-custom {
			position: absolute;
			bottom: 10px;
			left: 40%;
			transform: translateX(-50%);
			font-size: 1rem;
			padding: 0.5rem 1rem;
			background: linear-gradient(90deg, #2ecc71 0%, #3498db 100%);
			border: none;
			box-shadow: 0 4px 16px rgba(52,152,219,0.2);
		}
		.small-banner .btn-custom:hover {
			background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
			box-shadow: 0 4px 16px rgba(46,204,113,0.2);
		}
		.small-banner .btn-custom i {
			margin-right: 5px;
		}
		.small-banner .section-title {
			margin-bottom: 20px;
		}
		.small-banner .section-title h2 {
			font-size: 1.5rem;
			color: #333;
			text-align: center;
			margin-bottom: 20px;
		}
		.small-banner .section-title h2 span {
			color: #3498db;
		}
		.small-banner .row > .col-lg-4,
		.small-banner .row > .col-md-6,
		.small-banner .row > .col-12 {
			padding-left: 5px;
			padding-right: 5px;
		}
		.small-banner .row > .col-lg-4,
		.small-banner .row > .col-md-6,
		.small-banner .row > .col-12 {
			flex: 0 0 33.3333%;
			max-width: 33.3333%;
		}

		@media (max-width: 576px) {
			.small-banner .row > .col-lg-4,
			.small-banner .row > .col-md-6,
			.small-banner .row > .col-12 {
				flex: 0 0 33.3333%;
				max-width: 33.3333%;
				padding-left: 5px;
				padding-right: 5px;
			}
			.small-banner .single-banner img {
				width: 75%;
				height: 100px;
				object-fit: cover;
			}
			.small-banner .single-banner {
				margin-bottom: 10px;
			}
			.small-banner .btn-custom {
				font-size: 0.5rem;
				padding: 0.3rem 0.7rem;
			}
			.small-banner .btn-custom:hover {
				transition: transform 0.10s ease;
				
			}
		}
.pulsate-btn {
        animation: pulsate 1.2s infinite;
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
        transition: box-shadow 0.3s;
    }
    @keyframes pulsate {
        0% {
            box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
            transform: scale(1);
        }
        70% {
            box-shadow: 0 0 0 12px rgba(108, 92, 231, 0);
            transform: scale(1.08);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
            transform: scale(1);
        }
    }
/* ... (keep all your other existing CSS rules) ... */

.single-product {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    position: relative;
    margin-bottom: 20px;
}

.single-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img {
    position: relative;
    overflow: hidden;
}

.image-container {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #f8f8f8;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-product:hover .image-container img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.03);
    transition: background 0.3s ease;
}

.single-product:hover .overlay {
    background: rgba(0,0,0,0.1);
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4d4f;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.single-product:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-actions button {
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    color: #333;
}

.product-actions button:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.product-actions button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.product-content {
    padding: 16px;
}

.product-content h3 a {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    transition: color 0.2s ease;
    min-height: 40px;
}

.product-content h3 a:hover {
    color: #1890ff;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.discounted-price {
    color: #ff4d4f;
    font-size: 18px;
    font-weight: 700;
}

.original-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
}

.stars-empty {
    color: #e0e0e0;
}

.stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ffc107;
}

.review-count {
    color: #999;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-product {
        margin-bottom: 15px;
    }
    
    .product-content h3 a {
        font-size: 15px;
        min-height: 36px;
    }
    
    .discounted-price {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .single-product {
        margin-bottom: 10px;
    }
    
    .product-content h3 a {
        font-size: 14px;
        min-height: 32px;
    }
    
    .discounted-price {
        font-size: 14px;
    }
    
    .product-actions button {
        width: 32px;
        height: 32px;
    }
}   

.cart-modal-content {
  max-height: 70vh;
  overflow-y: auto;
}

.shopping-list li {
  transition: background-color 0.2s;
}

.shopping-list li:hover {
  background-color: #f8f9fa;
}

.remove {
  transition: transform 0.2s;
}

.remove:hover {
  transform: scale(1.2);
}

.cart-img img {
  border-radius: 4px;
}