:root {
    --vanille-bg: #faf7f2;
    --vanille-dark: #221a14;
    --vanille-brown: #5c4432;
    --vanille-gold: #c8a25e;
    --vanille-cream: #fffdf9;
    --vanille-border: #e8dfd3;
}

body {
    background-color: var(--vanille-bg);
    color: var(--vanille-dark);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.01em;
}

.page-front main {
    min-height: 70vh;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--vanille-dark);
    color: var(--vanille-gold);
    margin-right: 0.4rem;
    font-size: 0.95rem;
}

.hero {
    background:
        linear-gradient(rgba(28, 20, 13, 0.58), rgba(28, 20, 13, 0.58)),
        url('https://images.unsplash.com/photo-1611854779393-1b2da9d400fe?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
    color: white;
    min-height: 65vh;
}

.card-product {
    border: 1px solid var(--vanille-border);
    background: var(--vanille-cream);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(34, 26, 20, 0.08);
}

.card-product img {
    height: 240px;
    object-fit: cover;
}

.price-tag {
    color: var(--vanille-brown);
    font-weight: 700;
}

.btn-gold {
    background: var(--vanille-gold);
    border-color: var(--vanille-gold);
    color: #1d150d;
}

.btn-gold:hover {
    background: #b78f4b;
    border-color: #b78f4b;
    color: #1d150d;
}

.footer-front {
    background: var(--vanille-dark);
    color: #d8cec2;
}

.footer-front a {
    color: #d8cec2;
    text-decoration: none;
}

.footer-front a:hover {
    color: var(--vanille-gold);
}

.admin-sidebar {
    width: 260px;
    min-width: 260px;
}

.admin-sidebar .nav-link {
    border-radius: 0.65rem;
    padding: 0.7rem 1rem;
}

.admin-sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--vanille-gold);
}

@media (max-width: 991.98px) {
    .admin-sidebar {
        width: 100%;
        min-width: 100%;
        height: auto;
    }
}

.card-product {
    border: 1px solid #e8dfd3;
    background: #fffdf9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(34, 26, 20, 0.08);
}

.card-product img {
    height: 250px;
    object-fit: cover;
}

.price-tag {
    color: #5c4432;
    font-weight: 700;
}

.btn-gold {
    background: #c8a25e;
    border-color: #c8a25e;
    color: #1d150d;
}

.btn-gold:hover {
    background: #b78f4b;
    border-color: #b78f4b;
    color: #1d150d;
}

.btn-gold:disabled {
    background: #e2d6c5;
    border-color: #e2d6c5;
    color: #8a7d6d;
}

.navbar .badge {
    font-size: 0.65rem;
    padding: 0.45em 0.6em;
}

.lazy-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lazy-image.lazy-image--loaded {
    opacity: 1;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.navbar .dropdown-toggle {
    color: var(--vanille-dark);
    text-decoration: none;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    min-width: 200px;
}

.navbar .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.navbar .dropdown-item:hover {
    background-color: var(--vanille-bg);
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
}