/* ===============================
   XMANVIP STORE - VIP THEME
   Luxury Red + Burgundy + Gold
================================*/

/* Global Theme */
 @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;700&display=swap');

/* ตั้งค่าฟอนต์ให้ทั้งเว็บ */
body {
    font-family: 'Kanit', sans-serif;
	background: #1A0A0A;
    color: #F3E8DF;
}


/* Glass panel */
.glass {
    background: rgba(63, 18, 18, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(217,183,119,0.25);
}

/* Navbar */
.navbar-bg {
    background: #2B0E0E;
}

.nav-link {
    color: #F3E8DF;
    padding-bottom: 4px;
    transition: 0.2s;
}

.nav-link:hover {
    color: #E8C987;
    border-bottom: 2px solid #D9B777;
}

/* Buttons */
.btn-vip {
    background: linear-gradient(90deg, #8E2A2A, #A63E3E);
    color: #F3E8DF;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-vip:hover {
    opacity: 0.9;
    border: 1px solid #D9B777;
    box-shadow: 0 0 12px rgba(217,183,119,0.4);
}

/* Product Card */
.product-card {
    background: rgba(63, 18, 18, 0.45);
    border: 1px solid rgba(217,183,119,0.3);
    border-radius: 18px;
    padding: 16px;
    cursor: pointer;
    transition: 0.25s;
}

.product-card:hover {
    background: rgba(90, 27, 27, 0.5);
    box-shadow: 0 0 18px rgba(217,183,119,0.3);
}

/* Price */
.price {
    color: #E8C987;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Modal BG */
.modal-bg {
    background: rgba(0,0,0,0.65);
}

/* Footer */
.footer-bg {
    background: #2B0E0E;
    color: #E8D1C5;
    border-top: 1px solid rgba(217,183,119,0.3);
}
/* Product fade animation */
@keyframes productFade {
    0% { opacity: 0; transform: translateY(12px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.product-animate {
    opacity: 0;
    animation: productFade 0.55s ease forwards;
}
[x-cloak]{display:none !important;}