:root {
    --cream: #efe9dd;
    --cream-dark: #e5ddcb;
    --ink: #1c1a17;
    --muted: #8a8375;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background-color: #fffdf9;
}

h1, h2, h3, h4, .brand-logo {
    font-family: 'Playfair Display', serif;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ink) !important;
}

.site-navbar {
    background-color: #fffdf9;
    border-bottom: 1px solid #eee4d3;
    padding: 1rem 0;
}

.nav-link {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-section {
    background-color: var(--cream);
    padding: 6rem 0 5rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title .divider {
    width: 60px;
    height: 2px;
    background: var(--ink);
    margin: 1rem auto 0;
}

.product-card {
    border: none;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(28,26,23,0.08);
}

.product-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    background-color: var(--cream-dark);
}

.product-card .card-body {
    padding: 1.5rem 1rem;
    text-align: center;
}

.product-card .price {
    font-weight: 600;
    color: var(--ink);
}

.btn-dark, .btn-outline-dark {
    border-radius: 30px;
}

.btn-dark {
    background-color: var(--ink);
    border-color: var(--ink);
}

.btn-dark:hover {
    background-color: #000;
}

.about-section {
    padding: 6rem 0;
}

.contact-section {
    background-color: var(--cream);
    padding: 6rem 0;
}

.site-footer {
    background-color: #fffdf9;
    border-top: 1px solid #eee4d3;
}

.badge-status-pending { background-color: #f0ad4e; }
.badge-status-processing { background-color: #5bc0de; }
.badge-status-completed { background-color: #5cb85c; }
.badge-status-cancelled { background-color: #d9534f; }
