/* ================= HERO ================= */
.products-hero {
    padding: 90px 0 40px;
}

.products-hero h1 {
    font-size: 36px;
    letter-spacing: 3px;
    color: #2e1b1b;
}

/* ================= CARD ================= */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 1s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

/* OVERLAY */
.product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: #fff;
    padding: 8px 20px;
    font-size: 12px;
    color: #000;
}

/* DISCOUNT */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c8a96a;
    color: #000;
    padding: 6px 10px;
    font-size: 12px;
}

/* CONTENT */
.product-content {
    padding: 20px;
}

.product-content h5 a {
    color: #2e1b1b;
}

.product-content p {
    font-size: 13px;
    color: #777;
}

/* PRICE */
.price-old {
    text-decoration: line-through;
    color: #aaa;
}

.price-new {
    color: #000;
    font-weight: bold;
}

/* BUTTON */
.btn-add-to-cart {
    width: 100%;
    background: #c8a96a;
    border: none;
    padding: 10px;
}

.btn-add-to-cart:hover {
    background: #b89655;
}

/* IN CART */
.in-cart-label {
    color: green;
}