:root {
  --vp-olive: #31410f;
  --vp-olive-soft: #566225;
  --vp-paper: #fffdf7;
  --vp-cream: #f7f4ec;
  --vp-beige: #ede6d8;
  --vp-gold: #b8a05a;
  --vp-sage: #aeb891;
  --vp-card: #fffaf0;
  --vp-line: rgba(49, 65, 15, 0.12);
  --vp-shadow: 0 24px 70px rgba(49, 65, 15, 0.16);
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--vp-cream);
  color-scheme: light;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overscroll-behavior: none;
  background:
    radial-gradient(circle at 8% 2%, rgba(184, 160, 90, 0.22), transparent 18rem),
    radial-gradient(circle at 100% 18%, rgba(49, 65, 15, 0.12), transparent 21rem),
    linear-gradient(180deg, var(--vp-paper), var(--vp-cream) 58%, var(--vp-beige));
  color: var(--vp-olive);
}

body.is-landing-locked {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  inset: 0;
}

body.is-menu-scroll {
  position: static;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

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

button {
  font: inherit;
}

.showcase-app {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(247, 244, 236, 0.88)),
    var(--vp-cream);
  box-shadow: var(--vp-shadow);
}

.showcase-app[data-view="categories"] {
  height: 100dvh;
  max-height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

.showcase-app[data-view="menu"] {
  height: auto;
  max-height: none;
  overflow-x: clip;
  overflow-y: visible;
}

.showcase-app[data-view="menu"] #categoryView,
.showcase-app[data-view="categories"] #menuView {
  display: none !important;
}

.showcase-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.showcase-decor img {
  position: absolute;
  display: block;
  opacity: 0.115;
  filter: invert(24%) sepia(18%) saturate(1052%) hue-rotate(34deg) brightness(84%) contrast(88%);
}

.showcase-app[data-view="menu"] .showcase-decor img {
  opacity: 0;
}

.decor-palm {
  width: 112px;
  height: 112px;
  left: max(8px, calc(50% - 256px));
  top: 22px;
  transform: rotate(-12deg);
}

.decor-umbrella {
  width: 116px;
  height: 116px;
  right: max(7px, calc(50% - 258px));
  top: 36px;
  transform: rotate(10deg);
}

.decor-lounger {
  width: 124px;
  height: 124px;
  left: max(10px, calc(50% - 252px));
  bottom: 22px;
  opacity: 0.105;
  transform: rotate(8deg);
}

.decor-waves {
  width: 152px;
  height: 80px;
  right: max(8px, calc(50% - 258px));
  bottom: 34px;
  opacity: 0.1;
  transform: rotate(-3deg);
}

.showcase-landing,
.showcase-menu {
  position: relative;
  z-index: 1;
}

.showcase-landing {
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(10px, 2vh, 18px);
  padding: clamp(16px, 3.2vh, 28px) 16px clamp(12px, 2.4vh, 22px);
  overflow: hidden;
}

.showcase-hero {
  display: grid;
  justify-items: center;
  gap: clamp(5px, 1vh, 8px);
  padding: clamp(8px, 1.7vh, 16px) 8px clamp(10px, 2.2vh, 24px);
  text-align: center;
}

.showcase-logo {
  width: clamp(72px, 11.5vh, 92px);
  height: clamp(72px, 11.5vh, 92px);
  border: 1px solid rgba(49, 65, 15, 0.16);
  border-radius: 50%;
  object-fit: cover;
  background: var(--vp-paper);
  box-shadow: 0 18px 38px rgba(49, 65, 15, 0.13);
}

.showcase-hero p,
.menu-topbar p {
  margin: 0;
  color: var(--vp-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-hero h1,
.menu-topbar h1 {
  margin: 0;
  color: var(--vp-olive);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, min(10vw, 7vh), 3.45rem);
  line-height: 0.9;
  text-align: center;
}

.showcase-hero span {
  max-width: 280px;
  color: rgba(49, 65, 15, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: clamp(12px, 2.2vh, 22px) 16px;
  min-height: 0;
}

.category-card {
  appearance: none;
  border: 0;
  border-radius: 22px;
  padding: 0;
  display: grid;
  gap: 11px;
  color: var(--vp-olive);
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.category-card-image {
  position: relative;
  width: 100%;
  height: clamp(112px, 19vh, 178px);
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(49, 65, 15, 0.9), rgba(184, 160, 90, 0.62)),
    var(--vp-olive);
  box-shadow: 0 18px 36px rgba(49, 65, 15, 0.13);
}

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

.category-card-image.is-placeholder {
  display: grid;
  place-items: center;
  padding: 34px;
}

.category-card-image.is-placeholder img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(49, 65, 15, 0.14));
}

.category-card strong {
  min-height: 36px;
  display: grid;
  place-items: start center;
  color: var(--vp-olive);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.22;
  text-transform: uppercase;
}

.showcase-app.has-many-categories .showcase-landing {
  gap: clamp(8px, 1.4vh, 12px);
  padding-top: clamp(12px, 2.1vh, 20px);
  padding-bottom: clamp(10px, 1.8vh, 16px);
}

.showcase-app.has-many-categories .showcase-hero {
  gap: 5px;
  padding-top: clamp(6px, 1.1vh, 10px);
  padding-bottom: clamp(8px, 1.4vh, 14px);
}

.showcase-app.has-many-categories .showcase-logo {
  width: clamp(62px, 9vh, 78px);
  height: clamp(62px, 9vh, 78px);
}

.showcase-app.has-many-categories .showcase-hero h1 {
  font-size: clamp(1.78rem, min(8.4vw, 5.8vh), 2.9rem);
}

.showcase-app.has-many-categories .showcase-hero span {
  max-width: 250px;
  font-size: 0.8rem;
  line-height: 1.32;
}

.showcase-app.has-many-categories .category-grid {
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2px 4px 8px 0;
  scrollbar-width: none;
}

.showcase-app.has-many-categories .category-grid::-webkit-scrollbar {
  display: none;
}

.showcase-app.has-many-categories .category-card {
  gap: 7px;
}

.showcase-app.has-many-categories .category-card-image {
  height: clamp(86px, 13.2vh, 128px);
  border-radius: 16px;
}

.showcase-app.has-many-categories .category-card strong {
  min-height: 30px;
  font-size: 0.78rem;
  line-height: 1.16;
}

.landing-footer,
.showcase-footer {
  display: grid;
  justify-items: center;
  text-align: center;
}

.landing-footer {
  min-height: 30px;
  align-content: end;
  padding-bottom: 2px;
}

.landing-footer small,
.showcase-footer small {
  display: inline-block;
  min-height: 28px;
  border: 1px solid rgba(49, 65, 15, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 253, 247, 0.72);
  color: rgba(49, 65, 15, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.landing-footer strong,
.showcase-footer strong {
  color: var(--vp-olive);
  font-weight: 900;
  margin-inline: 4px;
}

.landing-footer span,
.showcase-footer span {
  color: #7b6a2a;
  font-weight: 900;
  margin-left: 4px;
}

.showcase-menu {
  min-height: 100vh;
  padding-bottom: 24px;
}

.menu-topbar {
  min-height: 76px;
  position: sticky;
  top: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--vp-olive);
  color: var(--vp-paper);
  box-shadow: 0 12px 28px rgba(49, 65, 15, 0.16);
}

.menu-topbar h1 {
  color: var(--vp-paper);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.menu-topbar p {
  color: rgba(255, 253, 247, 0.78);
  text-align: center;
}

.menu-topbar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--vp-paper);
}

.back-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 247, 0.2);
  color: var(--vp-paper);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.menu-filter-shell {
  position: sticky;
  top: 76px;
  z-index: 7;
  padding: 12px 0 14px;
  background: rgba(247, 244, 236, 0.92);
  border-bottom: 1px solid rgba(49, 65, 15, 0.08);
  backdrop-filter: blur(14px);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 12px;
}

.filter-head strong {
  font-size: 1.05rem;
}

.see-all-button {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(49, 65, 15, 0.08);
  color: var(--vp-olive);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 16px 2px;
  scrollbar-width: none;
}

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

.rail-button {
  min-width: 104px;
  border: 1px solid rgba(49, 65, 15, 0.1);
  border-radius: 18px;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 10px 9px;
  background: rgba(255, 253, 247, 0.84);
  color: var(--vp-olive);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(49, 65, 15, 0.08);
}

.rail-button.is-active {
  border-color: rgba(49, 65, 15, 0.3);
  background: var(--vp-olive);
  color: var(--vp-paper);
}

.rail-button img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--vp-paper);
}

.rail-button span {
  max-width: 88px;
  overflow: hidden;
  font-size: 0.64rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-sections {
  display: grid;
  gap: 28px;
  padding: 18px 16px 0;
}

.showcase-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 26px 16px 4px;
  color: rgba(49, 65, 15, 0.68);
  text-align: center;
}

.showcase-footer p {
  max-width: 300px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.product-section {
  scroll-margin-top: 220px;
}

.section-cover {
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--vp-olive);
  box-shadow: 0 18px 40px rgba(49, 65, 15, 0.13);
}

.section-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(49, 65, 15, 0.34));
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 12px;
}

.section-title h2 {
  margin: 0;
  color: var(--vp-olive);
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title span {
  color: rgba(49, 65, 15, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.product-card {
  width: 100%;
  min-height: 96px;
  border: 1px solid rgba(49, 65, 15, 0.08);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 8px 12px 8px 8px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--vp-olive);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 28px rgba(49, 65, 15, 0.08);
}

.product-card img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--vp-paper);
}

.product-card img.is-placeholder {
  padding: 14px;
  object-fit: contain;
}

.product-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.product-copy strong {
  overflow: hidden;
  color: var(--vp-olive);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.product-copy small {
  overflow: hidden;
  color: rgba(49, 65, 15, 0.58);
  font-size: 0.74rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price {
  justify-self: end;
  color: #7b6a2a;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.showcase-sheet {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: end;
  justify-content: center;
}

.showcase-sheet.is-open {
  display: flex;
}

.sheet-dim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 17, 15, 0.42);
}

.alt-sheet-card {
  width: min(100%, 520px);
  max-height: min(86vh, 720px);
  position: relative;
  overflow: auto;
  border-radius: 26px 26px 0 0;
  background: var(--vp-paper);
  box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.24);
}

.sheet-close-button {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  border: 1px solid rgba(49, 65, 15, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 247, 0.9);
  color: var(--vp-olive);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(49, 65, 15, 0.16);
  backdrop-filter: blur(12px);
}

.alt-sheet-card img {
  width: calc(100% - 24px);
  height: 240px;
  display: block;
  margin: 12px;
  border-radius: 20px;
  object-fit: cover;
  background: var(--vp-cream);
}

.alt-sheet-content {
  display: grid;
  gap: 12px;
  padding: 4px 20px 24px;
}

.alt-sheet-content span {
  color: var(--vp-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.alt-sheet-content h2 {
  margin: 0;
  color: var(--vp-olive);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.alt-sheet-content p {
  margin: 0;
  color: rgba(49, 65, 15, 0.68);
  line-height: 1.65;
}

.alt-sheet-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.alt-sheet-options[hidden] {
  display: none !important;
}

.alt-sheet-options span {
  border: 1px solid rgba(49, 65, 15, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(184, 160, 90, 0.14);
  color: var(--vp-olive);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.alt-sheet-content footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

.alt-sheet-content strong {
  color: #7b6a2a;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.showcase-hero h1,
.menu-topbar h1,
.product-price,
.alt-sheet-content h2,
.alt-sheet-content strong {
  font-weight: 700;
}

.alt-sheet-content small {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(184, 160, 90, 0.16);
  color: var(--vp-olive);
  font-weight: 900;
}

@media (max-width: 380px) {
  .category-grid {
    gap: 18px 12px;
  }

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

  .product-card img {
    width: 70px;
    height: 70px;
  }

  .product-price {
    grid-column: 2;
    justify-self: start;
  }
}
