﻿/* Custom Styles for the Best Sellers Section */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.product-img-fit {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.btn-wishlist {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--bs-danger);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
}

    .btn-wishlist:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: scale(1.1);
    }

.add-to-cart-btn {
    transition: background-color 0.3s, transform 0.2s;
}

    .add-to-cart-btn:hover {
        transform: scale(1.05);
    }

.hover-link:hover {
    color: var(--bs-primary) !important;
}

.title-gradient {
    background: linear-gradient(to right, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Custom Styles for Newsletter Section */
.newsletter-section {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #0c4a6e); /* Deep blue to teal gradient */
    color: white;
}

.newsletter-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white overlay */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    transition: background-color 0.3s ease;
}

    .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-form .form-control:focus {
        background-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
        color: white;
    }

.newsletter-form .btn-outline-light {
    border-width: 2px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

    .newsletter-form .btn-outline-light:hover {
        background-color: white;
        color: #1e3a8a;
    }