:root {
    --ink: #171717;
    --muted: #6b7280;
    --line: #e5e7eb;
    --cream: #faf7f2;
    --rose: #b85c70;
    --green: #2f6f5e;
}

body {
    color: var(--ink);
    background: #fff;
}

.navbar-brand {
    letter-spacing: .02em;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero {
    min-height: 560px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .18)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1800&q=85") center/cover;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero h1 {
    max-width: 720px;
}

.section-band {
    background: var(--cream);
}

.product-card,
.store-card,
.metric-card,
.panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.product-card img,
.store-card img {
    height: 270px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.store-banner {
    min-height: 280px;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.store-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.2));
}

.store-banner > .container {
    position: relative;
    z-index: 1;
}

.badge-soft {
    background: #f3f4f6;
    color: #374151;
}

.price {
    color: var(--green);
}

.old-price {
    color: var(--muted);
    text-decoration: line-through;
}

.sidebar-nav a {
    color: var(--ink);
    text-decoration: none;
}

.sidebar-nav a:hover {
    color: var(--rose);
}

.table td,
.table th {
    vertical-align: middle;
}

.site-footer {
    color: var(--muted);
    background: #fff;
}

@media (max-width: 767px) {
    .hero {
        min-height: 480px;
    }

    .product-card img,
    .store-card img {
        height: 220px;
    }
}
