﻿/* ===== HERO ===== */
.hero-section img {
    filter: brightness(0.9);
    transition: 0.5s;
}

    .hero-section img:hover {
        transform: scale(1.03);
    }

/* ===== CATEGORY ===== */
.cat-item {
    text-align: center;
    transition: 0.3s;
}

.cat-img-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    padding: 8px;
    border: 2px solid #eee;
    background: #fff;
    transition: 0.4s;
}

.cat-item:hover .cat-img-circle {
    border-color: #0b7a3b;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cat-item h5 {
    margin-top: 10px;
    font-weight: 600;
}

/* ===== PRODUCT VIP CARD ===== */
.product-card-vip {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card-vip:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border-color: #ddd;
    }

    /* IMAGE FIX */
    .product-card-vip img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: 0.4s;
    }

    .product-card-vip:hover img {
        transform: scale(1.05);
    }

    /* TEXT */
    .product-card-vip h6 {
        height: 40px;
        overflow: hidden;
        font-size: 14px;
    }

    /* PRICE */
    .product-card-vip .text-danger {
        font-size: 16px;
    }

/* BUTTON */
.btn-add-cart {
    margin-top: auto;
    background: linear-gradient(135deg, #014421, #0b7a3b);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-add-cart:hover {
        background: #016c2e;
        transform: translateY(-2px);
    }

/* ===== TITLE LINE ===== */
.border-bottom {
    border-bottom: 2px solid #eee !important;
}

h3 {
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cat-img-circle {
        width: 120px;
        height: 120px;
    }

    .product-card-vip img {
        height: 150px;
    }
    .hero-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    }
}
