:root {
  --ink: #241209;
  --ink-soft: #6b5a4f;
  --paper: #faf1e2;
  --paper-2: #fffaf0;
  --red: #e8231f;
  --red-deep: #a3120f;
  --green: #2e5a22;
  --green-2: #4c7c37;
  --line: rgba(36, 18, 9, 0.13);
  --shadow: 0 18px 55px rgba(28, 15, 10, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #dedbd3;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Peyda", "PeydaWeb", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(46, 90, 34, 0.14),
      transparent 28rem
    ),
    #dedbd3;
}

button,
input,
a {
  font: inherit;
}

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

button {
  border: 0;
}

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

.site-shell {
  width: min(100%, 760px);
  min-height: 100vh;
  margin-inline: auto;
  overflow: clip;
  background: var(--paper);
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.13);
}

.hero {
  padding: 12px 12px 0;
}

.hero-media {
  position: relative;
  min-height: 485px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-xl);
  background: #191918;
  box-shadow: var(--shadow);
}

.hero-media > #topBanner {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.45s ease,
    transform 1.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-media.has-banner > #topBanner {
  opacity: 1;
  transform: scale(1);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: -4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 36px;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 246, 228, 0.85) 0 8%,
      transparent 8.5%
    ),
    linear-gradient(135deg, #c81f1c 0%, #6e1210 55%, #1c0806 100%);
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: clamp(4.2rem, 16vw, 7.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.78;
  text-align: left;
  direction: ltr;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 5, 0.36), transparent 38%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.78), transparent 58%);
}

.hero-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
}

.brand-badge {
  display: grid;
  width: 75px;
  min-height: 75px;
  place-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(250, 248, 240, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.brand-badge img {
  width: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.hero-contact {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  cursor: pointer;
  color: var(--paper-2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.hero-contact:hover {
  background: var(--green-2);
  transform: rotate(-8deg) scale(1.05);
}

.hero-contact svg,
.contact-fab svg,
.search-wrap svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-contact svg {
  fill: currentColor;
  stroke: none;
}

.hero-copy {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  color: #fff;
}

.eyebrow,
.menu-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  direction: ltr;
  text-align: right;
}

.eyebrow {
  color: var(--paper-2);
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.7rem, 10vw, 5.1rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 400;
}

.quick-panel {
  padding: 22px 18px 8px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 7px 25px rgba(41, 40, 35, 0.035);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.search-wrap:focus-within {
  border-color: rgba(163, 18, 15, 0.36);
  background: #fff;
  box-shadow: 0 9px 30px rgba(163, 18, 15, 0.08);
}

.search-wrap svg {
  flex: 0 0 auto;
  color: var(--red);
}

.search-wrap input {
  width: 100%;
  outline: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.search-wrap input::placeholder {
  color: #9b978d;
}

#clearSearch {
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: var(--ink-soft);
  border-radius: 50%;
  background: #ece8df;
  font-size: 22px;
  line-height: 1;
}

#clearSearch.is-visible {
  display: grid;
  place-items: center;
}

.menu-intro {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 108px;
  overflow: hidden;
  padding: 28px 4px 14px;
}

.menu-intro h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.menu-intro .menu-kicker {
  margin-bottom: 4px;
  color: var(--red);
}

.menu-mark {
  position: absolute;
  top: -100px;
  left: 2px;
  color: rgba(163, 18, 15, 0.07);
  font-family: Georgia, serif;
  font-size: 144px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  direction: ltr;
}

.category-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 10px 0 11px;
  border-top: 1px solid rgba(23, 23, 19, 0.06);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.89);
  backdrop-filter: blur(17px);
}

.category-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 18px;
  scroll-padding-inline: 18px;
}

.category-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 39px;
  padding: 8px 14px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: 0.22s ease;
}

.category-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7b3aa;
  transition: inherit;
}

.category-chip:hover,
.category-chip.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}

.category-chip.is-active::before {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(76, 124, 55, 0.22);
}

.scrollbar-custom {
  scrollbar-width: none;
}

.scrollbar-custom::-webkit-scrollbar {
  display: none;
}

.menu-categories {
  padding: 10px 18px 30px;
}

.menu-section {
  scroll-margin-top: 74px;
  padding: 34px 0 12px;
}

.menu-section[hidden] {
  display: none;
}

.category-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 17px;
}

.category-title-wrap {
  min-width: 0;
}

.category-index {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  direction: ltr;
}

.category-heading h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.category-heading-line {
  height: 1px;
  margin-bottom: 7px;
  background: linear-gradient(90deg, transparent, rgba(163, 18, 15, 0.35));
}

.category-description {
  margin: -8px 0 18px;
  padding-right: 0;
  color: #7f7a70;
  font-size: 12px;
  line-height: 1.8;
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  min-height: 120px;
  overflow: hidden;
  padding: 11px;
  border: 1px solid rgba(23, 23, 19, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 26px rgba(33, 32, 27, 0.035);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.product-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.product-card:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 13px 34px rgba(33, 32, 27, 0.07);
}

.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e1d8;
  aspect-ratio: 1 / 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(163, 18, 15, 0.32);
  background:
    radial-gradient(circle at 70% 25%, var(--green) 0 8%, transparent 8.7%),
    #e9e5dc;
  font-family: Georgia, serif;
  font-size: 31px;
  font-style: italic;
}

.product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 4px 4px 2px;
}

.product-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-title {
  flex: 0 1 auto;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.product-dots {
  flex: 1 1 20px;
  min-width: 16px;
  height: 1px;
  border-top: 1px dotted rgba(23, 23, 19, 0.32);
}

.product-price {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.product-description {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: #77736a;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-empty {
  padding: 25px;
  border: 1px dashed rgba(23, 23, 19, 0.18);
  border-radius: 20px;
  color: #8a867d;
  background: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-size: 13px;
}

.loading-state,
.empty-search {
  padding: 54px 24px;
  color: #807c73;
  text-align: center;
  font-size: 13px;
}

.loading-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    13px 0 0 rgba(163, 18, 15, 0.4),
    26px 0 0 rgba(163, 18, 15, 0.16);
  animation: dots 1s ease-in-out infinite alternate;
}

@keyframes dots {
  to {
    transform: translateX(4px);
    opacity: 0.55;
  }
}

.empty-search {
  padding-top: 24px;
  padding-bottom: 72px;
}

.empty-search-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  color: var(--red);
  border: 1px solid rgba(163, 18, 15, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  font-family: Georgia, serif;
  font-size: 34px;
}

.empty-search h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 17px;
}

.empty-search p {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin: 28px 12px 12px;
  padding: 22px 25px 16px;
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 14% 10%,
      rgba(255, 246, 228, 0.18),
      transparent 14rem
    ),
    var(--red);
}

.site-footer::after {
  content: "P";
  position: absolute;
  left: -8px;
  bottom: -64px;
  color: rgba(255, 255, 255, 0.055);
  font-family: Georgia, serif;
  font-size: 210px;
  font-style: italic;
  pointer-events: none;
}

.footer-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.footer-badge {
  width: 75px;
  height: 75px;
  display: inline-flex;
  padding: 5px;
  border-radius: 15px;
  background: rgba(250, 248, 240, 0.95);
}

.footer-head img {
  width: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.footer-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.footer-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-credit {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  text-align: center;
}

.contact-fab-wrap {
  position: fixed;
  z-index: 80;
  right: max(20px, calc((100vw - 760px) / 2 + 20px));
  bottom: 22px;
}

.contact-fab {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  cursor: pointer;
  color: var(--paper-2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease;
}

.contact-fab:hover {
  background: var(--green-2);
  transform: translateY(-2px) scale(1.03);
}

.contact-fab svg {
  width: 23px;
  height: 23px;
}

.contact-fab #iconPhone {
  fill: currentColor;
  stroke: none;
}

.contact-fab .is-hidden {
  display: none;
}

.contact-menu {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 190px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 19px;
  background: #3d0e0c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: 0.22s ease;
  pointer-events: none;
}

.contact-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.contact-menu a {
  display: flex;
  align-items: center;
  min-height: 51px;
  padding: 0 16px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.contact-menu a:last-child {
  border-bottom: 0;
}

.contact-menu a:hover {
  color: #fff;
  background: var(--green);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center end;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.product-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-modal__panel {
  position: relative;
  z-index: 1;
  /* width: min(100%, 480px); */
  max-height: min(92vh, 720px);
  overflow-y: auto;
  margin: 18px;
  border-radius: var(--radius-xl);
  background: var(--paper-2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-modal.is-open .product-modal__panel {
  transform: translateY(0) scale(1);
}

.product-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
  background: rgba(10, 10, 8, 0.45);
  backdrop-filter: blur(6px);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.product-modal__close:hover {
  transform: scale(1.06);
  background: rgba(10, 10, 8, 0.68);
}

.product-modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.product-modal__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e1d8;
}

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

.product-modal__media-placeholder {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  color: rgba(163, 18, 15, 0.32);
  background:
    radial-gradient(circle at 70% 25%, var(--green) 0 8%, transparent 8.7%),
    #e9e5dc;
  font-family: Georgia, serif;
  font-size: 46px;
  font-style: italic;
}

.product-modal:not(.has-no-image) .product-modal__media-placeholder {
  display: none;
}

.product-modal.has-no-image .product-modal__media img {
  display: none;
}

.product-modal__body {
  padding: 24px 24px 28px;
}

.product-modal__category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.product-modal__description {
  margin: 0 0 20px;
  color: #6f6a5f;
  font-size: 13.5px;
  line-height: 1.9;
}

.product-modal__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed rgba(23, 23, 19, 0.18);
}

.product-modal__price-label {
  color: #8a867d;
  font-size: 12px;
}

.product-modal__price {
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

@media (min-width: 620px) {
  .product-modal {
    place-items: center;
    padding: 18px;
  }
}

@media (min-width: 620px) {
  .hero {
    padding: 16px 16px 0;
  }

  .hero-media {
    min-height: 525px;
  }

  .quick-panel,
  .menu-categories {
    padding-right: 26px;
    padding-left: 26px;
  }

  .category-track {
    padding-right: 26px;
    padding-left: 26px;
  }

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

  .product-card {
    grid-template-columns: 90px minmax(0, 1fr);
    min-height: 114px;
  }

  .site-footer {
    margin: 38px 16px 16px;
    padding: 39px 32px 24px;
  }
}

@media (max-width: 410px) {
  .hero-media {
    min-height: 445px;
    border-radius: 28px;
  }

  .brand-badge {
    width: 112px;
  }

  .hero-copy {
    right: 22px;
    bottom: 25px;
    left: 22px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .product-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .product-title {
    font-size: 15px;
  }

  .product-price {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
