@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #f0f2f5;
  --text: #18181b;
  --muted: #6b7280;
  --line: #e6e8ec;
  --accent: #ff8a1d;
  --accent-dark: #f06a00;
  --lime: #d4ff29;
  --shadow: 0 14px 34px rgba(16, 24, 40, .08);
  --radius: 24px;
  --radius-sm: 16px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.is-lightbox-open,
body.is-cart-open {
  overflow: hidden;
}

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

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

.app-shell {
  min-height: 100vh;
  padding-bottom: 112px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  background: rgba(245, 246, 248, .88);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb36e 100%);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: var(--shadow);
}

.site-brand strong {
  display: block;
  font-size: .96rem;
}

.site-brand small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
}

.site-nav {
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

.site-nav a.active {
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow);
}

.header-order-btn,
.primary-btn,
.ghost-btn,
.search-card button,
.full-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}

.header-order-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.page-main {
  padding: 8px 0 36px;
}

.home-hero,
.page-hero {
  padding: 10px 0 8px;
}

.promo-card,
.page-hero-card,
.article-detail-card,
.map-panel,
.search-card,
.contact-card,
.detail-buy-card,
.product-info-panel {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 360px;
  background: linear-gradient(135deg, #242424 0%, #353535 100%);
  color: #fff;
}

.promo-card-banner {
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center center;
}

.banner-slider {
  position: relative;
  aspect-ratio: 16 / 9;
}

.banner-slider-track {
  position: relative;
  height: 100%;
}

.banner-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  position: absolute;
  inset: 0;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.52);
  transition: transform .2s ease, background-color .2s ease;
}

.banner-dot.active {
  background: #fff;
  transform: scale(1.15);
}

.promo-card-banner::before {
  content: none;
}

.promo-card-banner.is-default {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 182, 97, .24) 0%, rgba(255, 182, 97, 0) 24%),
    linear-gradient(135deg, #2a1d16 0%, #181615 54%, #3f2618 100%);
}

.promo-card-banner.is-default::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,138,29,.2) 0%, rgba(255,138,29,0) 28%),
    linear-gradient(90deg, rgba(20,20,20,.12) 0%, rgba(20,20,20,.08) 100%);
}

.promo-card-link {
  display: block;
  cursor: pointer;
}

.promo-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.promo-copy-default {
  padding: 34px;
  justify-content: end;
}

.promo-copy-default .eyebrow {
  color: rgba(255, 228, 202, .82);
}

.promo-copy-default h1 {
  max-width: 8ch;
}

.promo-copy-default p {
  color: rgba(255, 243, 231, .78);
  max-width: 26rem;
}

.promo-default-art {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: min(340px, 36vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff7ef 0%, #f2e4d7 62%, rgba(242, 228, 215, .16) 63%);
  display: grid;
  place-items: center;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
  z-index: 1;
}

.promo-default-art::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 138, 29, .12);
}

.promo-default-cup {
  position: relative;
  width: 148px;
  height: 96px;
  border: 14px solid #e76808;
  border-right-width: 16px;
  border-radius: 0 0 44px 44px;
  border-top: 0;
}

.promo-default-cup::before {
  content: '';
  position: absolute;
  right: -36px;
  top: 18px;
  width: 44px;
  height: 34px;
  border: 12px solid #e76808;
  border-left: 0;
  border-radius: 0 24px 24px 0;
}

.promo-default-cup::after {
  content: '';
  position: absolute;
  inset: -6px 10px 10px 10px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.34) 100%);
}

.promo-default-cup span {
  position: absolute;
  top: -38px;
  width: 10px;
  height: 34px;
  border-radius: 999px;
  background: #d48a52;
}

.promo-default-cup span:nth-child(1) { left: 18px; transform: rotate(18deg); }
.promo-default-cup span:nth-child(2) { left: 54px; transform: rotate(14deg); }
.promo-default-cup span:nth-child(3) { left: 90px; transform: rotate(16deg); }

.promo-copy h1,
.page-hero-card h1,
.product-info-panel h1,
.article-detail-body h1 {
  margin: 8px 0 12px;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.promo-copy p,
.page-hero-card p,
.detail-short,
.story-excerpt,
.contact-card p,
.empty-state p {
  color: rgba(255, 255, 255, .78);
  max-width: 34rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--muted);
}

.promo-copy .eyebrow,
.page-hero-card .eyebrow { color: rgba(255, 255, 255, .72); }

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
}

.primary-btn {
  background: var(--lime);
  color: #171717;
}

.ghost-btn {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.home-section {
  padding: 26px 0;
}

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

.home-category-section {
  padding-top: 14px;
  padding-bottom: 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head-products {
  align-items: flex-end;
  margin-bottom: 14px;
}

.section-head-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section-heading {
  margin: 6px 0 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
  font-weight: 800;
}

.section-link,
.section-meta,
.story-date,
.story-meta,
.menu-category,
.detail-topline,
.footer-copy,
.footer-contact,
.empty-state p {
  color: var(--muted);
  font-size: .9rem;
}

.section-link {
  font-weight: 700;
}

.section-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 6px 20px rgba(15, 23, 42, .06);
}

.category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.category-strip-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.category-strip-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
  flex-shrink: 0;
}

.category-strip-nav:disabled {
  opacity: .32;
  pointer-events: none;
}

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

.category-pill {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 18px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}

.category-pill.active {
  background: var(--text);
  color: #fff;
}

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

.search-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 18px;
}

.search-card i {
  color: var(--muted);
  padding-left: 8px;
}

.search-card input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: .96rem;
}

.search-card button {
  height: 46px;
  padding: 0 20px;
  background: var(--text);
  color: #fff;
}

.search-card-light {
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.search-card-light input,
.search-card-light i { color: #fff; }

.search-card-light input::placeholder { color: rgba(255, 255, 255, .7); }

.search-card-light button {
  background: var(--lime);
  color: #171717;
}

.blog-hero-card {
  display: grid;
  gap: 18px;
}

.blog-hero-copy {
  display: grid;
  gap: 6px;
}

.blog-search-card {
  margin-bottom: 0;
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.product-grid,
.gallery-grid,
.blog-preview-grid,
.blog-grid {
  display: grid;
  gap: 18px;
}

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

.product-grid.is-single {
  grid-template-columns: minmax(0, 280px);
  justify-content: center;
}

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

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

.menu-card,
.story-card,
.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-card {
  transition: opacity .28s ease, transform .28s ease, max-height .28s ease, margin .28s ease, padding .28s ease;
  transform-origin: top center;
}

.menu-card.is-filtered-out {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  max-height: 0;
  margin: 0;
  overflow: hidden;
}

.story-card {
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 24, 40, .12);
}

.gallery-card {
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
  background: transparent;
  box-shadow: none;
  border-radius: 26px;
}

.gallery-card:hover {
  transform: translateY(-2px);
}

.menu-card-media,
.story-media,
.gallery-media {
  display: block;
  background: linear-gradient(180deg, #fbfbfc 0%, #f0f2f5 100%);
  border: 0;
  padding: 0;
}

.menu-card-media {
  aspect-ratio: 1 / 1;
  position: relative;
}

.story-media {
  aspect-ratio: 16 / 10;
}

.story-media-featured {
  aspect-ratio: 16 / 9;
}

.gallery-media {
  aspect-ratio: 1 / 1;
  position: relative;
  cursor: zoom-in;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-card-media img,
.story-media img,
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  background: rgba(0, 0, 0, .68);
  color: #fff;
}

.menu-card-body,
.story-body,
.article-detail-body,
.gallery-card-body {
  padding: 18px;
}

.gallery-zoom-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(24, 24, 27, .72);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .74);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.gallery-lightbox-figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(17, 24, 39, .94);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .28);
}

.gallery-lightbox-figure img {
  width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
  background: #111827;
}

.gallery-lightbox-figure figcaption {
  padding: 16px 20px 18px;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  line-height: 1.6;
}

.menu-title,
.story-title {
  display: block;
  font-weight: 800;
  line-height: 1.25;
}

.menu-title {
  min-height: 2.7em;
  margin: 8px 0 2px;
  font-size: .98rem;
}

.story-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.menu-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.menu-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-price {
  font-size: 1.05rem;
}

.menu-price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .8rem;
}

.menu-action {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #151515;
  font-weight: 800;
  flex-shrink: 0;
  border: 0;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 8px;
  align-items: center;
}

.story-title {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.story-card-large .story-title {
  font-size: 1.15rem;
}

.story-title-lg {
  font-size: 1.18rem !important;
  line-height: 1.3;
}

.story-card-featured {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  margin-bottom: 18px;
}

.story-body-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.story-title-featured {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.16;
  margin-bottom: 12px;
}

.story-excerpt-featured {
  font-size: .96rem;
  line-height: 1.72;
}

.story-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: .76rem;
  font-weight: 800;
}

.story-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: .92rem;
}

.empty-state {
  padding: 34px 22px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  font-size: 1.8rem;
}

.compact-page-hero .page-hero-card {
  padding: 24px;
  background: linear-gradient(135deg, #252525 0%, #373737 100%);
  color: #fff;
}

.pager-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pager-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.pager-link.active {
  background: var(--text);
  color: #fff;
}

.contact-grid,
.product-detail-grid {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 20px;
  display: flex;
  align-items: start;
  gap: 14px;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
}

.contact-copy p,
.map-empty p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.contact-copy a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.contact-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
  font-size: .84rem;
  font-weight: 700;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-icon.whatsapp { background: #25d366; }
.contact-icon.map { background: var(--accent); }
.contact-icon.time { background: #111827; }

.contact-stack {
  display: grid;
  gap: 14px;
}

.full-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  width: 100%;
}

.map-panel {
  min-height: 320px;
  overflow: hidden;
  padding: 16px;
}

.map-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.map-panel-head h2 {
  margin: 4px 0 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.map-panel iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
}

.map-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.map-empty i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.product-detail-shell,
.article-detail-shell {
  padding: 18px 0 30px;
}

.product-photo-panel {
  background: linear-gradient(180deg, #f8f8f8 0%, #ededee 100%);
  border-radius: 34px;
  padding: 24px;
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-photo-panel::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -14%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,29,.18) 0%, rgba(255,138,29,0) 70%);
}

.product-photo-panel img {
  width: min(440px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-info-panel {
  padding: 24px;
}

.product-floating-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(24, 24, 27, .86);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.detail-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .75rem;
  font-weight: 700;
}

.detail-short {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.detail-stats div {
  padding: 14px 10px;
  border-radius: 18px;
  background: var(--surface-soft);
  text-align: center;
}

.detail-stats strong {
  display: block;
  font-size: .95rem;
}

.detail-stats span {
  color: var(--muted);
  font-size: .78rem;
}

.detail-buy-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.detail-buy-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-buy-header h2 {
  margin: 4px 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.detail-buy-label {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.detail-buy-hint {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eefbf4;
  color: #0f8b4c;
  font-size: .78rem;
  font-weight: 800;
}

.detail-price-block {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-price-block strong {
  font-size: 1.7rem;
}

.detail-price-block span {
  color: var(--muted);
  text-decoration: line-through;
}

.detail-form-row {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 42px 72px 42px;
  align-items: center;
  justify-content: start;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface-soft);
}

.qty-control button,
.qty-control input {
  height: 48px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
}

.detail-note-input {
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0 16px;
  outline: 0;
}

.detail-buy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.detail-cta-stack {
  display: grid;
  gap: 10px;
}

.detail-cart-secondary {
  min-height: 52px;
  background: var(--surface-soft);
  color: var(--text);
}

.detail-unavailable {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1f2;
  color: #be123c;
  font-weight: 700;
}

.detail-description {
  margin-top: 24px;
}

.detail-description h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
}

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

.article-detail-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-detail-body h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 10px;
}

.article-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.article-share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.article-share-label {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.article-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
  font-size: .84rem;
  font-weight: 700;
}

.article-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.article-tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff7ef;
  color: #a54c08;
  font-size: .82rem;
  font-weight: 700;
}

.article-content {
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.9;
  word-break: break-word;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content > *:last-child {
  margin-bottom: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 2.2rem 0 .9rem;
  color: #111827;
  line-height: 1.25;
  font-weight: 800;
}

.article-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.article-content h3 {
  font-size: 1.3rem;
}

.article-content h4 {
  font-size: 1.12rem;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table,
.article-content figure {
  margin: 0 0 1.15rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li + li {
  margin-top: .45rem;
}

.article-content a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content strong,
.article-content b {
  color: #111827;
}

.article-content blockquote {
  padding: 1rem 1.1rem 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: #fff7ef;
  color: #7c4a21;
}

.article-content figure {
  display: grid;
  gap: .7rem;
}

.article-content figcaption {
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px var(--line);
  background: var(--surface);
}

.article-content th,
.article-content td {
  padding: .85rem .95rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: #111827;
  background: #f8fafc;
  font-weight: 700;
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.article-content img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 1rem 0;
}

.related-wrap {
  margin-top: 24px;
}

.site-footer {
  padding: 10px 0 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0 0;
}

.footer-inner-minimal {
  min-height: 8px;
  padding-top: 0;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-copy {
  margin: 0;
  max-width: 540px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 40;
  width: min(620px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .68);
}

.bottom-nav-item {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 20px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.bottom-nav-item i {
  font-size: 1.15rem;
}

.bottom-nav-item.active {
  background: rgba(240, 242, 245, .92);
  color: var(--text);
}

.bottom-nav-order {
  position: relative;
  background: var(--accent);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.cart-count-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: #171717;
  font-size: .68rem;
  font-weight: 800;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(15, 23, 42, .36);
  backdrop-filter: blur(6px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(420px, 100%);
  height: 100vh;
  background: rgba(255, 255, 255, .98);
  box-shadow: -20px 0 50px rgba(15, 23, 42, .14);
  transform: translateX(100%);
  transition: transform .24s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head,
.cart-drawer-foot {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}

.cart-drawer-head h2 {
  margin: 6px 0 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.cart-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: var(--surface-soft);
}

.cart-drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.cart-drawer-body {
  overflow-y: auto;
  padding: 20px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.cart-item-image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
}

.cart-item-copy {
  display: grid;
  gap: 4px;
}

.cart-item-copy strong {
  font-size: .94rem;
  line-height: 1.3;
}

.cart-item-copy span,
.cart-item-copy small {
  color: var(--muted);
}

.cart-item-actions {
  display: grid;
  grid-template-columns: 34px 34px 34px;
  gap: 6px;
  align-items: center;
  justify-items: center;
}

.cart-item-actions button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: var(--surface-soft);
  font-weight: 800;
}

.cart-item-actions .remove {
  grid-column: 1 / -1;
  width: 100%;
  border-radius: 12px;
  color: #b91c1c;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
}

.cart-summary-row.total {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cart-empty h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .contact-grid,
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-form-row {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .promo-card {
    min-height: 420px;
  }

  .home-hero .promo-card-banner,
  .home-hero .banner-slider {
    aspect-ratio: 16 / 9;
  }

  .blog-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 767.98px) {
  .container,
  .article-container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header {
    padding: 8px 0;
  }

  .site-brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-brand-logo {
    height: 42px;
    max-width: 138px;
  }

  .header-order-btn span {
    display: none;
  }

  .header-order-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
  }

  .promo-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .promo-card-banner {
    min-height: auto;
    aspect-ratio: 16 / 9;
    background-position: center center;
  }

  .banner-dots {
    bottom: 10px;
  }

  .promo-copy {
    order: 2;
    padding: 18px 18px 20px;
  }

  .promo-copy-default {
    padding: 18px;
    justify-content: end;
    max-width: 74%;
  }

  .promo-default-art {
    right: 18px;
    width: 148px;
  }

  .promo-default-cup {
    width: 78px;
    height: 52px;
    border-width: 9px;
    border-right-width: 10px;
    border-radius: 0 0 22px 22px;
  }

  .promo-default-cup::before {
    right: -21px;
    top: 10px;
    width: 26px;
    height: 20px;
    border-width: 7px;
    border-radius: 0 16px 16px 0;
  }

  .promo-default-cup::after {
    inset: -4px 5px 5px 5px;
    border-radius: 0 0 16px 16px;
  }

  .promo-default-cup span {
    top: -22px;
    width: 6px;
    height: 20px;
  }

  .promo-default-cup span:nth-child(1) { left: 10px; }
  .promo-default-cup span:nth-child(2) { left: 28px; }
  .promo-default-cup span:nth-child(3) { left: 46px; }

  .promo-copy h1,
  .page-hero-card h1 {
    font-size: 1.95rem;
    margin-bottom: 10px;
  }

  .promo-copy p,
  .page-hero-card p {
    font-size: .93rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    width: 100%;
  }

  .page-main {
    padding: 4px 0 30px;
  }

  .home-hero,
  .page-hero {
    padding: 6px 0 4px;
  }

  .compact-page-hero .page-hero-card,
  .article-detail-card,
  .product-info-panel,
  .detail-buy-card,
  .contact-card,
  .map-panel {
    border-radius: 22px;
  }

  .compact-page-hero .page-hero-card {
    padding: 18px;
  }

  .home-section {
    padding: 22px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
  }

  .section-head-products {
    gap: 8px;
    margin-bottom: 16px;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .section-link,
  .section-meta,
  .story-date,
  .story-meta,
  .menu-category {
    font-size: .8rem;
  }

  .category-strip {
    gap: 8px;
  }

  .blog-filter-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .category-strip-shell {
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin-top: 10px;
    margin-bottom: 14px;
  }

  .category-strip-nav {
    width: 34px;
    height: 34px;
  }

  .category-pill {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: .84rem;
  }

  .search-card {
    gap: 10px;
    padding: 10px;
    margin-bottom: 16px;
  }

  .search-card button {
    height: 42px;
    padding: 0 16px;
    font-size: .88rem;
  }

  .product-grid,
  .gallery-grid,
  .blog-preview-grid,
  .blog-grid {
    gap: 14px;
  }

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

  .product-grid.is-single {
    grid-template-columns: minmax(0, 180px);
  }

  .menu-card,
  .story-card,
  .gallery-card {
    border-radius: 22px;
  }

  .menu-card-body,
  .story-body,
  .article-detail-body,
  .gallery-card-body {
    padding: 14px;
  }

  .gallery-card-body h2 {
    font-size: .95rem;
  }

  .gallery-card-body p {
    font-size: .84rem;
    line-height: 1.58;
  }

  .gallery-card {
    border-radius: 22px;
  }

  .gallery-media {
    border-radius: 22px;
  }

  .gallery-zoom-badge {
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox-figure {
    border-radius: 22px;
  }

  .gallery-lightbox-figure img {
    max-height: 70vh;
  }

  .gallery-lightbox-figure figcaption {
    padding: 14px 16px 16px;
    font-size: .84rem;
  }

  .menu-title {
    font-size: .92rem;
    line-height: 1.3;
    min-height: 2.6em;
  }

  .story-excerpt {
    font-size: .83rem;
    line-height: 1.55;
  }

  .menu-card-footer {
    margin-top: 12px;
    gap: 10px;
  }

  .menu-price {
    font-size: 1rem;
  }

  .menu-action {
    width: 38px;
    height: 38px;
  }

  .story-title,
  .story-card-large .story-title,
  .story-title-lg {
    font-size: 1rem !important;
    line-height: 1.32;
    margin-bottom: 8px;
  }

  .story-card-featured {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .story-body-featured {
    padding: 16px;
  }

  .story-title-featured {
    font-size: 1.25rem !important;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .story-excerpt-featured {
    font-size: .86rem;
    line-height: 1.62;
  }

  .story-chip {
    min-height: 28px;
    padding: 0 9px;
    font-size: .72rem;
  }

  .story-readmore {
    margin-top: 12px;
    font-size: .86rem;
  }

  .contact-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .contact-hero-pills {
    gap: 8px;
  }

  .contact-hero-pills span {
    width: 100%;
    justify-content: center;
    min-height: 38px;
    font-size: .8rem;
  }

  .map-panel {
    padding: 14px;
    min-height: 260px;
  }

  .map-panel-head h2 {
    font-size: 1.05rem;
  }

  .map-panel iframe,
  .map-empty {
    min-height: 250px;
  }

  .product-detail-shell,
  .article-detail-shell {
    padding: 10px 0 24px;
  }

  .product-photo-panel {
    min-height: 248px;
    padding: 18px;
    border-radius: 28px;
  }

  .product-floating-badge {
    top: 14px;
    left: 14px;
    min-height: 32px;
    padding: 0 12px;
    font-size: .74rem;
  }

  .product-info-panel {
    padding: 18px;
  }

  .detail-topline {
    font-size: .7rem;
  }

  .detail-short {
    margin-bottom: 14px;
    font-size: .92rem;
  }

  .detail-chip-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .detail-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: .74rem;
  }

  .detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  .detail-stats div {
    padding: 12px 8px;
    border-radius: 16px;
  }

  .detail-stats strong {
    font-size: .88rem;
  }

  .detail-stats span {
    font-size: .74rem;
  }

  .detail-buy-card {
    padding: 16px;
  }

  .detail-cart-secondary {
    min-height: 48px;
  }

  .detail-buy-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .detail-buy-header h2 {
    font-size: 1.02rem;
  }

  .detail-price-block {
    margin-bottom: 14px;
  }

  .detail-price-block strong {
    font-size: 1.45rem;
  }

  .qty-control {
    width: 100%;
    grid-template-columns: 42px 1fr 42px;
  }

  .qty-control button,
  .qty-control input,
  .detail-note-input {
    height: 46px;
  }

  .detail-buy-note {
    font-size: .78rem;
    margin-top: 10px;
  }

  .detail-description {
    margin-top: 20px;
  }

  .detail-description h2 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .article-detail-cover {
    max-height: 240px;
  }

  .article-detail-body h1 {
    font-size: 1.7rem;
    line-height: 1.14;
  }

  .article-lead {
    font-size: .92rem;
    margin-bottom: 14px;
  }

  .article-share-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .article-share-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .article-share-btn {
    min-height: 40px;
    padding: 0 10px;
    font-size: .78rem;
  }

  .article-share-btn span {
    white-space: nowrap;
  }

  .article-tag-row {
    gap: 8px;
    margin-bottom: 18px;
  }

  .article-tag-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: .76rem;
  }

  .article-content {
    font-size: .95rem;
    line-height: 1.72;
  }

  .article-content h2 {
    font-size: 1.22rem;
    margin-top: 1.7rem;
  }

  .article-content h3 {
    font-size: 1.08rem;
  }

  .article-content h4 {
    font-size: .98rem;
  }

  .article-content blockquote {
    padding: .9rem .95rem .9rem 1rem;
    border-radius: 0 16px 16px 0;
  }

  .article-content th,
  .article-content td {
    padding: .72rem .75rem;
    font-size: .86rem;
  }

  .related-wrap {
    margin-top: 20px;
  }

  .footer-inner {
    padding-top: 14px;
    gap: 10px;
  }

  .footer-title {
    font-size: .96rem;
  }

  .footer-copy,
  .footer-contact {
    font-size: .82rem;
    line-height: 1.6;
  }

  .bottom-nav {
    bottom: 10px;
    width: calc(100% - 16px);
    gap: 6px;
    padding: 8px;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .1);
  }

  .bottom-nav-item {
    min-height: 54px;
    border-radius: 18px;
    font-size: .7rem;
    gap: 4px;
  }

  .bottom-nav-item i {
    font-size: 1.05rem;
  }

  .cart-count-badge {
    top: 5px;
    right: 5px;
    min-width: 18px;
    height: 18px;
    font-size: .62rem;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-head,
  .cart-drawer-body,
  .cart-drawer-foot {
    padding: 16px;
  }

  .cart-item {
    grid-template-columns: 60px 1fr;
  }

  .cart-item-image img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    grid-template-columns: 34px 34px 34px auto;
    justify-content: start;
  }

  .cart-item-actions .remove {
    grid-column: auto;
    width: 40px;
    border-radius: 999px;
  }
}
