@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero {
    background: linear-gradient(-45deg, #ff416c, #ff4b2b, #1c92d2, #f3f3f3);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.products {
    padding: 60px 20px;
}

.product-card {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.navbar-custom {
    background-color: #232f3e;
}
body, .navbar, .nav-link, .btn {
    font-family: 'Roboto', sans-serif;
}

.navbar .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn {
    font-size: 1rem;
    font-weight: 500;
}

.popular-categories i {
    color: #232f3e;
    transition: transform 0.3s ease;
}

.popular-categories i:hover {
    transform: scale(1.2);
}
.card .text-decoration-line-through {
    font-size: 0.9rem;
}

.card .btn-warning {
    font-weight: 600;
}

#testimonialCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#testimonialCarousel .text-warning {
    font-size: 1.2rem;
}
.product-card img {
    max-height: 200px;
    object-fit: cover;
}

.pagination .page-link {
    font-weight: 500;
    padding: 8px 12px;
    min-width: 40px;
    text-align: center;
}

@media (max-width: 576px) {
    .pagination .page-link {
        padding: 6px 8px;
        font-size: 14px;
    }
}
.product-card .badge {
    font-size: 0.7rem;
    opacity: 0.95;
}