.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Reduced box-shadow */
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Reduced box-shadow on hover */
    transform: translateY(-2px);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
}

.product-content {
    flex: 1;
}

.product-action {
    margin-top: auto;
    padding-top: 1rem;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-title {
    font-size: 1.1rem;
    font-weight: 600; /* Reduced font-weight to 600 */
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-title a {
    color: #2d3748;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: #007bff;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.wishlist-btn.active {
    color: #dc3545;
}

.wishlist-btn i {
    font-size: 1.25rem;
}

.price-alert-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 1.25rem;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
    background: linear-gradient(135deg, #dc3545 0%, #ff4d5a 100%);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
    z-index: 1;
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
    color: white;
    text-decoration: none;
}

.btn-gradient i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.btn-gradient:hover i {
    transform: translateX(-4px);
}
