body {
    background-color: #fdf9f4;
}

/* ── Navbar ── */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #e07b39 !important;
}

/* ── Footer ── */
footer {
    background-color: #3d2b1f;
    color: #c9a98a;
}

footer a {
    color: #c9a98a;
    text-decoration: none;
}

/* ── 공통 컴포넌트 ── */
.category-badge {
    display: inline-block;
    background: #fff3e8;
    color: #e07b39;
    border: 1px solid #f0c89a;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 600;
}

.category-badge.active {
    background: #e07b39;
    color: #fff;
    border-color: #e07b39;
}

.product-card {
    border: 1px solid #f0e0d0;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(224, 123, 57, 0.15);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #f8ece0;
}

.product-img-placeholder {
    width: 100%;
    height: 220px;
    background-color: #f8ece0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #d4a87a;
}

.product-name {
    font-weight: 600;
    color: #3d2b1f;
}

.product-price {
    color: #e07b39;
    font-weight: 700;
    font-size: 1.1rem;
}

.section-title {
    font-weight: 700;
    color: #3d2b1f;
}

.empty-state {
    text-align: center;
    padding: 80px 0;
    color: #b0917a;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 16px;
}
