@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --gold: #d4af37;
    --dark: #0f172a;
    --light-bg: #f8fafc;
}

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--light-bg); 
    animation: smoothLoad 0.8s ease-out forwards;
}

@keyframes smoothLoad {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.brand-font { font-family: 'Playfair Display', serif; }

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    transition: all 0.4s ease;
}

.logo-img {
    height: 65px !important; 
    width: auto;
    object-fit: contain;
}

a, button {
    transition: all 0.4s ease-in-out;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}
.nav-link:hover { color: var(--gold); }

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #f1f1f1;
}
.product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}
.thumb-admin { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}