﻿/* General */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar active link */
.nav-link.active {
    color: #dc3545 !important;
    font-weight: 600;
}

/* Card sản phẩm */
.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .product-card img {
        height: 220px;
        object-fit: cover;
    }

/* Giá sản phẩm */
.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.price-sale {
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Badge nổi bật */
.badge-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Section title */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #dc3545;
        border-radius: 2px;
    }
/* Category item */
.category-item {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .category-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
    }
