:root {
    --bakery-cream: #fdf6ec;
    --bakery-brown: #6b4226;
    --bakery-gold: #d9a05b;
    --bakery-dark: #3e2716;
}

body {
    background-color: var(--bakery-cream);
    color: var(--bakery-dark);
    font-family: Georgia, 'Times New Roman', serif;
}

.bakery-navbar {
    background-color: var(--bakery-brown);
}

.bakery-navbar .navbar-brand,
.bakery-navbar .nav-link {
    color: var(--bakery-cream) !important;
    font-weight: 600;
}
.nav-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bakery-navbar .nav-link:hover {
    color: var(--bakery-gold) !important;
}

.bakery-hero {
    background: linear-gradient(135deg, var(--bakery-brown), var(--bakery-dark));
    color: var(--bakery-cream);
    padding: 4rem 0;
    text-align: center;
}

.bakery-hero h1 {
    font-size: 2.75rem;
}
.hero-logo-wrap {
    display: flex;
    justify-content: center;
}
.hero-logo {
    width: 116px;
    height: 116px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.bakery-section {
    padding: 2.5rem 0 0;
}

.bakery-card {
    background: #fff;
    border: 1px solid #ecdcc8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107, 66, 38, 0.08);
}

.bakery-card .card-header {
    background-color: var(--bakery-gold);
    color: var(--bakery-dark);
    font-weight: 700;
    border-radius: 12px 12px 0 0;
}
.menu-illustration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}
.menu-illustration-item {
    background: #fffaf4;
    border: 1px solid #ecdcc8;
    border-radius: 12px;
    padding: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.menu-illustration-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(62, 39, 22, 0.2));
}
.menu-illustration-name {
    font-weight: 600;
    line-height: 1.25;
}
.box-preview-card {
    background: #fffaf4;
    border: 1px solid #ecdcc8;
    border-radius: 14px;
    padding: 1rem;
}
.box-preview-title {
    font-size: 1.05rem;
    font-weight: 700;
}
.box-preview-subtitle {
    color: #7e5b3e;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}
.box-preview {
    border: 2px solid #c8925a;
    border-radius: 12px;
    padding: 0.7rem;
    background: linear-gradient(160deg, #fbe8cf, #f5d8b3);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}
.box-slot {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(130, 85, 49, 0.2);
    border-radius: 10px;
    min-height: 102px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.35rem;
}
.box-slot-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 0.28rem;
}
.box-slot-name {
    font-size: 0.74rem;
    line-height: 1.2;
    font-weight: 600;
}

.progress {
    height: 1.75rem;
    background-color: #eadbc8;
}

.progress-bar {
    background-color: var(--bakery-brown);
    font-weight: 600;
}

.btn-bakery {
    background-color: var(--bakery-brown);
    color: var(--bakery-cream);
    font-weight: 600;
}

.btn-bakery:hover {
    background-color: var(--bakery-dark);
    color: #fff;
}

.bakery-footer {
    background-color: var(--bakery-brown);
    color: var(--bakery-cream);
}

@media (max-width: 767px) {
    .menu-illustration-grid {
        grid-template-columns: 1fr;
    }
}
