@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,500,1,0');

:root {
  --bg: #f5f4ef;
  --ink: #1b1b1b;
  --accent: #d7262e;
  --accent-dark: #b71e25;
  --cta: #129c3b;
  --cta-dark: #0e7e31;
  --card: #ffffff;
  --muted: #6f6b66;
  --shadow: 0 18px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

.mi {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff4f4, #f5f4ef 45%, #eef7ed 100%);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-link { text-decoration: none; color: inherit; }
.logo-wrap { display: flex; gap: 16px; align-items: center; }
.logo {
  width: 96px;
  height: 74px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.brand { font-size: 20px; font-weight: 700; }
.contact-small { color: var(--muted); font-size: 13px; }
.muted { color: var(--muted); }

.top-nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.top-nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 14px; }
.top-nav a:hover { color: var(--ink); }
.top-nav .home-nav-link {
  color: #2d2a26;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1eee7;
}
.top-nav .home-nav-link.is-active {
  background: #e9f7ec;
  color: #0e7e31;
}
.order-nav-btn {
  background: linear-gradient(135deg, var(--accent), #ef4a52);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(215,38,46,0.28);
  border: 2px solid rgba(255,255,255,0.35);
}
.order-nav-btn:hover { color: #fff; filter: brightness(1.03); }
.order-nav-btn.is-active {
  background: linear-gradient(135deg, #b71e25, var(--accent));
}
.top-nav .order-nav-btn {
  color: #fff;
  font-weight: 800;
}
.header-cart-btn { margin-left: auto; }
.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e5ddd2;
  background: #fff;
  color: #1f1f1f;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu-btn svg { width: 22px; height: 22px; }
.mobile-menu-btn .mi { font-size: 24px; }
.mobile-phone-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #d5ead8;
  background: #fff;
  color: #13913a;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.mobile-phone-btn .mi { font-size: 23px; }
.mobile-cart-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: #1b1b1b;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  position: relative;
  cursor: pointer;
}
.mobile-cart-btn .cart-svg svg { width: 18px; height: 18px; }
.mobile-cart-btn .cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-nav .call-btn {
  background: var(--cta);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(18,156,59,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(0,0,0,0.06);
}
.call-icon svg { width: 16px; height: 16px; display: block; }
.top-nav a.admin-link { background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 10px; }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 30;
  display: none;
}
body.menu-open .mobile-menu { display: block; }
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: #fff;
  padding: 70px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: -12px 0 30px rgba(0,0,0,0.18);
}
.mobile-menu-panel a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 700;
  padding: 11px 12px;
  border-radius: 12px;
  background: #f9f6f1;
  border: 1px solid #ece3d9;
}
.mobile-menu-panel a.menu-link-icon {
  display: flex;
  align-items: center;
  gap: 11px;
}
.mobile-menu-panel a.menu-link-icon svg {
  width: 19px;
  height: 19px;
  color: #b31d24;
}
.mobile-menu-panel a.menu-link-icon .mi {
  font-size: 20px;
  color: #13913a;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5ddd2;
  background: #fff;
  color: #444;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.banner {
  height: 280px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #1b1b1b;
  margin: 0 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.banner-overlay {
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.banner-overlay h1 { margin: 0; font-size: 36px; }
.banner-overlay p { margin: 0; color: #f3f0ec; }
.open-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; font-weight: 600; }
.open-badge.open { background: #2b8a3e; }
.open-badge.closed { background: #c0392b; }
.maintenance { margin-top: 6px; background: #ffbe0b; color: #2b2b2b; padding: 6px 10px; border-radius: 10px; font-weight: 600; }

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 30px 40px 60px;
  align-items: start;
}

.menu { min-width: 0; }
.cart { grid-column: 2; }

.hours-card {
  margin-top: 12px;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 10px;
}
.hours-toggle {
  width: 100%;
  border: none;
  background: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}
.hours-left { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.dot.open { background: #2b8a3e; }
.dot.closed { background: #c0392b; }
.chevron { color: var(--muted); font-size: 14px; }
.hours-list { display: none; margin-top: 8px; }
.hours-list.open { display: block; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 4px; color: var(--muted); }

.menu-top { display: flex; flex-direction: column; gap: 16px; }
.categories-bar { margin-top: 12px; }
.search-wrap input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid #e6e1d7;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.categories { display: flex; gap: 10px; flex-wrap: wrap; }
.cat-btn {
  --cat-color: #d7262e;
  border: 1px solid #ecd7d8;
  background: #fff;
  padding: 16px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}
.cat-btn:hover {
  border-color: #e5b2b5;
  background: #fff5f5;
}
.cat-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-icon .mi {
  font-size: 19px;
  color: var(--cat-color);
}

.category { margin-top: 26px; }
.category-hero {
  border-radius: 18px;
  padding: 36px 28px;
  min-height: 160px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #1b1b1b;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.category-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 100%);
}
.category-hero.no-image {
  background: linear-gradient(130deg, #97171d, #139e3c);
}
.category-hero h2 {
  margin: 0;
  font-size: 30px;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}
.category-desc { margin-top: 8px; color: var(--muted); font-size: 14px; }

.items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 14px; }
.item-card {
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #f0e7e1;
}
.item-card.is-unavailable {
  opacity: 0.92;
  background: linear-gradient(140deg, #f7f5f3, #fbfbfb);
}
.item-card.no-thumb {
  min-height: 220px;
}
.item-thumb {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.sort-stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3bd66d, #149c3b 72%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(20,156,59,0.45);
  border: 2px solid rgba(255,255,255,0.75);
}
.item-title { display: flex; align-items: center; gap: 8px; }
.item-info h3 { margin: 0 0 6px; }
.item-info p { margin: 0; color: var(--muted); font-size: 13px; }
.item-meta { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-top: auto; }
.price { font-weight: 700; }
.info-btn {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid #ccc; background: #f1f1f1; color: #666;
  font-size: 12px; font-weight: 700; cursor: pointer;
}
.add-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  height: 42px;
  width: 52px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
}
.plus-icon { font-size: 20px; line-height: 1; }
.cart-svg svg { width: 16px; height: 16px; }
.add-btn:hover { background: var(--accent-dark); }
.add-btn[disabled] {
  background: #d0cdc8;
  cursor: not-allowed;
}
.add-btn[disabled]:hover {
  background: #d0cdc8;
}
.availability-badge {
  display: inline-flex;
  align-items: center;
  max-width: 62%;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.availability-badge.sold-out {
  background: #fce8e7;
  color: #b71e25;
  border: 1px solid #efc8c8;
}
.availability-badge.paused {
  background: #fff2dc;
  color: #9a5f0a;
  border: 1px solid #f0d6af;
}

.cart {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-block {
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.info-card {
  background: #fff;
  border: 1px solid #eee;
}
.info-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.info-row { display: flex; align-items: center; gap: 10px; margin: 8px 0; font-weight: 600; }
.info-row span { display: inline-flex; align-items: center; gap: 6px; }
.info-icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.info-icon .mi { font-size: 17px; }

.cart-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cart-close {
  margin-left: auto;
  border: none;
  background: #f3f0ec;
  color: #222;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
}
.cart h3 { margin: 0; }
.cart-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-item-title { font-weight: 600; }
.cart-item-opts { font-size: 12px; color: var(--muted); }
.cart-item-actions { display: flex; gap: 6px; align-items: center; }
.qty-btn { border: 1px solid #ddd; background: #fff; border-radius: 6px; padding: 2px 8px; cursor: pointer; }
.cart-total { display: flex; justify-content: space-between; margin-top: 10px; font-weight: 700; }

.delivery-choice { display: flex; gap: 8px; margin-bottom: 10px; }
.seg { position: relative; flex: 1; }
.seg input { position: absolute; inset: 0; opacity: 0; }
.seg span {
  display: block;
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid #e6e1d7;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
}
.seg input:checked + span {
  background: #1b1b1b;
  color: #fff;
  border-color: #1b1b1b;
}
.min-order-note { margin: 8px 0; font-size: 12px; color: var(--muted); }

.checkout-btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 12px;
  background: var(--cta);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}
.checkout-btn:hover { background: var(--cta-dark); }
.checkout-btn.disabled { background: #b9b9b9; cursor: not-allowed; }

.pay-icons { display: flex; gap: 8px; margin-top: 8px; }
.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #e5e5e5;
  background: #fff;
  gap: 6px;
}
.pay-logo.paypal { color: #003087; border-color: #0070e0; }
.pay-logo.cash { color: #2f9e44; border-color: #2f9e44; }
.pay-logo.card { color: #b26a00; border-color: #d69a2d; }
.pay-logo svg { width: 16px; height: 16px; }
.pay-logo .mi { font-size: 17px; }

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

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.modal.open { display: flex; }
.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: min(760px, 95vw);
  max-height: 80vh;
  overflow: auto;
  box-shadow: var(--shadow);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e6e1d7;
  background: #fff;
  color: #444;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.modal-close:hover { background: #f5f1ea; }
.option-row { display: flex; justify-content: space-between; padding: 8px 0; }
#modal-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.option-chip {
  border: 1px solid #e6e1d7;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.option-chip.selected {
  background: #2f9e44;
  border-color: #2f9e44;
  color: #fff;
}
.option-chip .opt-price { color: inherit; font-weight: 700; }
.opt-price { color: var(--muted); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 12px; }
.modal-actions button { padding: 8px 12px; border-radius: 10px; border: 1px solid #ddd; background: #fff; cursor: pointer; }
.modal-actions #modal-add { background: var(--accent); color: #fff; border: none; }

.info-section h4 { margin: 8px 0 6px; }
.info-section ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  z-index: 45;
  box-shadow: 0 -10px 24px rgba(0,0,0,0.2);
}
.cookie-banner button {
  background: #fff;
  color: #1b1b1b;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  padding: 24px 40px 40px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.footer-links { display: none; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 13px; }
.footer-links a:hover { color: var(--ink); }

.checkout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 30px 40px 60px;
}
.checkout-card {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.step-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.step-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f4efe8;
  color: #2b2b2b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 16px; height: 16px; display: block; }
.step-icon .mi { font-size: 18px; }
.pay-option-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pay-option-icon svg { width: 16px; height: 16px; display: block; }
.pay-option-icon.mi { font-size: 18px; line-height: 1; }
.pay-method span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 46px;
  padding: 14px 12px;
  line-height: 1.2;
  border-width: 2px;
  border-style: solid;
  border-color: #e7e0d5;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}
.pay-method.is-disabled { pointer-events: none; }
.pay-method.is-disabled span { opacity: 0.45; filter: grayscale(0.45); cursor: not-allowed; }
.pay-method.paypal span .pay-option-icon { color: #0070e0; }
.pay-method.cash span .pay-option-icon { color: #2f9e44; }
.pay-method.card span .pay-option-icon { color: #d18413; }
.choice-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.choice-row .seg { flex: 1; }
.choice-row .seg.pay-method { min-width: 180px; }
.time-seg span { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.time-seg select { width: 100%; max-width: 220px; }
.locate-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.locate-row button { background: #1b1b1b; color: #fff; border: none; padding: 8px 12px; border-radius: 10px; cursor: pointer; font-weight: 600; }
.legal { font-size: 12px; color: var(--muted); margin-bottom: 10px; line-height: 1.4; }
#checkout-error {
  margin-top: 10px;
  color: #b71e25;
  font-size: 13px;
  font-weight: 700;
}

.checkout .grid input { height: 44px; font-size: 15px; }
.checkout textarea { font-size: 15px; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
textarea { width: 100%; min-height: 80px; padding: 10px; border-radius: 10px; border: 1px solid #ddd; }
input, select { padding: 10px; border-radius: 10px; border: 1px solid #ddd; }
.field-error {
  border-color: #d7262e !important;
  box-shadow: 0 0 0 2px rgba(215,38,46,0.16);
}
aside.cart input { width: 100%; }
.open-note { margin-top: 8px; font-weight: 600; }
.open-note.open { color: #2b8a3e; }
.open-note.closed { color: #c0392b; }
.coupon-row { display: flex; gap: 10px; align-items: center; }
.coupon-row button { padding: 8px 10px; border-radius: 8px; border: 1px solid #ddd; background: #fff; }
.checkout-right { background: #fff; padding: 16px; border-radius: 16px; box-shadow: var(--shadow); height: fit-content; position: sticky; top: 100px; }
.cart-total.total { font-size: 18px; background: #c0392b; color: #fff; padding: 10px; border-radius: 10px; margin-top: 8px; }

.pay-method.paypal input:checked + span { background: linear-gradient(135deg, #0070e0, #1a8cff); border-color: #0070e0; color: #fff; }
.pay-method.cash input:checked + span { background: linear-gradient(135deg, #2f9e44, #38bb56); border-color: #2f9e44; color: #fff; }
.pay-method.card input:checked + span { background: linear-gradient(135deg, #d18413, #e5a436); border-color: #d18413; color: #fff; }

.checkout-vat-box {
  margin-top: 12px;
  border: 1px solid #ebe2d8;
  border-radius: 12px;
  padding: 10px;
  background: #faf7f2;
}
.checkout-vat-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.checkout-vat-list { display: grid; gap: 6px; }
.checkout-vat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.page-content { padding: 30px 40px; }
.page-body { background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.contact-form { display: grid; gap: 14px; }
.contact-form label span { display: block; font-weight: 600; margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.check-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--cta); }
.contact-note { font-size: 12px; color: var(--muted); line-height: 1.4; }
.contact-submit {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.contact-submit:hover { background: var(--cta-dark); }
.contact-status { font-size: 12px; color: var(--muted); }

.home-main { padding: 0 40px 60px; }
.home-hero { margin-top: 20px; }
.hero-slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .6s ease, transform .9s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-overlay {
  min-height: 500px;
  width: 100%;
  background: linear-gradient(110deg, rgba(10,10,10,0.72) 8%, rgba(10,10,10,0.3) 64%, rgba(10,10,10,0.1) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 44px;
  transition: transform .35s ease;
}
.hero-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 12px;
}
.hero-slide h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  max-width: 720px;
}
.hero-slide p {
  margin: 0;
  max-width: 560px;
  color: #f5f5f5;
  font-size: 18px;
}
.hero-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.order-nav-btn.big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  font-size: 16px;
}
.ghost-btn {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d0ccc4;
  cursor: pointer;
  transition: all .2s ease;
}
.hero-dot.is-active {
  width: 26px;
  background: var(--accent);
}

.home-benefit-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.benefit-pill {
  background: linear-gradient(135deg, #fff3f3, #eef9ee);
  border: 1px solid #ecdeda;
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.benefit-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  color: #b31d24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon .mi { font-size: 19px; }
.benefit-pill strong {
  font-size: 18px;
  color: #b31d24;
}
.benefit-pill span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.home-section {
  margin-top: 34px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  border: 1px solid #efe8e2;
}
.home-copy h2, .home-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
}
.home-copy p, .home-text p { color: var(--muted); line-height: 1.55; }
.home-richtext h2,
.home-richtext h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.home-richtext p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0;
}
.home-richtext ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}
.home-richtext li { margin-bottom: 6px; }
.home-intro-split { align-items: stretch; }
.home-intro-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-intro-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}
.home-intro-image.placeholder {
  background: repeating-linear-gradient(45deg, #f5ece1, #f5ece1 12px, #fff8f1 12px, #fff8f1 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d8173;
  font-weight: 700;
  font-size: 13px;
}
.home-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mosaic-tile {
  min-height: 170px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}
.mosaic-tile.placeholder {
  background: repeating-linear-gradient(45deg, #f5ece1, #f5ece1 12px, #fff8f1 12px, #fff8f1 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d8173;
  font-weight: 700;
  font-size: 13px;
}
.home-feature-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.feature-card {
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(135deg, #fff4f4, #eef8ef);
  border: 1px solid #eadfd8;
}
.feature-card h3 { margin-top: 0; margin-bottom: 6px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.home-section.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
}
.home-video {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.home-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.social-section h2 { text-align: center; }
.home-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 10px;
}
.social-btn {
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  font-weight: 800;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.social-icon { width: 16px; height: 16px; display: inline-flex; }
.social-icon svg { width: 16px; height: 16px; display: block; }
.social-btn.instagram {
  background: linear-gradient(135deg,#fd5949,#d6249f,#285AEB);
  color: #fff;
}
.social-btn.tiktok {
  background: #161616;
  color: #fff;
}
.social-btn.call {
  background: linear-gradient(135deg,#0f9d38,#2ecf65);
  color: #fff;
}
.social-btn.order {
  background: linear-gradient(135deg,var(--accent),#ef4a52);
  color: #fff;
}

.service-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.service-card {
  background: linear-gradient(140deg, #fff3f3, #effbf0);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #ebdfd7;
}
.service-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.home-gallery-block h2 { margin-top: 0; }
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-tile {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}
.gallery-tile.placeholder {
  background: linear-gradient(135deg, #f2ece1, #fef9f2);
}
.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.home-deals-block h2 { margin-top: 0; }
.home-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.deal-card-link {
  text-decoration: none;
  color: inherit;
}
.deal-card {
  background: #fff;
  border: 1px solid #eadfd8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.deal-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.deal-image.placeholder {
  background: repeating-linear-gradient(45deg, #f5ece1, #f5ece1 12px, #fff8f1 12px, #fff8f1 24px);
}
.deal-body {
  padding: 12px;
  display: grid;
  gap: 8px;
}
.deal-body h3 {
  margin: 0;
  font-size: 18px;
}
.deal-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.deal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.deal-foot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #d7262e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.testimonial-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: linear-gradient(135deg, #1a1a1a, #343434);
}
.quote-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px;
}
.quote-card p {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 600;
}
.quote-card span {
  color: #d7d7d7;
  font-size: 12px;
}
.final-cta {
  background: linear-gradient(135deg, #fff4f4, #eaf8ec);
}

.google-reviews {
  background: linear-gradient(130deg, #fff, #f5f8ff);
}
.google-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.google-logo {
  font-size: 20px;
  font-weight: 800;
  color: #1a73e8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.google-logo svg {
  width: 24px;
  height: 24px;
  display: block;
}
.google-meta strong {
  display: block;
  font-size: 20px;
}
.google-meta span {
  color: var(--muted);
  font-size: 13px;
}
.google-link {
  margin-left: auto;
  text-decoration: none;
  color: #1a73e8;
  font-weight: 700;
}
.google-stars {
  color: #f9b400;
  letter-spacing: 2px;
  font-size: 22px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
}
.google-stars svg { width: 20px; height: 20px; display: block; }
.google-stars.small { font-size: 16px; }
.google-stars.small svg { width: 14px; height: 14px; }
.google-review-grid {
  margin-top: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.google-review-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  scroll-snap-align: start;
}
.google-review-card p {
  margin: 8px 0;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.4;
}
.google-review-card span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.google-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1a73e8;
  font-weight: 800;
}
.google-badge svg { width: 14px; height: 14px; }
.google-open {
  margin-top: 4px;
  display: inline-flex;
  color: #1a73e8;
}
.google-slider-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.google-slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d6e1f2;
  background: #fff;
  color: #1a73e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.google-slider-btn .mi { font-size: 20px; }
.google-more-link {
  text-decoration: none;
  font-weight: 700;
  color: #1a73e8;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e8e0d5;
  z-index: 35;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.mb-item {
  text-decoration: none;
  color: #5c564f;
  border-radius: 12px;
  padding: 8px 4px;
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
}
.mb-item svg {
  width: 18px;
  height: 18px;
}
.mb-item .mi { font-size: 21px; }
.mb-item.active {
  color: #0e7e31;
}
.mb-item.highlight {
  background: linear-gradient(135deg, var(--accent), #ef4a52);
  color: #fff;
}

.mobile-cart-fab {
  display: none;
  position: fixed;
  right: 14px;
  bottom: calc(74px + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #11943a, #1bc65a);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(18,156,59,0.38);
  border: 2px solid rgba(255,255,255,0.45);
  z-index: 34;
}
.mobile-cart-fab .cart-count {
  position: absolute;
  top: -4px;
  right: -2px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.add-btn.added {
  animation: addFlash .45s ease;
}
@keyframes addFlash {
  0% { transform: scale(1); background: var(--accent); }
  45% { transform: scale(1.08); background: #13a33f; }
  100% { transform: scale(1); background: var(--accent); }
}
.cart-pulse {
  animation: cartPulse .45s ease;
}
@keyframes cartPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.fly-to-cart {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #13a33f;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .55s cubic-bezier(.17,.67,.2,1), opacity .55s ease;
}

.ios-a2hs-sheet {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 46;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
  border: 1px solid #e8ddd0;
  padding: 12px 14px;
  display: grid;
  gap: 7px;
  transform: translateY(0);
  transition: transform .2s ease, opacity .2s ease;
}
.ios-a2hs-sheet.hide { opacity: 0; transform: translateY(12px); }
.ios-a2hs-sheet strong { font-size: 14px; }
.ios-a2hs-sheet p {
  margin: 0;
  color: #5f5a54;
  font-size: 13px;
  line-height: 1.35;
}
.ios-a2hs-share {
  display: inline-flex;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f1ece5;
  font-weight: 700;
}
.ios-a2hs-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #eadfce;
  background: #fff;
  color: #4f4a43;
  font-size: 18px;
  line-height: 1;
}
.ios-a2hs-ok {
  width: fit-content;
  border: none;
  border-radius: 999px;
  background: #129c3b;
  color: #fff;
  font-weight: 700;
  padding: 7px 12px;
}

@media (max-width: 1200px) {
  .layout { grid-template-columns: 1fr; }
  .menu { grid-column: auto; }
  .cart { grid-column: auto; }
  .home-benefit-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-feature-cards { grid-template-columns: 1fr; }
  .home-social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-deals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .google-review-grid { grid-auto-columns: calc((100% - 12px) / 2); }
  .home-section.split { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  body { padding-bottom: 86px; }
  .layout, .checkout { grid-template-columns: 1fr; }
  .layout { padding: 18px 14px 40px; gap: 14px; }
  .checkout { padding: 18px 14px 34px; gap: 14px; }
  .items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .banner { margin: 0 10px; height: 220px; }
  .home-main { padding: 0 20px 46px; }
  .hero-slider, .hero-slide-overlay { min-height: 420px; }
  .site-header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    grid-template-rows: 1fr;
    grid-auto-rows: 0;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    min-height: 56px;
  }
  .mobile-menu-btn {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
    align-self: center;
  }
  .logo-link,
  .site-header > .logo-wrap {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }
  .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }
  .logo-wrap { gap: 0; }
  .logo-wrap > div { display: none; }
  .logo { width: 140px; height: 48px; display: block; }
  .top-nav {
    display: none !important;
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .top-nav .call-btn { display: none; }
  .mobile-phone-btn {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin: 0;
    align-self: center;
  }
  .mobile-bottom-nav { display: grid; }
  .mobile-cart-fab { display: inline-flex; }
  body.cart-open { overflow: hidden; }
  .cart-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 15;
  }
  body.cart-open .cart-backdrop { display: block; }
  .cart {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 92vw);
    background: var(--bg);
    padding: 16px;
    overflow-y: auto;
    z-index: 20;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  body.cart-open .cart { transform: translateX(0); }
  .cart-close { display: inline-flex; }
  .menu-top { gap: 12px; }
  .categories-bar {
    position: sticky;
    top: var(--header-h, 74px);
    z-index: 8;
    background: #fff;
    padding: 10px 0 10px;
    margin: 0 calc(50% - 50vw);
    padding-left: 12px;
    padding-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: none;
    border-radius: 0;
  }
  .categories-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0), #fff 78%);
  }
  .categories { padding-top: 0; padding-right: 16px; }
  .categories {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .footer-links { display: flex; }
  .footer-links a.main-link { display: none; }
  .cookie-banner {
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 8px;
    right: 8px;
    border-radius: 12px;
    padding: 10px 12px;
  }
  .cat-btn {
    padding: 10px 12px;
    font-size: 14px;
    gap: 6px;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .cat-icon { width: 16px; height: 16px; }
  .cat-icon .mi { font-size: 18px; }
  .categories::-webkit-scrollbar { display: none; }
  .cat-btn { flex: 0 0 auto; }
  .checkout-right { position: static; }
  .checkout .grid input,
  .checkout textarea,
  .checkout select,
  input,
  select,
  textarea { font-size: 16px; }
  .home-benefit-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .google-head { align-items: flex-start; }
  .google-link { margin-left: 0; }
}

@media (max-width: 640px) {
  .items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .item-card { padding: 10px; gap: 8px; }
  .item-thumb { height: 146px; }
  .sort-stamp { width: 28px; height: 28px; font-size: 12px; top: 8px; right: 8px; }
  .item-info h3 { font-size: 14px; margin-bottom: 4px; }
  .item-info p { font-size: 12px; line-height: 1.3; }
  .item-meta { align-items: center; }
  .add-btn { width: 44px; height: 38px; }
  .price { font-size: 13px; }
  .grid { grid-template-columns: 1fr; }
  .banner-overlay h1 { font-size: 28px; }
  .hero-slide-overlay { padding: 22px; }
  .hero-slide h1 { font-size: 30px; }
  .hero-slide p { font-size: 15px; }
  .home-copy h2, .home-section h2 { font-size: 26px; }
  .home-benefit-strip { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-template-columns: 1fr; }
  .home-deals-grid { grid-template-columns: 1fr; }
  .google-review-grid { grid-auto-columns: 84%; }
  .home-mosaic { grid-template-columns: 1fr; }
  .home-social-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
