:root {
    --color-primary: #e61f2b;
    --color-primary-dark: #bd1420;
    --color-primary-soft: #fff0f1;
    --color-accent: #ff6b00;
    --color-accent-soft: #fff4e8;
    --color-ink: #151816;
    --color-muted: #65706a;
    --color-border: #e3e7e4;
    --color-surface: #ffffff;
    --color-page: #f5f6f4;
    --color-success: #1c7b3b;
    --color-success-soft: #eaf6ee;
    --color-warning: #9d5a00;
    --color-warning-soft: #fff4df;
    --color-dark: #041b14;
    --shadow-sm: 0 8px 24px rgba(19, 31, 24, 0.07);
    --shadow-md: 0 18px 50px rgba(19, 31, 24, 0.11);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container-width: 1240px;
    --header-height: 70px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-ink);
    background: var(--color-page);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body[data-scroll-lock="true"] {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(230, 31, 43, 0.25);
    outline-offset: 2px;
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 68px 0;
}

.section-tight-top {
    padding-top: 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.muted {
    color: var(--color-muted);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    color: #fff;
    background: var(--color-ink);
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(227, 231, 228, 0.95);
    backdrop-filter: blur(14px);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.42rem;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.brand-seu {
    color: var(--color-ink);
}

.brand-forni {
    color: var(--color-primary);
}

.brand-fire {
    margin-left: 7px;
    font-size: 0.88em;
    font-style: normal;
}

.main-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-navigation a {
    color: #4c5651;
    font-size: 0.92rem;
    font-weight: 700;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.store-status {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 145px;
    color: var(--color-muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

.store-status strong {
    font-size: 0.82rem;
}

.store-status-open strong {
    color: #1f7a3a;
}

.store-status-closed strong {
    color: #b3261e;
}

.account-button,
.theme-toggle,
.cart-button {
    min-height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
}

.account-button,
.cart-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    font-weight: 800;
}

.account-icon {
    display: none;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    padding: 0;
    cursor: pointer;
}

.theme-icon {
    font-size: 0.9rem;
}

.cart-button {
    white-space: nowrap;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 23px;
    height: 23px;
    padding: 0 7px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.messages-container {
    position: relative;
    z-index: 20;
    margin-top: 14px;
}

.message {
    padding: 13px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 12px 28px rgba(230, 31, 43, 0.24);
}

.button-primary:hover {
    background: var(--color-primary-dark);
}

.button-outline {
    color: var(--color-ink);
    background: #fff;
    border-color: var(--color-border);
}

.button-outline:hover {
    border-color: #bcc5c0;
}

.button-ghost {
    color: var(--color-muted);
    background: transparent;
}

.button-small {
    min-height: 40px;
    padding-inline: 15px;
    border-radius: 10px;
    font-size: 0.88rem;
}

.button-full {
    width: 100%;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 107, 0, 0.14), transparent 30%),
        linear-gradient(135deg, #fff6f3 0%, #f4f7f4 58%, #eef5f0 100%);
    border-bottom: 1px solid var(--color-border);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 46%;
    background:
        linear-gradient(90deg, rgba(245, 246, 244, 0), rgba(245, 246, 244, 0.12)),
        url("../img/hero-seuforni.jpg") center / cover no-repeat;
    opacity: 0.16;
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 76px;
    min-height: 390px;
}

.home-hero-copy {
    max-width: 720px;
}

.store-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px 11px;
    color: var(--color-success);
    background: var(--color-success-soft);
    border: 1px solid #bbddc6;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.store-status-closed {
    color: var(--color-warning);
    background: var(--color-warning-soft);
    border-color: #ead29d;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.hero-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.home-hero h1 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.home-hero h1 span {
    color: var(--color-primary);
}

.home-hero-copy > p {
    max-width: 630px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 1.06rem;
}

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

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #4d5953;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-store-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.91);
    border: 1px solid rgba(220, 227, 222, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-store-brand span {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-store-brand strong {
    display: block;
    margin-top: 7px;
    font-size: 1.32rem;
    line-height: 1.2;
}

.store-info-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.store-info-list > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    background: #f4f6f4;
    border-radius: 14px;
}

.store-info-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
}

.store-info-list small,
.store-info-list strong {
    display: block;
}

.store-info-list small {
    color: var(--color-muted);
    font-size: 0.75rem;
}

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

.section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2,
.page-heading h1,
.account-page-heading h1 {
    margin: 0;
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.section-heading p,
.page-heading p,
.account-page-heading p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.section-side-link {
    color: var(--color-primary);
    font-size: 0.92rem;
    font-weight: 900;
}

.category-strip {
    display: flex;
    gap: 9px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

.category-strip a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 850;
}

.category-strip a:hover {
    color: var(--color-primary);
    border-color: #efb7bb;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    display: grid;
    grid-template-columns: 124px 1fr;
    min-height: 190px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: #efb7bb;
    box-shadow: var(--shadow-md);
}

.category-card-media {
    display: grid;
    place-items: center;
    min-height: 100%;
    background:
        linear-gradient(145deg, var(--color-primary-soft), var(--color-accent-soft));
    font-size: 3rem;
}

.category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    display: flex;
    flex-direction: column;
    padding: 21px;
}

.category-meta {
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.category-content h3 {
    margin: 8px 0 6px;
    font-size: 1.22rem;
    line-height: 1.16;
}

.category-content p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 0.88rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 900;
}

.how-it-works-section {
    background: #fff;
    border-block: 1px solid var(--color-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    padding: 22px;
    background: #f5f7f5;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.step-card > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    font-weight: 900;
}

.step-card h3 {
    margin: 17px 0 5px;
    font-size: 1rem;
}

.step-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 150px;
    min-height: 190px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.featured-product-copy {
    padding: 24px;
}

.featured-product-copy > span {
    color: var(--color-accent);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-product h3 {
    margin: 8px 0;
    font-size: 1.28rem;
}

.featured-product p {
    color: var(--color-muted);
}

.featured-product strong {
    color: var(--color-primary);
}

.featured-product-media {
    display: grid;
    place-items: center;
    background: var(--color-primary-soft);
    font-size: 3rem;
}

.featured-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalty-section {
    padding-top: 18px;
    padding-bottom: 78px;
}

.loyalty-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 107, 0, 0.24), transparent 30%),
        linear-gradient(135deg, #061f17, #0d3427);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.loyalty-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 1.8rem;
}

.loyalty-card .eyebrow {
    color: #ffb36c;
}

.loyalty-card h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -0.04em;
}

.loyalty-card p {
    max-width: 700px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.page-heading {
    padding: 42px 0 18px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.back-link:hover {
    color: var(--color-primary);
}

.empty-state {
    display: grid;
    justify-items: center;
    padding: 54px 24px;
    text-align: center;
    background: #fff;
    border: 1px dashed #cbd2ce;
    border-radius: var(--radius-md);
}

.empty-state-icon {
    font-size: 2.4rem;
}

.empty-state h2,
.empty-state h3 {
    margin: 14px 0 6px;
}

.empty-state p {
    max-width: 500px;
    margin: 0 0 18px;
    color: var(--color-muted);
}

.site-footer {
    margin-top: auto;
    padding: 34px 0;
    color: rgba(255, 255, 255, 0.78);
    background: var(--color-dark);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    color: #fff;
    font-size: 1.25rem;
    font-style: italic;
}

.footer-brand strong {
    color: #ff575f;
}

.site-footer p {
    margin: 5px 0 0;
    font-size: 0.83rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 0.86rem;
}

.mobile-cart-bar {
    display: none;
}

.club-login-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    width: min(440px, calc(100% - 44px));
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 22px 70px rgba(18, 33, 25, 0.2);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.club-login-banner.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.club-login-banner[hidden] {
    display: none;
}

.club-login-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary-soft);
    border-radius: 15px;
    font-size: 1.35rem;
}

.club-login-content strong {
    display: block;
    padding-right: 22px;
    font-size: 1rem;
}

.club-login-content p {
    margin: 5px 0 13px;
    color: var(--color-muted);
    font-size: 0.83rem;
}

.club-login-actions {
    display: flex;
    gap: 8px;
}

.club-login-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    padding: 0;
    color: var(--color-muted);
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
}

.auth-page,
.account-page {
    padding: 54px 0 76px;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    max-width: 980px;
}

.auth-shell-single {
    grid-template-columns: minmax(0, 540px);
    justify-content: center;
}

.auth-card,
.auth-benefits,
.account-sidebar,
.account-section {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.auth-card {
    padding: 34px;
}

.auth-brand-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    background: var(--color-primary-soft);
    border-radius: 18px;
    font-size: 1.55rem;
}

.auth-card h1 {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.auth-lead {
    margin: 14px 0 24px;
    color: var(--color-muted);
}

.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    color: #222;
    background: #fff;
    border: 1px solid #cfd5d1;
    border-radius: 12px;
    font-weight: 850;
    cursor: pointer;
}

.google-login-button:hover {
    border-color: #9ba69f;
    box-shadow: var(--shadow-sm);
}

.google-mark {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: #4285f4;
    border: 1px solid #e0e3e1;
    border-radius: 50%;
    font-weight: 950;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--color-muted);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.auth-note {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 0.78rem;
    text-align: center;
}

.auth-benefits {
    padding: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 107, 0, 0.22), transparent 26%),
        linear-gradient(145deg, #061e16, #10442f);
}

.auth-benefits .eyebrow {
    color: #ffb36c;
}

.auth-benefits h2 {
    max-width: 540px;
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.auth-benefits ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.auth-benefits li {
    display: flex;
    gap: 11px;
    color: rgba(255, 255, 255, 0.84);
}

.auth-benefits li span {
    color: #ffb36c;
}

.account-disabled {
    margin: 18px 0;
    padding: 15px;
    background: var(--color-warning-soft);
    border: 1px solid #ead29d;
    border-radius: 12px;
}

.account-disabled p {
    margin: 5px 0 0;
    color: #73500f;
    font-size: 0.83rem;
}

.account-page-heading {
    margin-bottom: 24px;
}

.account-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.account-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    padding: 26px;
}

.account-avatar {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 20px;
    font-size: 1.45rem;
    font-weight: 900;
}

.account-sidebar h2 {
    margin: 0 0 8px;
}

.account-sidebar p {
    margin: 4px 0;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.account-status {
    display: inline-flex;
    margin: 15px 0 20px;
    padding: 7px 10px;
    color: var(--color-success);
    background: var(--color-success-soft);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 850;
}

.account-status-warning {
    color: var(--color-warning);
    background: var(--color-warning-soft);
}

.account-content {
    display: grid;
    gap: 16px;
}

.account-section {
    padding: 24px;
}

.account-section-heading {
    margin-bottom: 16px;
}

.account-section-heading > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-section-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: #f2f4f2;
    border-radius: 12px;
}

.account-section h2 {
    margin: 0;
    font-size: 1.24rem;
}

.account-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--color-border);
}

.account-list-row small {
    display: block;
    margin-top: 3px;
    color: var(--color-muted);
}

.account-tag {
    padding: 6px 9px;
    color: var(--color-success);
    background: var(--color-success-soft);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
}

.account-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    color: var(--color-muted);
    background: #f6f7f6;
    border-radius: 13px;
}

.account-empty p {
    flex: 1;
    margin: 0;
}

.account-empty a {
    color: var(--color-primary);
    font-weight: 850;
}

.account-section-loyalty {
    background:
        linear-gradient(135deg, #fff, var(--color-primary-soft));
}

@media (max-width: 1050px) {
    .main-navigation {
        display: none;
    }

    .header-content {
        grid-template-columns: auto 1fr;
    }

    .header-actions {
        justify-self: end;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 34px;
    }

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

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

@media (max-width: 760px) {
    :root {
        --header-height: 60px;
    }

    body {
        padding-bottom: 78px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .section {
        padding: 42px 0;
    }

    .site-header {
        height: var(--header-height);
    }

    .header-content {
        gap: 10px;
    }

    .brand {
        font-size: 1.18rem;
    }

    .account-label,
    .cart-label {
        display: none;
    }

    .account-icon {
        display: inline;
    }

    .account-button,
    .cart-button {
        width: 40px;
        min-height: 40px;
        justify-content: center;
        padding: 0;
    }

    .theme-toggle {
        width: 54px;
        min-height: 40px;
    }

    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
    }

    .cart-button {
        position: relative;
    }

    .home-hero {
        padding: 28px 0 32px;
    }

    .home-hero::after {
        width: 100%;
        opacity: 0.08;
    }

    .home-hero-grid {
        display: block;
        min-height: auto;
    }

    .home-hero h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .home-hero-copy > p {
        font-size: 0.95rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-benefits {
        display: grid;
        gap: 8px;
    }

    .hero-store-card {
        margin-top: 24px;
        padding: 17px;
        border-radius: 20px;
    }

    .hero-store-brand {
        display: none;
    }

    .store-info-list {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0;
    }

    .store-info-list > div {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .store-info-icon {
        width: 34px;
        height: 34px;
        margin: 0 auto 7px;
    }

    .store-info-list small {
        font-size: 0.65rem;
    }

    .store-info-list strong {
        font-size: 0.72rem;
    }

    .section-heading-inline {
        align-items: start;
    }

    .section-side-link {
        display: none;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-card {
        grid-template-columns: 94px 1fr;
        min-height: 145px;
    }

    .category-content {
        padding: 16px;
    }

    .category-meta {
        display: none;
    }

    .category-content p {
        -webkit-line-clamp: 2;
    }

    .steps-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        gap: 10px;
    }

    .step-card {
        padding: 17px;
    }

    .featured-product {
        grid-template-columns: 1fr 105px;
        min-height: 150px;
    }

    .featured-product-copy {
        padding: 17px;
    }

    .loyalty-card {
        display: block;
        padding: 24px;
    }

    .loyalty-icon {
        margin-bottom: 18px;
    }

    .loyalty-card .button {
        width: 100%;
        margin-top: 20px;
    }

    .footer-content {
        display: block;
    }

    .footer-links {
        margin-top: 18px;
    }

    .mobile-cart-bar {
        position: fixed;
        right: 14px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        left: 14px;
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 10px 16px;
        color: #fff;
        background: var(--color-primary);
        border-radius: 16px;
        box-shadow: 0 18px 42px rgba(230, 31, 43, 0.32);
    }

    .mobile-cart-copy {
        display: grid;
    }

    .mobile-cart-copy small {
        opacity: 0.78;
        font-size: 0.72rem;
    }

    .club-login-banner {
        right: 14px;
        bottom: calc(84px + env(safe-area-inset-bottom));
        left: 14px;
        width: auto;
        padding: 16px;
        border-radius: 18px;
    }

    .club-login-actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .auth-page,
    .account-page {
        padding: 30px 0 48px;
    }

    .auth-shell,
    .account-layout {
        grid-template-columns: 1fr;
    }

    .auth-benefits {
        order: -1;
        padding: 24px;
    }

    .auth-benefits h2 {
        font-size: 1.7rem;
    }

    .auth-card {
        padding: 24px;
    }

    .account-sidebar {
        position: static;
    }

    .account-list-row {
        align-items: flex-start;
    }

    .account-empty {
        align-items: flex-start;
        flex-wrap: wrap;
    }
}

/* ================================================================
   SEU FORNI — HOME V2
   ================================================================ */

.home-hero-v2 {
    position: relative;
    min-height: 520px;
    padding: 58px 0 0;
    color: #fff;
    background: #031b14;
    border-bottom: 0;
}

.home-hero-v2::after {
    display: none;
}

.home-hero-background {
    position: absolute;
    inset: 0;
    background:
        url("../img/hero-seuforni.jpg")
        center right / cover no-repeat;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(1, 20, 14, 0.98) 0%,
            rgba(2, 26, 18, 0.95) 42%,
            rgba(2, 26, 18, 0.55) 72%,
            rgba(2, 26, 18, 0.28) 100%
        );
}

.home-hero-grid-v2 {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: center;
    gap: 74px;
    min-height: 390px;
}

.home-hero-copy-v2 {
    max-width: 760px;
}

.hero-top-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.home-hero-v2 .store-status {
    margin: 0;
    color: #baf0c8;
    background: rgba(33, 142, 72, 0.22);
    border-color: rgba(148, 224, 170, 0.42);
}

.home-hero-v2 .hero-kicker {
    margin: 0;
    color: #ffad67;
}

.home-hero-v2 h1 {
    max-width: 680px;
    color: #fff;
    font-size: clamp(3.4rem, 5.5vw, 5.3rem);
    line-height: 0.94;
}

.home-hero-v2 h1 span {
    display: block;
    color: #ff343e;
}

.home-hero-v2 .home-hero-copy > p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.button-hero {
    min-width: 185px;
}

.button-glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(12px);
}

.button-glass:hover {
    background: rgba(255, 255, 255, 0.17);
}

.hero-order-panel {
    padding: 25px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-ink);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.hero-order-label {
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-order-panel h2 {
    margin: 7px 0 19px;
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-order-info {
    display: grid;
    gap: 9px;
}

.hero-order-info > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f3f5f3;
    border-radius: 13px;
}

.hero-order-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 11px;
}

.hero-order-info small,
.hero-order-info strong {
    display: block;
}

.hero-order-info small {
    color: var(--color-muted);
    font-size: 0.68rem;
}

.hero-order-info strong {
    font-size: 0.92rem;
}

.hero-panel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 12px 2px 0;
    color: var(--color-primary);
    font-weight: 900;
}

.hero-benefit-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 34px;
    padding: 16px 22px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.catalog-section-v2 {
    padding-top: 64px;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(255, 107, 0, 0.05),
            transparent 26%
        ),
        var(--color-page);
}

.catalog-heading-v2 {
    align-items: center;
}

.catalog-heading-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    color: var(--color-success);
    background: var(--color-success-soft);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.catalog-heading-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.category-strip-v2 {
    margin-bottom: 20px;
}

.category-grid-v2 {
    grid-template-columns:
        repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.category-card-v2 {
    display: flex;
    flex-direction: column;
    min-height: 315px;
}

.category-card-media-v2 {
    min-height: 138px;
    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(255, 255, 255, 0.95),
            rgba(255, 241, 231, 0.88)
        );
    font-size: 3.5rem;
}

.category-content-v2 {
    flex: 1;
    min-height: 175px;
}

.category-content-v2 h3 {
    font-size: 1.2rem;
}

.how-it-works-v2 {
    padding: 72px 0;
    background: #fff;
}

.how-it-works-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 48px;
}

.how-it-works-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.how-it-works-copy p {
    max-width: 470px;
    margin: 14px 0 23px;
    color: var(--color-muted);
}

.steps-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card-v2 {
    min-height: 150px;
    background:
        linear-gradient(145deg, #f7f8f7, #fff);
}

.loyalty-section-v2 {
    padding-top: 64px;
}

.loyalty-card-v2 {
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255, 107, 0, 0.27),
            transparent 32%
        ),
        linear-gradient(135deg, #041e16, #0b3928);
}

/* ================================================================
   TEMA ESCURO
   ================================================================ */

html[data-theme="dark"] {
    --color-ink: #f3f5f3;
    --color-muted: #aab4ae;
    --color-border: #2f3a34;
    --color-surface: #17211c;
    --color-page: #101713;
    --color-primary-soft: #361a1e;
    --color-accent-soft: #382719;
    --color-success-soft: #173322;
    --color-warning-soft: #392c18;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] body {
    background: var(--color-page);
    color: var(--color-ink);
}

html[data-theme="dark"] .site-header {
    background: rgba(16, 23, 19, 0.94);
    border-bottom-color: var(--color-border);
}

html[data-theme="dark"] .brand-seu,
html[data-theme="dark"] .main-navigation a,
html[data-theme="dark"] .account-button,
html[data-theme="dark"] .cart-button {
    color: var(--color-ink);
}

html[data-theme="dark"] .account-button,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .cart-button,
html[data-theme="dark"] .category-strip a,
html[data-theme="dark"] .category-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .featured-product,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .account-sidebar,
html[data-theme="dark"] .account-section,
html[data-theme="dark"] .message {
    background: var(--color-surface);
    border-color: var(--color-border);
}

html[data-theme="dark"] .catalog-section-v2,
html[data-theme="dark"] .catalog-section {
    background: var(--color-page);
}

html[data-theme="dark"] .how-it-works-v2,
html[data-theme="dark"] .how-it-works-section {
    background: #121b16;
    border-color: var(--color-border);
}

html[data-theme="dark"] .category-card-media-v2,
html[data-theme="dark"] .category-card-media,
html[data-theme="dark"] .featured-product-media {
    background:
        radial-gradient(
            circle at 50% 38%,
            #2a302c,
            #211d19
        );
}

html[data-theme="dark"] .store-info-list > div,
html[data-theme="dark"] .account-empty,
html[data-theme="dark"] .account-section-icon {
    background: #202b25;
}

html[data-theme="dark"] .button-outline {
    color: var(--color-ink);
    background: var(--color-surface);
    border-color: var(--color-border);
}

html[data-theme="dark"] .club-login-banner {
    background: var(--color-surface);
    border-color: var(--color-border);
}

html[data-theme="dark"] .hero-order-panel {
    background: rgba(23, 33, 28, 0.95);
    color: var(--color-ink);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .hero-order-info > div {
    background: #202b25;
}

html[data-theme="dark"] .hero-order-icon {
    background: #17211c;
}

html[data-theme="dark"] .theme-icon-light {
    opacity: 0.35;
}

html[data-theme="light"] .theme-icon-dark {
    opacity: 0.35;
}

@media (max-width: 900px) {
    .home-hero-grid-v2 {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
    }

    .hero-benefit-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 760px) {
    .home-hero-v2 {
        min-height: auto;
        padding: 31px 0 0;
    }

    .home-hero-background {
        background-position: 67% center;
    }

    .home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(1, 20, 14, 0.96) 0%,
                rgba(1, 20, 14, 0.9) 62%,
                rgba(1, 20, 14, 0.78) 100%
            );
    }

    .home-hero-grid-v2 {
        display: block;
        min-height: auto;
    }

    .home-hero-v2 h1 {
        font-size: clamp(2.75rem, 14vw, 4.2rem);
    }

    .hero-order-panel {
        margin-top: 25px;
        padding: 17px;
    }

    .hero-order-panel h2 {
        font-size: 1.2rem;
    }

    .hero-order-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-order-info > div {
        display: block;
        padding: 9px;
        text-align: center;
    }

    .hero-order-icon {
        width: 33px;
        height: 33px;
        margin: 0 auto 6px;
    }

    .hero-order-info small {
        font-size: 0.62rem;
    }

    .hero-order-info strong {
        font-size: 0.72rem;
    }

    .hero-panel-link {
        display: none;
    }

    .hero-benefit-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 23px;
        padding: 14px;
        font-size: 0.72rem;
    }

    .catalog-heading-status {
        display: none;
    }

    .category-grid-v2 {
        grid-template-columns: 1fr;
    }

    .category-card-v2 {
        display: grid;
        grid-template-columns: 100px 1fr;
        min-height: 148px;
    }

    .category-card-media-v2 {
        min-height: 100%;
    }

    .category-content-v2 {
        min-height: 0;
    }

    .how-it-works-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .steps-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   SEU FORNI — SABORES EM DESTAQUE
   ================================================================ */

.featured-flavors-section {
    padding: 62px 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 107, 0, 0.08), transparent 25%),
        #fff;
    border-bottom: 1px solid var(--color-border);
}

.featured-flavors-heading {
    align-items: center;
}

.featured-flavors-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.flavor-card {
    min-width: 0;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.flavor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 31, 43, 0.38);
    box-shadow: var(--shadow-md);
}

.flavor-card-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 138px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6, 22, 16, 0.04), rgba(6, 22, 16, 0.18)),
        var(--flavor-image),
        linear-gradient(145deg, #fff0e8, #f6e5dc);
    background-position: center;
    background-size: cover;
}

.flavor-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.32));
    pointer-events: none;
}

.flavor-fallback {
    font-size: 2.7rem;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.flavor-card-content {
    padding: 15px;
}

.flavor-badge {
    display: inline-flex;
    max-width: 100%;
    padding: 5px 8px;
    color: #7a3d00;
    background: #ffe4c9;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.flavor-badge-special {
    color: #8d3900;
    background: #ffd9ab;
}

.flavor-badge-dessert {
    color: #8b194a;
    background: #ffd5e6;
}

.flavor-badge-traditional-dessert {
    color: #702a46;
    background: #f5dbe6;
}

.flavor-card h3 {
    margin: 10px 0 4px;
    font-size: 1rem;
    line-height: 1.16;
}

.flavor-card p {
    display: -webkit-box;
    min-height: 38px;
    margin: 0;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 0.76rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.flavor-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 900;
}

.featured-flavors-note {
    margin: 16px 0 0;
    color: var(--color-muted);
    font-size: 0.75rem;
}

.category-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.category-preview-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;
    color: #71513d;
    background: var(--color-accent-soft);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
}

.category-preview-tags-inline {
    margin-top: 17px;
}

/* ================================================================
   SEU FORNI — DARK MODE CONSISTENTE
   ================================================================ */

html[data-theme="dark"] {
    --color-ink: #f4f3ef;
    --color-muted: #aeb9b3;
    --color-border: rgba(203, 219, 211, 0.13);
    --color-surface: #101916;
    --color-page: #07120f;
    --color-primary-soft: rgba(230, 31, 43, 0.11);
    --color-accent-soft: rgba(255, 107, 0, 0.1);
    --color-success-soft: rgba(28, 123, 59, 0.18);
    --color-warning-soft: rgba(157, 90, 0, 0.17);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 24px 65px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] body {
    color: var(--color-ink);
    background:
        radial-gradient(circle at top, rgba(12, 48, 36, 0.28), transparent 31%),
        var(--color-page);
}

html[data-theme="dark"] .site-header {
    background: rgba(7, 18, 15, 0.94);
    border-bottom-color: var(--color-border);
}

html[data-theme="dark"] .brand-seu,
html[data-theme="dark"] .main-navigation a,
html[data-theme="dark"] .account-button,
html[data-theme="dark"] .cart-button,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .button-outline,
html[data-theme="dark"] .button-ghost,
html[data-theme="dark"] .back-link {
    color: var(--color-ink);
}

html[data-theme="dark"] .account-button,
html[data-theme="dark"] .cart-button,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .category-strip a,
html[data-theme="dark"] .flavor-card,
html[data-theme="dark"] .category-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .account-sidebar,
html[data-theme="dark"] .account-section,
html[data-theme="dark"] .message,
html[data-theme="dark"] .club-login-banner {
    color: var(--color-ink);
    background: var(--color-surface);
    border-color: var(--color-border);
}

html[data-theme="dark"] .featured-flavors-section,
html[data-theme="dark"] .catalog-section,
html[data-theme="dark"] .catalog-section-v2 {
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 107, 0, 0.05), transparent 25%),
        var(--color-page);
}

html[data-theme="dark"] .how-it-works-section {
    background: #0b1512;
    border-color: var(--color-border);
}

html[data-theme="dark"] .site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, #03150f, #032219);
}

html[data-theme="dark"] .button-outline,
html[data-theme="dark"] .button-ghost {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .category-preview-tags span {
    color: #ffb574;
    background: rgba(255, 107, 0, 0.12);
}

html[data-theme="dark"] .flavor-card-media {
    background:
        linear-gradient(180deg, rgba(4, 15, 11, 0.08), rgba(4, 15, 11, 0.48)),
        var(--flavor-image),
        linear-gradient(145deg, #31221c, #151a17);
    background-position: center;
    background-size: cover;
}

html[data-theme="dark"] .flavor-badge {
    color: #ffd5ac;
    background: rgba(255, 107, 0, 0.16);
}

html[data-theme="dark"] .flavor-badge-dessert,
html[data-theme="dark"] .flavor-badge-traditional-dessert {
    color: #ffc5dc;
    background: rgba(232, 72, 136, 0.15);
}

html[data-theme="dark"] .marketplace-page .category-header,
html[data-theme="dark"] .marketplace-page .product-heading,
html[data-theme="dark"] .marketplace-page .choice-group,
html[data-theme="dark"] .marketplace-page .builder-summary,
html[data-theme="dark"] .marketplace-page .product-list-item {
    color: var(--color-ink);
    background:
        linear-gradient(180deg, rgba(16, 26, 22, 0.99), rgba(10, 18, 15, 0.98));
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .marketplace-page h1,
html[data-theme="dark"] .marketplace-page h2,
html[data-theme="dark"] .marketplace-page h3,
html[data-theme="dark"] .marketplace-page strong,
html[data-theme="dark"] .marketplace-page label {
    color: var(--color-ink);
}

html[data-theme="dark"] .marketplace-page p,
html[data-theme="dark"] .marketplace-page small,
html[data-theme="dark"] .marketplace-page .muted,
html[data-theme="dark"] .marketplace-page .choice-group-heading p,
html[data-theme="dark"] .marketplace-page .builder-help {
    color: var(--color-muted);
}

html[data-theme="dark"] .marketplace-page .category-header-badge,
html[data-theme="dark"] .marketplace-page .product-heading-badge,
html[data-theme="dark"] .marketplace-page .product-list-media {
    color: #ffd7ca;
    background:
        linear-gradient(145deg, rgba(70, 28, 24, 0.95), rgba(30, 12, 10, 0.99));
}

html[data-theme="dark"] .marketplace-page .choice-group-heading {
    background: rgba(255, 255, 255, 0.025);
    border-bottom-color: var(--color-border);
}

html[data-theme="dark"] .marketplace-page .option-list-item {
    color: var(--color-ink);
    background: transparent;
    border-bottom-color: var(--color-border);
}

html[data-theme="dark"] .marketplace-page .option-list-item:hover {
    background: rgba(255, 255, 255, 0.035);
}

html[data-theme="dark"] .marketplace-page .option-list-item:has(input:checked) {
    background: rgba(230, 31, 43, 0.1);
}

html[data-theme="dark"] .marketplace-page .option-list-action,
html[data-theme="dark"] .marketplace-page .quantity-control button,
html[data-theme="dark"] .marketplace-page .quantity-control input,
html[data-theme="dark"] .marketplace-page .choice-counter,
html[data-theme="dark"] .marketplace-page .order-observation {
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-border);
}

html[data-theme="dark"] .marketplace-page .base-price,
html[data-theme="dark"] .marketplace-page .summary-line-total strong,
html[data-theme="dark"] .marketplace-page .product-list-footer strong {
    color: #ff6c74;
}

@media (max-width: 1180px) {
    .featured-flavors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .featured-flavors-section {
        padding: 42px 0;
    }

    .featured-flavors-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .featured-flavors-grid::-webkit-scrollbar {
        display: none;
    }

    .flavor-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
    }

    .featured-flavors-note {
        font-size: 0.7rem;
    }
}
