/* ============================================
   AMERICAN BURGER - MAIN STYLESHEET
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --color-bg: #fff8f3;
  --color-bg-elevated: #fff1e7;
  --color-bg-card: #ffffff;
  --color-surface: #fff6f0;
  --color-border: #f0d8ca;
  --color-text: #2f241f;
  --color-text-muted: #6f5e53;
  --color-text-dim: #9a8274;
  --color-primary: #E8451C;
  --color-primary-hover: #FF5A2E;
  --color-primary-glow: rgba(232, 69, 28, 0.3);
  --color-accent: #FFB800;
  --color-accent-hover: #FFC933;
  --color-success: #2ECC71;
  --color-danger: #E74C3C;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem;
  --space-lg: 1.5rem; --space-xl: 2rem; --space-2xl: 3rem;
  --space-3xl: 4rem; --space-4xl: 6rem;
  --container-max: 1200px;
  --header-height: 80px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.6; overflow-x: hidden; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* === UTILITIES === */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 0.05em; margin-bottom: var(--space-xl); position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 4px; background: var(--color-primary); border-radius: 2px; }
.section-title--center::after { left: 50%; transform: translateX(-50%); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 0.85rem 2rem; border-radius: var(--border-radius-sm); font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; transition: all var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left 0.5s; }
.btn:hover::before { left: 100%; }
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: 0 4px 20px var(--color-primary-glow); }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px var(--color-primary-glow); }
.btn--accent { background: var(--color-accent); color: var(--color-bg); }
.btn--accent:hover { background: var(--color-accent-hover); color: var(--color-bg); transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.15rem; }
.btn--block { width: 100%; }

/* === HEADER === */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); background: rgba(255,248,243,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--color-border); transition: all var(--transition); }
.site-header--scrolled { height: 65px; box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.site-logo { display: flex; align-items: center; gap: var(--space-sm); }
.site-logo img { height: 50px; width: auto; }
.site-logo__text { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-text); letter-spacing: 0.1em; line-height: 1; }
.site-logo__text span { color: var(--color-primary); }

.main-nav { display: flex; align-items: center; gap: var(--space-xl); }
.main-nav__list { display: flex; gap: var(--space-lg); }
.main-nav__link { font-family: var(--font-heading); font-size: 0.95rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; position: relative; padding: var(--space-xs) 0; transition: color var(--transition-fast); }
.main-nav__link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--color-primary); transition: width var(--transition); }
.main-nav__link:hover, .main-nav__link--active { color: var(--color-text); }
.main-nav__link:hover::after, .main-nav__link--active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-md); }
.header-cart { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--color-surface); color: var(--color-text); transition: all var(--transition); }
.header-cart:hover { background: var(--color-primary); color: #fff; }
.header-cart__count { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; border-radius: 50%; background: var(--color-primary); color: #fff; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.header-user { display: flex; align-items: center; gap: var(--space-sm); color: var(--color-text-muted); font-size: 0.9rem; transition: color var(--transition-fast); }
.header-user:hover { color: var(--color-text); }

/* Mobile Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 5px 0; }
.menu-toggle span { display: block; height: 2px; background: var(--color-text); border-radius: 2px; transition: all var(--transition); }
.menu-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle--active span:nth-child(2) { opacity: 0; }
.menu-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--color-bg); z-index: 999; padding: var(--space-xl); overflow-y: auto; }
.mobile-nav--open { display: flex; flex-direction: column; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-nav__link { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.08em; padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border); }

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(78,35,17,0.18) 0%, rgba(255,248,243,0.28) 35%, rgba(255,248,243,0.88) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl); }
.hero__badge { display: inline-flex; align-items: center; gap: var(--space-sm); padding: 0.4rem 1.2rem; background: rgba(232,69,28,0.15); border: 1px solid rgba(232,69,28,0.3); border-radius: 50px; font-size: 0.85rem; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-lg); animation: fadeInUp 0.6s ease 0.2s both; }
.hero__title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.08em; line-height: 0.95; margin-bottom: var(--space-lg); animation: fadeInUp 0.6s ease 0.4s both; }
.hero__title span { color: var(--color-primary); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: #5c483f; max-width: 550px; margin: 0 auto var(--space-xl); line-height: 1.7; animation: fadeInUp 0.6s ease 0.6s both; }
.hero__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.8s both; }
.hero__scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s ease infinite; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* === CATEGORY NAV === */
.category-nav { position: sticky; top: var(--header-height); z-index: 100; background: var(--color-bg); border-bottom: 1px solid var(--color-border); padding: var(--space-md) 0; }
.category-nav__list { display: flex; gap: var(--space-sm); overflow-x: auto; scrollbar-width: none; padding: 0 var(--space-md); scroll-snap-type: x mandatory; }
.category-nav__list::-webkit-scrollbar { display: none; }
.category-nav__link { display: inline-flex; align-items: center; gap: var(--space-xs); padding: 0.6rem 1.2rem; border-radius: 50px; background: var(--color-surface); color: var(--color-text-muted); font-size: 0.9rem; font-weight: 500; white-space: nowrap; transition: all var(--transition); border: 1px solid transparent; }
.category-nav__link:hover { color: var(--color-text); border-color: var(--color-border); }
.category-nav__link--active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* === MENU GRID === */
.menu-section { padding: var(--space-3xl) 0; }
.menu-category { margin-bottom: var(--space-4xl); scroll-margin-top: calc(var(--header-height) + 70px); }
.menu-category__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border); }
.menu-category__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: 0.06em; }
.menu-category__count { font-size: 0.85rem; color: var(--color-text-muted); }
.menu-category__info { font-size: 0.9rem; color: var(--color-text-dim); margin-top: var(--space-xs); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-lg); }

/* === PRODUCT CARD === */
.product-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--border-radius); overflow: hidden; transition: all var(--transition); }
.product-card:hover { border-color: rgba(232,69,28,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.product-card__image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--color-surface); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__badge { position: absolute; top: var(--space-sm); left: var(--space-sm); padding: 0.25rem 0.7rem; background: var(--color-primary); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 4px; }
.product-card__body { padding: var(--space-md) var(--space-lg); }
.product-card__name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: var(--space-xs); }
.product-card__name a { color: var(--color-text); }
.product-card__name a:hover { color: var(--color-primary); }
.product-card__description { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: var(--space-md); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md) var(--space-lg); border-top: 1px solid var(--color-border); }
.product-card__price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-accent); }
.product-card__add { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-size: 1.2rem; }
.product-card__add:hover { background: var(--color-primary-hover); transform: scale(1.1); }

/* === REWARDS === */
.rewards-section { padding: var(--space-4xl) 0; background: linear-gradient(135deg, var(--color-bg-elevated), var(--color-bg)); position: relative; overflow: hidden; }
.rewards-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, var(--color-primary-glow), transparent 70%); pointer-events: none; }
.rewards-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--border-radius-lg); padding: var(--space-3xl); max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.rewards-card__icon { width: 80px; height: 80px; margin: 0 auto var(--space-xl); background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.rewards-card__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: 0.06em; margin-bottom: var(--space-md); }
.rewards-card__text { color: var(--color-text-muted); max-width: 500px; margin: 0 auto var(--space-xl); line-height: 1.7; }
.stamp-card { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); max-width: 400px; margin: 0 auto var(--space-xl); }
.stamp-card__item { aspect-ratio: 1; border-radius: var(--border-radius-sm); border: 2px dashed var(--color-border); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; position: relative; transition: all var(--transition); }
.stamp-card__item--filled { border-style: solid; border-color: var(--color-primary); background: rgba(232,69,28,0.1); }
.stamp-card__item--free { border-style: solid; border-color: var(--color-accent); background: rgba(255,184,0,0.1); }
.stamp-card__item--free::after { content: 'GRATIS'; position: absolute; bottom: -20px; font-size: 0.6rem; font-weight: 700; color: var(--color-accent); letter-spacing: 0.1em; }

/* === ABOUT === */
.about-section { padding: var(--space-4xl) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.about-image { border-radius: var(--border-radius-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--color-primary); border-radius: var(--border-radius-lg); transform: translate(15px, 15px); z-index: -1; }
.about-content p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-lg); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-top: var(--space-xl); }
.about-feature { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.95rem; }
.about-feature__icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(232,69,28,0.1); color: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* === CONTACT === */
.contact-section { padding: var(--space-4xl) 0; background: var(--color-bg-elevated); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }
.contact-item { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact-item__icon { width: 48px; height: 48px; border-radius: var(--border-radius-sm); background: rgba(232,69,28,0.1); color: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item__label { font-size: 0.8rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-xs); }
.contact-item__value { font-size: 1.05rem; color: var(--color-text); }
.contact-map iframe { width: 100%; min-height: 350px; border: none; border-radius: var(--border-radius); filter: saturate(0.95) brightness(1.02); }

.opening-hours__row { display: flex; justify-content: space-between; padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.opening-hours__day { color: var(--color-text-muted); }
.opening-hours__time { color: var(--color-text); font-weight: 500; }
.opening-hours__time--closed { color: var(--color-danger); }

/* === FOOTER === */
.site-footer { background: var(--color-bg); border-top: 1px solid var(--color-border); padding: var(--space-3xl) 0 var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-brand__text { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: var(--space-md); max-width: 300px; }
.footer-social { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.footer-social__link { width: 40px; height: 40px; border-radius: 50%; background: var(--color-surface); color: var(--color-text-muted); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social__link:hover { background: var(--color-primary); color: #fff; }
.footer-col__title { font-family: var(--font-heading); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-md); color: var(--color-text); }
.footer-col__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col__link { font-size: 0.9rem; color: var(--color-text-muted); transition: color var(--transition-fast); }
.footer-col__link:hover { color: var(--color-primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-xl); border-top: 1px solid var(--color-border); font-size: 0.85rem; color: var(--color-text-dim); }
.footer-bottom a { color: var(--color-text-muted); }

/* === TOAST NOTIFICATION === */
.toast { position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%); background: var(--color-success); color: #fff; padding: 0.85rem 1.5rem; border-radius: var(--border-radius-sm); font-weight: 600; font-size: 0.95rem; z-index: 10000; transition: bottom 0.4s cubic-bezier(0.22, 1, 0.36, 1); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.toast--visible { bottom: 2rem; }
.toast--error { background: var(--color-danger); }

/* === REWARDS DASHBOARD === */
.rewards-dashboard { padding: var(--space-xl); }
.rewards-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-2xl); }
.rewards-stat { background: var(--color-surface); border-radius: var(--border-radius); padding: var(--space-lg); text-align: center; }
.rewards-stat__number { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-primary); line-height: 1; }
.rewards-stat__label { font-size: 0.8rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: var(--space-sm); }
.rewards-history__item { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md); border-bottom: 1px solid var(--color-border); }
.rewards-history__date { font-size: 0.85rem; color: var(--color-text-dim); }
.rewards-history__points { font-weight: 700; color: var(--color-success); }
.rewards-login-prompt { text-align: center; padding: var(--space-2xl); }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in--visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left--visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right--visible { opacity: 1; transform: translateX(0); }


.floating-cart { position: fixed; right: 1rem; bottom: 1rem; z-index: 1002; display: flex; align-items: center; gap: 0.65rem; padding: 0.9rem 1rem; border-radius: 999px; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover)); color: #fff; box-shadow: 0 14px 40px rgba(232,69,28,0.35); transform: translateY(120px); opacity: 0; pointer-events: none; transition: all var(--transition); }
.floating-cart:hover { color: #fff; transform: translateY(-2px); }
.floating-cart--visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.floating-cart__icon { display: inline-flex; }
.floating-cart__text { font-family: var(--font-heading); font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }
.floating-cart__count { min-width: 28px; height: 28px; padding: 0 0.45rem; border-radius: 999px; background: rgba(0,0,0,0.25); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.product-card__options { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0.7rem 1rem; border-radius: 999px; background: var(--color-surface); color: var(--color-text); font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; transition: all var(--transition); }
.product-card__options:hover { background: var(--color-primary); color: #fff; }
.product-modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.product-modal--open { display: block; }
.product-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); }
.product-modal__dialog { position: relative; z-index: 1; width: min(900px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); overflow: auto; margin: 1rem auto; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--border-radius-lg); box-shadow: 0 24px 80px rgba(0,0,0,0.55); }
.product-modal__close { position: absolute; top: 0.75rem; right: 0.85rem; font-size: 2rem; line-height: 1; color: var(--color-text-muted); z-index: 2; }
.product-modal__grid { display: grid; grid-template-columns: 1fr 1.2fr; }
.product-modal__image { background: var(--color-surface); min-height: 100%; }
.product-modal__image img { width: 100%; height: 100%; object-fit: cover; }
.product-modal__content { padding: var(--space-xl); }
.product-modal__title { margin-bottom: 0.5rem; }
.product-modal__price { font-family: var(--font-heading); font-size: 1.35rem; color: var(--color-accent); margin-bottom: 1rem; }
.product-modal__description { color: var(--color-text-muted); margin-bottom: 1rem; }
.product-options-form__field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.product-options-form__field label { font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.product-options-form__field select { width: 100%; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--border-radius-sm); padding: 0.9rem 1rem; }
.product-options-form__field select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(232,69,28,0.15); }
.product-options-form__actions { margin-top: 1.25rem; }
.custom-logo-link, .site-logo { display: inline-flex; align-items: center; max-width: 170px; }
.custom-logo { max-height: 54px; width: auto; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; }
  .site-header .container { gap: 0.5rem; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; width: 36px; margin-left: auto; flex-shrink: 0; }
  .custom-logo-link, .site-logo { max-width: 120px; flex-shrink: 1; }
  .custom-logo, .site-logo img { max-height: 42px; }
  .header-actions { gap: 0.45rem; flex-shrink: 0; }
  .header-user, .header-cart { width: 38px; height: 38px; justify-content: center; }
  .header-user { background: #fff5ed; border-radius: 14px; color: #2d1f17; border: 1px solid rgba(87,53,31,0.14); }
  .header-user__text { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .rewards-stats { grid-template-columns: 1fr; }
  .category-nav { top: 65px; }
  .about-features { grid-template-columns: 1fr; }
  .product-modal__grid { grid-template-columns: 1fr; }
}


@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .btn--lg { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .site-header .container { padding: 0 0.85rem; }
  .custom-logo-link, .site-logo { max-width: 100px; }
  .header-actions { gap: 0.35rem; }
  .header-user, .header-cart { width: 34px; height: 34px; }
  .header-cart__count { width: 18px; height: 18px; font-size: 0.65rem; }
  .floating-cart { left: 0.75rem; right: 0.75rem; justify-content: space-between; }
  .product-modal__grid { grid-template-columns: 1fr; }
}


@media print {
  .site-header, .category-nav, .site-footer, .hero, .rewards-section { display: none; }
  body { background: #fff; color: #000; }
}


body {
  background:
    radial-gradient(circle at top right, rgba(255,184,0,0.10), transparent 30%),
    radial-gradient(circle at left 20%, rgba(232,69,28,0.08), transparent 28%),
    var(--color-bg);
}

.site-header {
  border-bottom: 1px solid rgba(232,69,28,0.10);
  box-shadow: 0 10px 30px rgba(106, 62, 38, 0.08);
}
.site-header--scrolled {
  background: rgba(255, 248, 243, 0.98);
  box-shadow: 0 16px 40px rgba(106, 62, 38, 0.12);
}
.site-logo__text { color: var(--color-text); }
.main-nav__link { color: #7a6456; }
.main-nav__link:hover, .main-nav__link--active { color: var(--color-text); }
.header-user,
.header-cart {
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 18px rgba(106, 62, 38, 0.08);
}
.header-user { padding: 0.55rem 0.9rem; border-radius: 999px; color: var(--color-text); }
.header-cart { color: var(--color-text); }
.header-cart__count { box-shadow: 0 4px 10px rgba(232,69,28,0.25); }
.menu-toggle span { background: var(--color-text); }
.mobile-nav {
  background: linear-gradient(180deg, #fffaf6 0%, #fff1e8 100%);
}
.mobile-nav__link { color: var(--color-text); }
.hero__content {
  background: rgba(255,248,243,0.58);
  backdrop-filter: blur(4px);
  border-radius: 28px;
}
.hero__badge {
  background: rgba(255,255,255,0.72);
}
.menu-category__header,
.footer-bottom,
.opening-hours__row,
.product-card__footer {
  border-color: rgba(232,69,28,0.10);
}
.product-card {
  box-shadow: 0 16px 40px rgba(106, 62, 38, 0.08);
}
.product-card:hover {
  box-shadow: 0 24px 50px rgba(106, 62, 38, 0.14);
}
.product-card__image {
  background: linear-gradient(135deg, #fff0e5, #fff8f3);
}
.product-card__meta { margin-bottom: 0.5rem; }
.product-card__category {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card__description { min-height: 2.7em; }
.product-card__footer { gap: 1rem; }
.product-card__options {
  background: #fff;
  border: 1px solid var(--color-border);
}
.product-modal__dialog {
  background: #fffdfb;
  box-shadow: 0 30px 90px rgba(60, 36, 24, 0.22);
}
.product-options-form__field select {
  background: #fff;
  color: var(--color-text);
}
.contact-section,
.rewards-section {
  background: linear-gradient(180deg, rgba(255,241,231,0.85), rgba(255,248,243,0.85));
}
.about-image::after { border-color: rgba(232,69,28,0.35); }
.site-footer { background: #fff3ea; }
.footer-social__link { background: #fff; border: 1px solid var(--color-border); }

@media (min-width: 1025px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .product-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 220px;
  }
  .product-card__image {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .product-card__body {
    padding-bottom: 0.5rem;
  }
  .product-card__footer {
    padding-top: 0;
    border-top: 0;
    align-self: end;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding: 0 0.9rem;
    gap: 0.35rem;
  }
  .custom-logo-link, .site-logo {
    max-width: 132px;
  }
  .custom-logo, .site-logo img {
    max-height: 48px;
  }
  .header-actions {
    gap: 0.35rem;
  }
  .header-user, .header-cart {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
  }
  .header-user {
    display: inline-flex;
    justify-content: center;
  }
  .hero {
    min-height: auto;
    padding-top: 1rem;
  }
  .hero__content {
    margin: 1rem;
    padding: calc(var(--header-height) + 1.25rem) 1rem 2rem;
    border-radius: 22px;
  }
  .hero__title {
    letter-spacing: 0.03em;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .menu-category__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .product-modal__dialog {
    width: calc(100% - 1rem);
    margin: 0.5rem auto;
    max-height: calc(100vh - 1rem);
  }
}

@media (max-width: 480px) {
  :root { --header-height: 70px; }
  .site-header .container {
    padding: 0 0.7rem;
  }
  .custom-logo-link, .site-logo {
    max-width: 118px;
  }
  .custom-logo, .site-logo img {
    max-height: 44px;
  }
  .header-user, .header-cart, .menu-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .menu-toggle {
    justify-content: center;
  }
  .mobile-nav {
    padding: 1rem;
  }
  .mobile-nav__link {
    font-size: 1.15rem;
  }
  .hero__content {
    margin: 0.75rem;
  }
  .floating-cart {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    border-radius: 18px;
    justify-content: space-between;
  }
}


/* === V6 LIGHTER MENU + MOBILE HEADER IMPROVEMENTS === */
:root {
  --color-bg: #fffdf9;
  --color-bg-elevated: #fff7f0;
  --color-bg-card: #ffffff;
  --color-surface: #fffaf5;
  --color-border: #f2ddd0;
  --color-text: #2e241e;
  --color-text-muted: #705e52;
}
body {
  background:
    radial-gradient(circle at top right, rgba(255,184,0,0.12), transparent 28%),
    radial-gradient(circle at left 15%, rgba(232,69,28,0.06), transparent 26%),
    linear-gradient(180deg, #fffefb 0%, #fff7f0 42%, #fffdf9 100%);
}
.hero__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,251,247,0.44) 35%, rgba(255,253,249,0.92) 100%);
}
.hero__content {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 20px 60px rgba(108, 70, 44, 0.10);
}
.menu-section__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff1e7;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.menu-section__lead {
  max-width: 640px;
  color: var(--color-text-muted);
}
.category-nav {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 30;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.85rem;
  margin: 0 0 2rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(108, 70, 44, 0.08);
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff7f0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}
.category-nav__link:hover,
.category-nav__link--active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232,69,28,0.22);
}
.menu-category {
  scroll-margin-top: calc(var(--header-height) + 110px);
}
.menu-category + .menu-category {
  margin-top: 2.5rem;
}
.menu-category__header {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(232,69,28,0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}
.product-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}
.product-card__description {
  color: #64554b;
}
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .site-header {
    height: 76px;
  }
  .site-header .container {
    display: grid;
    grid-template-columns: minmax(92px, 120px) 1fr auto;
    gap: 0.55rem;
    align-items: center;
  }
  .custom-logo-link, .site-logo {
    max-width: 112px;
    min-width: 92px;
  }
  .custom-logo, .site-logo img {
    max-height: 44px;
    width: auto;
  }
  .header-actions {
    margin-left: auto;
    gap: 0.4rem;
  }
  .header-user, .header-cart, .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(108, 70, 44, 0.08);
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
  .header-user {
    background: #fff5ed;
    border: 1px solid rgba(87, 53, 31, 0.14);
    color: #2d1f17;
  }
  .header-cart {
    background: var(--color-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.25);
  }
  .menu-toggle {
    background: #fff;
    border: 1px solid var(--color-border);
  }
  .header-user__text {
    display: none;
  }
  .menu-toggle {
    display: inline-flex !important;
    flex-direction: column;
  }
  .mobile-nav {
    top: 76px;
    padding: 1rem 1rem 1.5rem;
    background: linear-gradient(180deg, #fffdf9 0%, #fff4eb 100%);
  }
  .mobile-nav__link {
    font-size: 1.08rem;
    padding: 0.9rem 0;
  }
  .hero__content {
    margin: 1rem;
    padding: calc(var(--header-height) + 1rem) 1.15rem 1.8rem;
    border-radius: 24px;
  }
  .menu-section__intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-nav {
    top: 86px;
    margin-bottom: 1.5rem;
    padding: 0.7rem;
  }
}
@media (max-width: 480px) {
  :root { --header-height: 76px; }
  .site-header .container {
    grid-template-columns: minmax(80px, 104px) 1fr auto;
    padding: 0 0.65rem;
    gap: 0.45rem;
  }
  .custom-logo-link, .site-logo {
    max-width: 100px;
    min-width: 80px;
  }
  .custom-logo, .site-logo img {
    max-height: 40px;
  }
  .header-user, .header-cart, .menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .hero__title {
    font-size: 2.3rem;
    line-height: 0.98;
  }
  .hero__subtitle {
    font-size: 0.98rem;
  }
  .btn--lg {
    width: 100%;
  }
  .category-nav__link {
    min-height: 40px;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
  }
  .menu-category__header {
    padding: 0.85rem 0.9rem;
  }
}


/* === V7 HEADER / MAP FIXES === */
.header-brandline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0 1.4rem;
}
.header-brandline__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #3e2c22;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-brandline__sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .site-header .container {
    grid-template-columns: minmax(80px, 104px) minmax(0, 1fr) auto;
  }
  .header-brandline {
    display: flex;
  }
  .header-actions {
    gap: 0.45rem;
  }
  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .header-brandline__title {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
  }
  .header-brandline__sub {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
  .site-header .container {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 0.35rem;
  }
  .custom-logo, .site-logo img {
    max-height: 38px;
  }
  .header-user, .header-cart {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

.contact-map iframe {
  background: #fff;
}


/* === V8 LIGHT HOMEPAGE / MENU === */
:root {
  --color-bg: #fbf4ee;
  --color-bg-elevated: #fffaf6;
  --color-bg-card: #ffffff;
  --color-surface: #f5e7dc;
  --color-surface-2: #fff2e8;
  --color-text: #2d2019;
  --color-text-muted: #6c5b52;
  --color-text-dim: #8c7a70;
  --color-border: rgba(87, 53, 31, 0.10);
  --color-primary: #ff6b00;
  --color-primary-hover: #e85a00;
  --color-accent: #ffb85a;
  --color-primary-glow: rgba(255, 107, 0, 0.16);
}
body {
  background: linear-gradient(180deg, #fffaf6 0%, #f7ede6 46%, #fffdfb 100%);
  color: var(--color-text);
}
.site-header {
  background: rgba(255, 255, 255, 0.97);
}
.site-header--scrolled, .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}
.hero--light { min-height: calc(100vh - 10px); }
.hero__bg-fallback { width:100%;height:100%;background:linear-gradient(135deg,#f4d8c6 0%,#fff8f2 48%,#f3dfd1 100%); }
.hero__overlay { background: linear-gradient(180deg, rgba(58,31,17,0.18) 0%, rgba(255,248,242,0.72) 18%, rgba(255,250,246,0.95) 100%); }
.hero__content {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 24px 70px rgba(104, 64, 35, 0.12);
}
.hero__subtitle { color: #5f4d44; }
.hero__scroll-indicator { color: #b89b8c; }
.section-heading { margin-bottom: var(--space-2xl); }
.section-heading--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-lead { color: var(--color-text-muted); line-height: 1.75; }
.preview-menu-section { padding: var(--space-4xl) 0; }
.menu-grid--preview .product-card { background: rgba(255,255,255,0.94); box-shadow: 0 16px 40px rgba(114,69,34,0.08); }
.product-card { background: rgba(255,255,255,0.96); box-shadow: 0 12px 32px rgba(117,72,37,0.06); }
.product-card:hover { box-shadow: 0 18px 44px rgba(117,72,37,0.12); }
.product-card__category { display:inline-flex; padding:.35rem .7rem; border-radius:999px; background:#fff1e4; color:#d25a00; font-size:.76rem; font-weight:700; letter-spacing:.03em; }
.product-card__options { display:inline-flex; align-items:center; justify-content:center; border-radius:999px; background:var(--color-primary); color:#fff; padding:.75rem 1rem; font-weight:700; }
.product-card__options:hover { background:#e85a00; }
.menu-section__lead { color: var(--color-text-muted); max-width: 56ch; }
.promo-section { padding: var(--space-4xl) 0 0; }
.promo-slider { position: relative; }
.promo-slide { display:none; grid-template-columns: 1.05fr 1fr; gap: var(--space-2xl); align-items:center; background: linear-gradient(135deg, #fff7f1 0%, #ffffff 100%); border:1px solid rgba(113,68,35,0.10); border-radius: 32px; padding: clamp(1.25rem, 3vw, 2rem); box-shadow: 0 24px 60px rgba(124,76,39,0.10); }
.promo-slide--active { display:grid; }
.promo-slide__media { border-radius: 24px; overflow:hidden; min-height: 320px; background:#f5e7dc; }
.promo-slide__media img { width:100%; height:100%; object-fit:cover; }
.promo-slide__eyebrow { display:inline-flex; margin-bottom: .85rem; padding: .4rem .75rem; border-radius:999px; background:#fff1e4; color:#cf5b03; font-weight:700; }
.promo-slide__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: .04em; margin-bottom: .75rem; }
.promo-slide__text { color: var(--color-text-muted); margin-bottom: 1.25rem; line-height:1.75; }
.promo-slide__footer { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.promo-slide__price { font-family: var(--font-display); font-size: 2rem; color: var(--color-primary); }
.promo-slider__dots { display:flex; justify-content:center; gap:.6rem; margin-top: 1rem; }
.promo-slider__dot { width:12px; height:12px; border-radius:50%; background:#e2c8b6; border:0; }
.promo-slider__dot.is-active { background: var(--color-primary); transform: scale(1.08); }
.testimonials-section { padding: var(--space-4xl) 0; }
.testimonials-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-lg); }
.testimonial-card { background: rgba(255,255,255,0.96); border: 1px solid rgba(110,70,38,0.10); border-radius: 24px; padding: 1.5rem; box-shadow: 0 16px 36px rgba(113,68,35,0.08); }
.testimonial-card__stars { color: #ffb85a; display:flex; gap:.2rem; margin-bottom: 1rem; }
.testimonial-card__text { font-size: 1rem; line-height: 1.8; color: var(--color-text); margin-bottom: 1rem; }
.testimonial-card__author { color: var(--color-primary); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .06em; }
.newsletter-section { padding: var(--space-4xl) 0; }
.newsletter-box { background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%); border:1px solid rgba(111,67,34,0.10); border-radius: 30px; padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: 0 22px 54px rgba(110,68,35,0.08); }
.newsletter-box__lead { color: var(--color-text-muted); max-width: 60ch; margin-top: .75rem; }
.newsletter-form { margin-top: 1.5rem; }
.newsletter-form__grid { display:grid; grid-template-columns: 1fr 1.2fr auto; gap: .85rem; }
.newsletter-form__input { width:100%; min-height:56px; background:#fff; border:1px solid rgba(108,72,43,0.14); border-radius: 999px; padding: 0 1rem; color: var(--color-text); }
.newsletter-form__button { min-height:56px; }
.newsletter-alert { margin-top: 1rem; padding: .9rem 1rem; border-radius: 16px; background:#fff1e6; color:#9a510f; }
.newsletter-alert--success { background:#eaf8ef; color:#1e7a41; }
.newsletter-alert--error { background:#ffefef; color:#b23a3a; }
.contact-map__placeholder { display:flex; align-items:center; justify-content:center; min-height: 380px; text-align:center; padding:2rem; background:#fff6ef; border-radius: 18px; color: var(--color-text-muted); }
.contact-map__link { margin-top: .75rem; }
.contact-map__link a { color: var(--color-primary); font-weight:700; }
.menu-archive-hero { padding-top: calc(var(--header-height) + var(--space-2xl)); padding-bottom: var(--space-xl); }
.menu-section--archive { padding-top: var(--space-xl); }
.mobile-nav { background: rgba(255, 255, 255, 0.98); }
.header-brandline__title, .header-brandline__sub { color: #1a0f0a; }
.footer-brand__text, .footer-col__link, .footer-bottom, .footer-bottom a { color: #58473d; }
@media (max-width: 991px) {
  .promo-slide { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  body { background: linear-gradient(180deg, #fffaf7 0%, #f5ebe4 60%, #fffdfc 100%); }
  .promo-section { padding-top: var(--space-3xl); }
  .promo-slide { padding: 1rem; border-radius: 26px; gap: 1rem; }
  .promo-slide__media { min-height: 220px; }
  .promo-slide__title { font-size: 2.15rem; }
  .hero__content { background: rgba(255,255,255,0.78); }
  .header-brandline { flex: 1; min-width: 0; }
  .header-brandline__title { font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header-actions { gap: .5rem; }
  .header-user, .header-cart { width: 58px; min-width: 58px; }
}


/* === V9 CONTRAST / DESKTOP BRAND / PRODUCT PAGE FIX === */
:root {
  --color-bg: #fffdf9;
  --color-bg-elevated: #ffffff;
  --color-bg-card: #ffffff;
  --color-surface: #fff5ed;
  --color-surface-2: #fff0e3;
  --color-text: #241811;
  --color-text-muted: #5d4a40;
  --color-text-dim: #7a655a;
  --color-border: rgba(87, 53, 31, 0.14);
  --color-primary-glow: rgba(255, 107, 0, 0.18);
}
body {
  background: linear-gradient(180deg, #fffefb 0%, #fff7f0 38%, #fffdf9 100%);
  color: var(--color-text);
}
.site-header,
.site-header--scrolled,
.site-header.scrolled {
  background: rgba(255, 250, 245, 0.96);
  border-bottom: 1px solid rgba(111, 67, 34, 0.10);
  box-shadow: 0 10px 30px rgba(92, 56, 30, 0.06);
}
.main-nav__link,
.header-user,
.header-user__text,
.header-cart,
.site-header a,
.site-header button {
  color: #33231b;
}
.header-cart { background: var(--color-primary); color: #fff; }
.header-user { background: #fff5ed; color: #2d1f17; border: 1px solid rgba(87,53,31,0.14); }
.header-user:hover { background: var(--color-primary); color: #fff; }
.header-cart:hover { background: #e85a00; color: #fff; }
.header-brandline {
  display: flex;
  flex: 1;
  min-width: 0;
  margin: 0 1.4rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header-brandline__title,
.header-brandline__sub {
  color: #2d1f17;
}
.header-brandline__title {
  font-family: "Bebas Neue", cursive;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}
.header-brandline__sub {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: #d95b00;
}
.hero__content,
.product-card,
.testimonial-card,
.newsletter-box,
.promo-slide,
.info-card,
.about-feature,
.contact-card,
.menu-category__header,
.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce div.product div.images {
  background: rgba(255,255,255,0.98);
}
.hero__subtitle,
.section-lead,
.product-card__description,
.promo-slide__text,
.newsletter-box__lead,
.testimonial-card__text,
.menu-category__info,
.woocommerce .woocommerce-product-details__short-description,
.woocommerce div.product p.price,
.woocommerce div.product .price,
.woocommerce-tabs,
.entry-content,
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--color-text-muted);
}
.section-title,
.section-heading__title,
.product-card__name a,
.menu-category__title,
.woocommerce div.product .product_title,
.woocommerce-tabs h2,
.woocommerce-tabs h3,
.testimonial-card__author {
  color: var(--color-text);
}
.btn--outline {
  color: #3a281f;
  border-color: rgba(87,53,31,0.16);
  background: rgba(255,255,255,0.72);
}
.btn--outline:hover { color: #fff; background: var(--color-primary); }
.mobile-nav {
  background: rgba(255,250,245,0.98);
}
.mobile-nav__link { color: #2c1f18; }
.contact-map iframe,
.contact-map__placeholder {
  border: 1px solid rgba(111,67,34,0.10);
}
/* WooCommerce single product */
.ab-woo-page {
  padding-top: calc(var(--header-height, 88px) + 2rem);
  padding-bottom: 4rem;
}
.ab-woo-page .woocommerce-breadcrumb,
.ab-woo-page .breadcrumbs {
  margin-bottom: 2rem;
  color: var(--color-text-dim);
}
.ab-woo-page .woocommerce-notices-wrapper { margin-bottom: 1rem; }
.ab-woo-page .product {
  background: transparent;
}
.ab-woo-page div.product {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}
.ab-woo-page div.product div.images,
.ab-woo-page div.product div.summary {
  border: 1px solid rgba(111,67,34,0.10);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 18px 48px rgba(92,56,30,0.08);
}
.ab-woo-page div.product div.images img { border-radius: 22px; }
.ab-woo-page .single_variation_wrap,
.ab-woo-page form.cart,
.ab-woo-page .variations_form {
  margin-top: 1rem;
}
.ab-woo-page .variations th,
.ab-woo-page .variations td,
.ab-woo-page .woocommerce-product-details__short-description,
.ab-woo-page .product_meta,
.ab-woo-page .woocommerce-tabs .panel {
  color: var(--color-text-muted);
}
.ab-woo-page table.variations select,
.ab-woo-page .qty {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(111,67,34,0.14);
  background: #fff;
  color: var(--color-text);
  padding: 0 .85rem;
}
.ab-woo-page .reset_variations {
  color: var(--color-primary);
  font-weight: 700;
}
.ab-woo-page .single_add_to_cart_button {
  min-height: 50px;
}
@media (max-width: 991px) {
  .header-brandline {
    margin: 0 0.75rem;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
  .header-brandline__title {
    font-size: 0.95rem;
    letter-spacing: 0.07em;
    text-shadow: none;
  }
  .header-brandline__sub {
    font-size: 0.60rem;
    letter-spacing: 0.18em;
  }
  .ab-woo-page div.product {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  body {
    background: linear-gradient(180deg, #fffefb 0%, #fff6ef 60%, #fffdfa 100%);
  }
  .site-header .container {
    gap: 0.5rem;
  }
  .header-brandline {
    flex: 1;
    margin: 0 0.35rem;
  }
  .header-user,
  .header-cart {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  .mobile-nav__link {
    color: #2d2019;
    border-bottom-color: rgba(87,53,31,0.10);
  }
}


/* ============================================
   V10 – BRIGHTER, STYLISH BRAND, SHOP FIX, FOOTER CLEANUP
   ============================================ */

/* --- 1. GESAMTE SEITE HELLER --- */
:root {
  --color-bg: #ffffff;
  --color-bg-elevated: #fffaf6;
  --color-bg-card: #ffffff;
  --color-surface: #fff8f2;
  --color-surface-2: #fff3ea;
  --color-text: #1e1410;
  --color-text-muted: #58473d;
  --color-text-dim: #7d6b60;
  --color-border: rgba(87, 53, 31, 0.10);
}
body {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 32%, #ffffff 100%);
  color: var(--color-text);
}
.site-header,
.site-header--scrolled,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(111, 67, 34, 0.08);
  box-shadow: 0 4px 24px rgba(92, 56, 30, 0.05);
}
.hero__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.50) 30%, rgba(255,255,255,0.96) 100%);
}
.hero__content {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 20px 60px rgba(104, 64, 35, 0.08);
}
.hero__subtitle { color: #5a493f; }
.product-card {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(117,72,37,0.05);
  border: 1px solid rgba(87, 53, 31, 0.08);
}
.product-card:hover {
  box-shadow: 0 14px 40px rgba(117,72,37,0.10);
  border-color: rgba(255, 107, 0, 0.22);
}
.menu-grid--preview .product-card {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(114,69,34,0.05);
}
.contact-section,
.rewards-section {
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}
.site-footer {
  background: #faf5f0;
  border-top: 1px solid rgba(87, 53, 31, 0.08);
}
.footer-brand__text,
.footer-col__link,
.footer-bottom,
.footer-bottom a {
  color: var(--color-text-muted);
}
.footer-col__title {
  color: var(--color-text);
}
.footer-social__link {
  background: #fff;
  border: 1px solid rgba(87, 53, 31, 0.10);
  color: var(--color-text-muted);
}
.footer-social__link:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.mobile-nav {
  background: rgba(255, 255, 255, 0.98);
}
.mobile-nav__link {
  color: var(--color-text);
  border-bottom-color: rgba(87, 53, 31, 0.08);
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(110,70,38,0.07);
  box-shadow: 0 10px 30px rgba(113,68,35,0.05);
}
.promo-slide {
  background: linear-gradient(135deg, #fffcf9 0%, #ffffff 100%);
  border: 1px solid rgba(113,68,35,0.07);
  box-shadow: 0 18px 50px rgba(124,76,39,0.07);
}
.newsletter-box {
  background: linear-gradient(135deg, #fffcf9 0%, #ffffff 100%);
  border: 1px solid rgba(111,67,34,0.07);
  box-shadow: 0 16px 44px rgba(110,68,35,0.05);
}
.category-nav {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(87, 53, 31, 0.08);
  box-shadow: 0 8px 24px rgba(108, 70, 44, 0.05);
}
.menu-category__header {
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(87, 53, 31, 0.06);
}

/* --- 2. ALLE SCHRIFTEN GUT SICHTBAR --- */
.hero__title,
.section-title,
.section-heading__title,
.product-card__name a,
.menu-category__title,
.promo-slide__title,
.rewards-card__title,
.testimonial-card__author {
  color: #1e1410;
}
.hero__badge {
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: #d05500;
}
.product-card__description {
  color: #5d4c42;
}
.section-lead,
.menu-section__lead,
.about-content p,
.promo-slide__text,
.newsletter-box__lead,
.rewards-card__text {
  color: #58473d;
}
.section-eyebrow {
  background: #fff1e4;
  color: #d05500;
}
.product-card__category {
  background: #fff1e4;
  color: #d05500;
}
.testimonial-card__text {
  color: #2e2119;
}
/* Header nav links sichtbar */
.main-nav__link,
.site-header a,
.site-header button {
  color: #3a2a1f;
}
.main-nav__link:hover,
.main-nav__link--active {
  color: #1e1410;
}
.header-user,
.header-cart {
  color: #3a2a1f;
  background: #fff5ed;
  border: 1px solid rgba(87, 53, 31, 0.10);
}
.header-user:hover,
.header-cart:hover {
  background: #ffefe3;
  color: #1e1410;
}

/* --- 3. STYLISCHE ÜBERSCHRIFT "AMERICAN BURGER DÜREN / SINCE 2011" --- */
/* Desktop: in der Mitte des Headers */
.header-brandline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  margin: 0 1.4rem;
  position: relative;
}
.header-brandline__title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.22em;
  line-height: 1;
  color: #1e1410;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  text-shadow: none;
}
.header-brandline__title::before,
.header-brandline__title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  transform: translateY(-50%);
}
.header-brandline__title::before {
  right: calc(100% + 10px);
  background: linear-gradient(270deg, var(--color-primary), transparent);
}
.header-brandline__title::after {
  left: calc(100% + 10px);
  background: linear-gradient(90deg, var(--color-primary), transparent);
}
.header-brandline__sub {
  margin-top: 0.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.header-brandline__sub::before,
.header-brandline__sub::after {
  content: '◆';
  font-size: 0.35rem;
  color: var(--color-primary);
  opacity: 0.6;
}

/* Mobile brandline */
@media (max-width: 900px) {
  .header-brandline {
    display: flex;
    margin: 0 0.5rem;
  }
  .header-brandline__title {
    font-size: 1.15rem;
    letter-spacing: 0.14em;
  }
  .header-brandline__title::before,
  .header-brandline__title::after {
    width: 20px;
  }
  .header-brandline__title::before {
    right: calc(100% + 6px);
  }
  .header-brandline__title::after {
    left: calc(100% + 6px);
  }
  .header-brandline__sub {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }
}
@media (max-width: 480px) {
  .header-brandline__title {
    font-size: 0.92rem;
    letter-spacing: 0.10em;
  }
  .header-brandline__title::before,
  .header-brandline__title::after {
    width: 14px;
  }
  .header-brandline__title::before {
    right: calc(100% + 4px);
  }
  .header-brandline__title::after {
    left: calc(100% + 4px);
  }
  .header-brandline__sub {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    gap: 0.4rem;
  }
  .header-brandline__sub::before,
  .header-brandline__sub::after {
    font-size: 0.28rem;
  }
}

/* --- 4. SHOP-SEITE: Gleicher Aufbau wie Burger Highlights --- */
.menu-archive-hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-lg);
  text-align: left;
}
.menu-archive-hero .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: #1e1410;
}
.menu-archive-hero .section-lead {
  max-width: 56ch;
  color: var(--color-text-muted);
}
.menu-section--archive .menu-category__header {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(87, 53, 31, 0.06);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  margin-bottom: var(--space-lg);
}
.menu-section--archive .menu-grid {
  gap: var(--space-lg);
}
@media (min-width: 1025px) {
  .menu-section--archive .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .menu-section--archive .product-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 220px;
  }
  .menu-section--archive .product-card__image {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .menu-section--archive .product-card__body {
    padding-bottom: 0.5rem;
  }
  .menu-section--archive .product-card__footer {
    padding-top: 0;
    border-top: 0;
    align-self: end;
  }
}

/* --- 5. FOOTER: Nur Brand + Rechtliches (2 Spalten) --- */
.footer-grid {
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 6. Mobile body heller --- */
@media (max-width: 767px) {
  body {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 50%, #ffffff 100%);
  }
  .hero__content {
    background: rgba(255,255,255,0.86);
  }
}

/* --- 7. ANMELDEN BUTTON SICHTBAR + HEADER KONTRAST FIX --- */
.header-user {
  background: #fff5ed !important;
  color: #2d1f17 !important;
  border: 1px solid rgba(87, 53, 31, 0.14) !important;
  border-radius: 999px !important;
  padding: 0.55rem 0.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 4px 12px rgba(92, 56, 30, 0.06);
  transition: all 0.3s ease;
}
.header-user:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-primary) !important;
}
.header-user svg,
.header-user path {
  color: #2d1f17 !important;
  stroke: #2d1f17 !important;
}
.header-user:hover svg,
.header-user:hover path {
  color: #fff !important;
  stroke: #fff !important;
}
.header-user__text {
  color: #2d1f17 !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-user:hover .header-user__text {
  color: #fff !important;
}
.header-cart {
  background: var(--color-primary) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.25);
}
.header-cart svg,
.header-cart path {
  color: #fff !important;
  stroke: #fff !important;
}
.header-cart:hover {
  background: var(--color-primary-hover, #e85a00) !important;
  transform: scale(1.05);
}
.header-cart__count {
  background: #FFB800 !important;
  color: #1e1410 !important;
}

/* Brandline extra contrast */
.header-brandline__title {
  color: #1a0f0a !important;
  font-weight: 400;
}
.header-brandline__sub {
  color: #d95b00 !important;
}

/* Section title "Burger Highlights" visible */
.section-title {
  color: #1e1410 !important;
}
.section-title::after {
  background: var(--color-primary) !important;
}

/* WooCommerce standard shop page override (if it still shows) */
.woocommerce-products-header__title.page-title {
  font-family: var(--font-display) !important;
  color: #1e1410 !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  letter-spacing: 0.05em !important;
}
.woocommerce-result-count,
.woocommerce-ordering select {
  color: var(--color-text-muted) !important;
  background: #fff !important;
  border: 1px solid rgba(87, 53, 31, 0.12) !important;
  border-radius: 12px !important;
}

/* Outline button (Anmelden on hero) sichtbar */
.btn--outline {
  color: #2d1f17 !important;
  border: 2px solid rgba(87, 53, 31, 0.20) !important;
  background: rgba(255,255,255,0.80) !important;
}
.btn--outline:hover {
  color: #fff !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

/* Menu toggle (hamburger) dark on light */
.menu-toggle span {
  background: #2d1f17 !important;
}

/* Fix for any remaining dark backgrounds on shop/archive */
.menu-archive-hero,
.menu-section--archive {
  background: transparent;
}

@media (max-width: 900px) {
  .header-user {
    padding: 0 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    justify-content: center !important;
    border-radius: 14px !important;
  }
  .header-user__text {
    display: none !important;
  }
  .header-cart {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}


/* ============================================
   V11 CONTRAST & COLOR REFRESH
   ============================================ */
:root {
  --color-bg: #fffaf6;
  --color-bg-elevated: #fff3ea;
  --color-bg-card: #ffffff;
  --color-surface: #fff6f0;
  --color-border: #e7cbbb;
  --color-text: #231813;
  --color-text-muted: #4f3f36;
  --color-text-dim: #6d5a4e;
  --color-primary: #d95716;
  --color-primary-hover: #b94710;
  --color-primary-glow: rgba(217, 87, 22, 0.24);
  --color-accent: #8f4a12;
  --color-accent-hover: #743a0d;
}

html, body {
  background: linear-gradient(180deg, #fffdfb 0%, #fff7f1 35%, #fffaf6 100%) !important;
  color: var(--color-text) !important;
}

body, p, li, label, input, select, textarea, small, strong, em, span {
  color: inherit;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.menu-category__title,
.product-card__name,
.rewards-card__title,
.promo-slide__title,
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
  color: var(--color-text) !important;
}

p, .text-muted, .hero__subtitle, .promo-slide__text, .newsletter-box__lead,
.testimonial-card__text, .product-card__description, .about-content p,
.contact-item__label, .footer-brand__text, .footer-col__link, .opening-hours__day,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-result-count, .breadcrumbs, .breadcrumbs a {
  color: var(--color-text-muted) !important;
}

.site-header {
  background: rgba(255, 251, 247, 0.96) !important;
  border-bottom: 1px solid rgba(126, 84, 57, 0.16) !important;
  box-shadow: 0 10px 28px rgba(84, 48, 24, 0.06) !important;
}

.site-header--scrolled {
  box-shadow: 0 12px 30px rgba(84, 48, 24, 0.10) !important;
}

.main-nav__link, .header-user__text, .footer-bottom, .footer-bottom a,
.opening-hours__time, .contact-item__value, .mobile-nav__link {
  color: var(--color-text) !important;
}

.main-nav__link:hover, .main-nav__link--active, .footer-col__link:hover,
.footer-bottom a:hover, .breadcrumbs a:hover, .testimonial-card__author,
.header-brandline__sub {
  color: var(--color-primary) !important;
}

.hero__overlay {
  background: linear-gradient(180deg, rgba(255,253,251,0.72) 0%, rgba(255,249,244,0.84) 45%, rgba(255,248,243,0.96) 100%) !important;
}

.hero__title {
  color: #241710 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}
.hero__title span { color: var(--color-primary) !important; }
.hero__badge {
  background: rgba(217, 87, 22, 0.10) !important;
  border-color: rgba(217, 87, 22, 0.22) !important;
  color: var(--color-primary) !important;
}
.hero__subtitle {
  color: #46362d !important;
}

.product-card, .rewards-card, .testimonial-card, .newsletter-box, .promo-slide,
.contact-section, .contact-map iframe, .widget_shopping_cart,
.woocommerce ul.products li.product, .woocommerce-cart .woocommerce table.shop_table {
  box-shadow: 0 14px 34px rgba(83, 52, 31, 0.06) !important;
}

.product-card, .rewards-card, .testimonial-card, .newsletter-box, .promo-slide,
.widget_shopping_cart, .woocommerce ul.products li.product,
.woocommerce-cart .woocommerce table.shop_table, .woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea, .woocommerce form .form-row select {
  background: #fffdfb !important;
  border-color: rgba(126, 84, 57, 0.16) !important;
}

.product-card__price, .promo-slide__price, .woocommerce div.product p.price {
  color: var(--color-primary) !important;
}

.header-user {
  background: #fffaf6 !important;
  border: 1px solid rgba(126, 84, 57, 0.16) !important;
}
.header-user:hover {
  background: var(--color-primary) !important;
}
.header-cart {
  background: var(--color-primary) !important;
}
.header-cart__count {
  background: #ffd15a !important;
  color: #2a1a12 !important;
}

.btn--primary, .woocommerce a.button, .woocommerce button.button,
.woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce .cart .button, .woocommerce .checkout-button,
.woocommerce ul.products li.product .button, .newsletter-form__button {
  background: var(--color-primary) !important;
  color: #fff !important;
}
.btn--primary:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-primary-hover) !important;
}
.btn--outline {
  color: var(--color-text) !important;
  border-color: rgba(126, 84, 57, 0.22) !important;
  background: rgba(255,255,255,0.9) !important;
}
.btn--outline:hover {
  color: #fff !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.category-nav, .site-footer, .contact-section, .rewards-section {
  background: transparent !important;
}
.category-nav__link {
  background: #fff7f1 !important;
  color: var(--color-text) !important;
  border-color: rgba(126, 84, 57, 0.12) !important;
}
.category-nav__link--active {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-primary) !important;
}

.newsletter-form__input,
.woocommerce .coupon .input-text,
.woocommerce .quantity .qty {
  color: var(--color-text) !important;
  background: #ffffff !important;
}
.newsletter-alert {
  background: #fff2e8 !important;
  color: #8d4410 !important;
}
.newsletter-alert--success {
  background: #eefaf1 !important;
  color: #1f6f3d !important;
}
.newsletter-alert--error {
  background: #fff0f0 !important;
  color: #a03232 !important;
}

.contact-map iframe {
  filter: none !important;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: clamp(2.5rem, 11vw, 4rem) !important;
  }
  .hero__subtitle, .promo-slide__text, .testimonial-card__text, .newsletter-box__lead {
    color: #493930 !important;
  }
}
/* ============================================
   CHECKOUT - "Zahlungspflichtig bestellen" Button
   Füge diesen Code am Ende deiner main.css 
   oder woocommerce.css ein
   ============================================ */

/* Block-Checkout Button */
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #d32f2f, #b71c1c) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 18px 32px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: 'Oswald', 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4) !important;
    margin-top: 12px !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover {
    background: linear-gradient(135deg, #e53935, #c62828) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px rgba(211, 47, 47, 0.5) !important;
}

.wc-block-components-checkout-place-order-button:active,
.wc-block-cart__submit-button:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3) !important;
}

/* Warenkorb "Zur Kasse" Button gleicher Style */
.wc-block-cart__submit-container .wc-block-cart__submit-button {
    background: linear-gradient(135deg, #d32f2f, #b71c1c) !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}