/* Custom Bakery Theme */
:root {
    --gold: #b99655;
    --gold-soft: #d8c08f;
    --black: #0f0f0f;
    --gray: #4f4f4f;
    --light: #f8f4ef;
    --white: #ffffff;
    --radius-s: 12px;
    --radius-m: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Segoe UI', system-ui, -apple-system;
    color: var(--gray);
    background-color: var(--light);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    color: var(--black);
}

.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--gold);
}

.hero {
    background: linear-gradient(135deg, var(--black), #1b1b1b);
    color: var(--white);
    border-radius: 0 0 var(--radius-m) var(--radius-m);
    margin-bottom: 4rem;
}

.hero .eyebrow {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-size: 0.8rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 1rem 0;
}

.hero-list {
    list-style: none;
    padding: 0;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.hero-stats span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.hero-image img {
    border-radius: var(--radius-m);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

section {
    padding: 5rem 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    color: var(--gold);
}

.badge-card {
    background: var(--light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-s);
    padding: 1rem;
    min-width: 180px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-m);
    padding: 2rem 1.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.feature-card small {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

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

.product-content {
    padding: 1.75rem;
}

.product-content h3 {
    margin: 0;
    font-size: 1.5rem;
}

.product-content ul {
    padding-left: 1rem;
    color: #6c6c6c;
}

.price {
    font-weight: 700;
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    border-radius: var(--radius-s);
    height: 200px;
    object-fit: cover;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.info-grid article {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-m);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.cta-section {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.1), rgba(0,0,0,0.7)), linear-gradient(135deg, #000, #1c1c1c);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-m);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

footer {
    background: #050505;
}

@media (max-width: 992px) {
    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stats div {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .hero {
        text-align: center;
    }

    .hero-list li {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}
