/* ──────────────────────────────────────────────────────
   Rượu Tây Premium – Custom site styles
   ────────────────────────────────────────────────────── */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Image placeholder fallback */
img[src=""] { display: none; }

/* Selection color */
::selection { background: #D4AF37; color: #000; }

/* Product card hover animation */
.product-card .overlay-btn {
    position: absolute;
    bottom: -50px;
    left: 0; right: 0;
    text-align: center;
    transition: bottom .3s ease;
    padding: 10px;
    background: linear-gradient(transparent, rgba(61,12,17,.7));
}
.product-card:hover .overlay-btn { bottom: 0; }

/* Pagination gold active */
.pagination .page-item.active .page-link {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}
.pagination .page-link { color: #3D0C11; }
.pagination .page-link:hover { background-color: #f5ebe0; color: #3D0C11; }

/* Form focus gold */
.form-control:focus, .form-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 .2rem rgba(212,175,55,.25);
}

/* Section divider */
.gold-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 40px 0;
}
