:root {
    --store-bg: #f5f1ea;
    --store-surface: #fffdf8;
    --store-surface-strong: #1f2937;
    --store-text: #1a2230;
    --store-muted: #64748b;
    --store-accent: #b45309;
    --store-accent-dark: #7c2d12;
    --store-border: rgba(26, 34, 48, 0.12);
    --store-shadow: 0 24px 60px rgba(30, 41, 59, 0.12);
    --store-radius: 28px;
    --store-font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    --store-font-display: "Fraunces", Georgia, serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--store-font-body);
    color: var(--store-text);
    background:
        radial-gradient(circle at top left, rgba(180, 83, 9, 0.18), transparent 28%),
        linear-gradient(180deg, #f8f5ef 0%, #f2ede5 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.store-shell {
    min-height: 100vh;
    padding: 24px;
}

.store-header,
.store-footer,
.hero-section,
.page-header,
.product-detail,
.content-section {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.store-header,
.store-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.store-header {
    padding: 14px 0 30px;
}

.brand {
    font-size: 1.4rem;
    font-family: var(--store-font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.store-nav {
    display: flex;
    gap: 18px;
    color: var(--store-muted);
    font-size: 0.98rem;
    font-weight: 600;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.hero-copy,
.hero-panel,
.card,
.product-card,
.page-header,
.product-detail,
.store-footer {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
}

.hero-copy,
.hero-panel,
.page-header,
.product-detail,
.store-footer {
    padding: 36px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--store-accent-dark);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-family: var(--store-font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

h2 {
    font-family: var(--store-font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

h3 {
    font-family: var(--store-font-body);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--store-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.button.primary {
    background: var(--store-surface-strong);
    color: #fff;
}

.button.secondary {
    border: 1px solid var(--store-border);
}

.hero-panel {
    background: linear-gradient(180deg, #fff7ed 0%, #fffbf5 100%);
}

.hero-panel ul,
.panel-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--store-text);
}

.panel-label,
.section-heading span,
.product-category {
    display: inline-block;
    color: var(--store-accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.content-section {
    margin-bottom: 28px;
}

.section-heading {
    margin-bottom: 18px;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.product-card {
    padding: 24px;
}

.muted {
    background: rgba(255, 253, 248, 0.72);
}

.product-media,
.product-gallery {
    min-height: 220px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(180, 83, 9, 0.8)),
        linear-gradient(180deg, #f8f5ef, #efe7dc);
    margin-bottom: 18px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
}

.product-summary strong,
.product-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.store-footer {
    margin-top: 40px;
}

.footer-links {
    display: flex;
    gap: 18px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero-section,
    .product-detail,
    .grid.three,
    .store-header,
    .store-footer {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .store-shell {
        padding: 16px;
    }

    .hero-copy,
    .hero-panel,
    .page-header,
    .product-detail,
    .store-footer {
        padding: 24px;
    }
}
