:root {
  --ink-950: #0D0A09;
  --ink-900: #17100E;
  --wine-800: #5C2A14;
  --wine-700: #A84820;
  --wine-600: #C45C26;
  --paper: #F5F5F3;
  --white: #FFFFFF;
  --wa: #20C968;
  --wa-hover: #1ab85a;

  --ink: var(--paper);
  --muted: rgba(245, 245, 243, 0.72);
  --muted-light: rgba(245, 245, 243, 0.48);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --surface: rgba(58, 23, 18, 0.42);
  --surface-2: rgba(23, 16, 14, 0.72);

  --header-h: 4.5rem;
  --gutter: clamp(1rem, 4vw, 1.5rem);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, sans-serif;
  --display: "Playfair Display", Georgia, serif;

  --grad-page:
    radial-gradient(ellipse 100% 60% at 20% -10%, rgba(196, 92, 38, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(168, 72, 32, 0.18), transparent 50%),
    linear-gradient(175deg, var(--wine-800) 0%, var(--ink-900) 42%, var(--ink-950) 100%);
  --grad-hero:
    linear-gradient(135deg, rgba(196, 92, 38, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 0% 50%, rgba(168, 72, 32, 0.35), transparent 60%);
  --grad-card:
    linear-gradient(155deg, rgba(92, 42, 20, 0.55) 0%, rgba(13, 10, 9, 0.88) 100%);
  --grad-cta:
    linear-gradient(120deg, var(--wine-800) 0%, var(--wine-700) 45%, var(--ink-950) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink-950);
  background-image: var(--grad-page);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
}

.demo-banner {
  margin: 0;
  padding: 0.45rem var(--gutter);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5d4c0;
  background: linear-gradient(90deg, #5c2a14, #c45c26, #5c2a14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--wine-600);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.wrap {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 9, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(13, 10, 9, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 2;
  min-width: 0;
}

.brand-text {
  min-width: 0;
}

.brand img,
.brand-logo {
  width: auto;
  height: 52px;
  max-width: min(148px, 42vw);
  flex-shrink: 0;
  object-fit: contain;
}

.brand-logo--footer {
  height: 44px;
  max-width: 120px;
}

.brand strong {
  display: block;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.brand span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.menu-btn__bars,
.menu-btn__bars::before,
.menu-btn__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  margin: 0 auto;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    background 0.3s var(--ease);
}

.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
}

.menu-btn__bars::before {
  transform: translateY(-6px);
}

.menu-btn__bars::after {
  transform: translateY(4px);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars {
  background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::before {
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::after {
  transform: rotate(-45deg) translateY(-2px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a:not(.btn-wa) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav a:not(.btn-wa)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--wine-600), var(--wine-700));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.nav a:not(.btn-wa):hover,
.nav a:not(.btn-wa).is-active {
  color: var(--paper);
}

.nav a:not(.btn-wa):hover::after,
.nav a:not(.btn-wa).is-active::after {
  transform: scaleX(1);
}

/* Buttons */
.ico-wa {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.25s var(--ease);
  box-shadow:
    0 4px 16px rgba(32, 201, 104, 0.28),
    0 0 0 0 rgba(32, 201, 104, 0);
}

.btn-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(32, 201, 104, 0.38),
    0 0 24px rgba(32, 201, 104, 0.12);
  text-decoration: none;
}

.btn-wa--sm {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
}

.btn-wa--hero {
  min-height: 54px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(155, 45, 32, 0.55);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.btn-outline:hover {
  background: var(--wine-600);
  border-color: var(--wine-600);
  color: var(--white);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline--light {
  border-color: rgba(245, 245, 243, 0.35);
  color: var(--paper);
}

.btn-outline--light:hover {
  background: rgba(245, 245, 243, 0.12);
  border-color: rgba(245, 245, 243, 0.5);
  color: var(--white);
}

/* Hero */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(155, 45, 32, 0.38) 0%, rgba(111, 33, 24, 0.12) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: 42% 58%;
    gap: 3rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-600);
}

.eyebrow--light {
  color: rgba(245, 245, 243, 0.8);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-wrap: balance;
}

.lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.hero-content .btn-wa--hero {
  width: auto;
  flex: 1 1 14rem;
  max-width: 100%;
}

.btn-outline--hero {
  min-height: 54px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  flex: 0 1 auto;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-stars {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(155, 45, 32, 0.75);
}

.hero-trust-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-light);
  letter-spacing: 0.02em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.hero-meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(155, 45, 32, 0.5);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 10, 9, 0.5) 100%);
  pointer-events: none;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head--catalog {
  max-width: 42rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Experience */
.section--experience {
  background: linear-gradient(180deg, rgba(58, 23, 18, 0.2) 0%, transparent 100%);
}

.experience-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 901px) {
  .experience-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.experience-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

.experience-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.experience-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.experience-list li > span {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine-600);
  line-height: 1;
  opacity: 0.85;
}

.experience-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.experience-list li p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.experience-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

/* Featured */
.section--featured {
  background: linear-gradient(180deg, transparent 0%, rgba(58, 23, 18, 0.25) 50%, transparent 100%);
}

.featured {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 901px) {
  .featured {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.featured-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
  position: relative;
}

.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(13, 10, 9, 0.35) 100%);
  pointer-events: none;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.featured-copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--paper);
}

.featured-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42ch;
}

.featured-price {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--wine-600);
  letter-spacing: -0.02em;
}

.featured-copy .btn-wa--hero {
  width: min(100%, 20rem);
}

/* Catalog */
.section--catalog {
  background: linear-gradient(180deg, rgba(23, 16, 14, 0.35) 0%, transparent 100%);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(23, 16, 14, 0.5);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.filter-btn:hover {
  color: var(--paper);
  border-color: rgba(155, 45, 32, 0.45);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: var(--wine-700);
  border-color: var(--wine-600);
  color: var(--white);
}

.catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  border: 1px dashed rgba(155, 45, 32, 0.35);
  border-radius: var(--radius);
  background: rgba(58, 23, 18, 0.2);
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--grad-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 45, 32, 0.35);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine-600), var(--wine-700));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(155, 45, 32, 0.35);
  z-index: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
  gap: 0.35rem;
}

.card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paper);
}

.card .desc {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.card-price-wrap .from {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.card-price-wrap .price {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wine-600);
  letter-spacing: -0.02em;
}

.card-line-total {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--paper);
}

.card--drink .card-media--drink {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(155, 45, 32, 0.12), rgba(255, 255, 255, 0.04));
}

.card-drink-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.card--drink .card-media {
  aspect-ratio: 16 / 10;
}

.btn-card {
  min-height: 42px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Cart — cardápio */
.card-cart {
  flex-shrink: 0;
}

.btn-add {
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(155, 45, 32, 0.45);
  border-radius: 999px;
  background: rgba(155, 45, 32, 0.12);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn-add:hover {
  background: rgba(155, 45, 32, 0.22);
  border-color: var(--wine-600);
}

.btn-add--sm {
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
}

.cart-qty--sm .cart-qty__btn {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.cart-qty__btn {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(155, 45, 32, 0.2);
  color: var(--paper);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.cart-qty__btn:hover {
  background: rgba(155, 45, 32, 0.38);
}

.cart-qty__n {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper);
}

.featured-cart .btn-add,
.featured-cart .cart-qty {
  margin-top: 0.25rem;
}

.featured-cart .btn-add {
  min-height: 48px;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

/* Cart bar */
.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 0.65rem 0 calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(13, 10, 9, 0.92) 24%);
  pointer-events: none;
}

.cart-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 16px;
  border: 1px solid rgba(155, 45, 32, 0.35);
  background: rgba(22, 16, 14, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.cart-bar__summary {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.35rem 0.5rem;
  border: none;
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.cart-bar__count {
  font-size: 0.72rem;
  color: var(--muted);
}

.cart-bar__total {
  font-size: 1.05rem;
  color: var(--paper);
}

.cart-bar__btn {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

body.has-cart .wa-float {
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
}

body.has-cart .footer {
  padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px));
}

/* Cart modal */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cart-modal[hidden] {
  display: none;
}

.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 4, 0.72);
  backdrop-filter: blur(4px);
}

.cart-modal__panel {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 720px);
  overflow: auto;
  margin: 0;
  padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-radius: 20px 20px 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  background: var(--ink-900);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

body.cart-open {
  overflow: hidden;
}

.cart-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-modal__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--paper);
}

.cart-modal__steps {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.checkout-progress {
  height: 3px;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.checkout-progress__bar {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--wine-600), var(--wine-700));
  transition: width 0.35s var(--ease);
}

.checkout-intro {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-panel[hidden] {
  display: none;
}

.cart-modal__items--editable {
  gap: 0.65rem;
}

.cart-edit-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-edit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-edit-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cart-edit-item__info strong {
  font-size: 0.92rem;
  color: var(--paper);
}

.cart-edit-item__info span {
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-edit-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-edit-item__line {
  font-size: 0.95rem;
  color: var(--wine-600);
  white-space: nowrap;
}

.cart-empty-msg,
.cart-min-order {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.cart-min-order {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(155, 45, 32, 0.12);
  border: 1px solid rgba(155, 45, 32, 0.25);
  color: #f0c4be;
}

.pickup-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.cart-summary-title {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--paper);
}

.cart-modal__summary {
  padding: 0.85rem;
  margin-bottom: 0.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.checkout-footer {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.checkout-footer__totals {
  margin-bottom: 0.85rem;
}

.checkout-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-outline--checkout {
  flex: 1 1 6rem;
  min-height: 48px;
  justify-content: center;
}

.checkout-next {
  flex: 2 1 10rem;
  min-height: 48px;
  justify-content: center;
}

.btn-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.55rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine-700), var(--wine-600));
  color: var(--paper);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s var(--ease);
}

.btn-checkout:hover {
  filter: brightness(1.08);
}

.cart-bar__btn.btn-checkout {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.cart-modal__submit {
  width: 100%;
  flex: 1 1 100%;
}

.cart-modal__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cart-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-modal__items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.cart-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.cart-line strong {
  color: var(--paper);
  font-weight: 600;
  white-space: nowrap;
}

.cart-line--sub {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.cart-line--total {
  font-size: 0.95rem;
  color: var(--paper);
}

.cart-line--total strong {
  color: var(--wine-600);
  font-size: 1.05rem;
}

.cart-modal__totals {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field > span,
.field legend {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.92rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(155, 45, 32, 0.55);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.65rem;
}

.field--radio {
  border: none;
  margin: 0;
  padding: 0;
}

.field--radio legend {
  margin-bottom: 0.45rem;
}

.radio-pill {
  display: inline-flex;
  margin-right: 0.5rem;
  margin-bottom: 0.35rem;
  cursor: pointer;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill span {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.radio-pill input:checked + span {
  border-color: rgba(155, 45, 32, 0.55);
  background: rgba(155, 45, 32, 0.15);
  color: var(--paper);
}

.cart-modal__hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.cart-modal__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.cart-modal__address[hidden] {
  display: none;
}

/* Cinematic */
.section--cinematic {
  padding: 0;
}

.cinematic {
  position: relative;
  min-height: clamp(360px, 55vw, 520px);
  overflow: hidden;
}

.cinematic img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 55vw, 520px);
  object-fit: cover;
  object-position: center 40%;
}

.cinematic__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    105deg,
    rgba(13, 10, 9, 0.88) 0%,
    rgba(23, 16, 14, 0.65) 45%,
    rgba(58, 23, 18, 0.25) 100%
  );
}

.cinematic__copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}

.cinematic__copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

.cinematic__copy > p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 38ch;
}

/* Delivery */
.section--delivery {
  background: linear-gradient(180deg, rgba(58, 23, 18, 0.15) 0%, transparent 100%);
}

.delivery-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.delivery-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--grad-card);
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.delivery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 45, 32, 0.35);
}

.delivery-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(155, 45, 32, 0.15);
  border: 1px solid rgba(155, 45, 32, 0.25);
}

.delivery-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--wine-600);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--paper);
}

.delivery-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.delivery-cta {
  width: fit-content;
}

/* FAQ */
.section--faq {
  background: linear-gradient(180deg, transparent 0%, rgba(23, 16, 14, 0.4) 100%);
}

.faq {
  max-width: 640px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--paper);
  transition: color 0.25s var(--ease);
}

.faq summary:hover {
  color: var(--wine-600);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, rgba(58, 23, 18, 0.12) 0%, transparent 100%);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 901px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
}

.info-card {
  padding: 1.35rem;
  background: var(--grad-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.info-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
}

.info-card p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.info-card a {
  color: var(--wine-600);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.info-card a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.link-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine-600) !important;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* CTA Final */
.cta-final {
  background: var(--grad-cta);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(155, 45, 32, 0.2), transparent 55%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.cta-final h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 22ch;
  color: var(--paper);
}

.cta-final__sub {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 3rem 0 0;
  background: var(--ink-950);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 701px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

.footer .brand strong {
  color: var(--paper);
}

.footer .brand span {
  color: var(--muted-light);
}

.footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-nav h3,
.footer-contact h3 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover {
  color: var(--paper);
}

.footer-contact p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-contact a {
  color: var(--wine-600);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-contact a:hover {
  color: var(--paper);
}

.footer-bottom {
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-light);
}

/* Float WA */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.wa-float .ico-wa {
  width: 1.5rem;
  height: 1.5rem;
}

/* Reveal */
.js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.4s var(--ease),
      transform 0.4s var(--ease);
  }

  .js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .js [data-reveal-delay="1"] {
    transition-delay: 0.1s;
  }

  .js [data-reveal-delay="2"] {
    transition-delay: 0.2s;
  }
}

/* Mobile */
@media (max-width: 900px) {
  :root {
    --header-h: 4rem;
  }

  body {
    background-attachment: scroll;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(13, 10, 9, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    padding: calc(var(--header-h) + 1rem) var(--gutter) calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn-wa) {
    font-size: 1.1rem;
  }

  .nav .btn-wa {
    margin-top: 0.5rem;
    width: min(100%, 18rem);
  }

  .hero {
    padding: 1.5rem 0 2.5rem;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content .btn-wa--hero,
  .btn-outline--hero {
    width: 100%;
    flex: none;
  }

  .lead {
    max-width: none;
  }

  .hero-frame {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .hero__glow {
    top: 5%;
    right: 0;
    width: 80vw;
    height: 50vw;
  }

  .hero-meta {
    gap: 0.4rem 1rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .experience-grid {
    gap: 2rem;
  }

  .featured {
    gap: 1.75rem;
  }

  .featured-copy .btn-wa--hero {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-footer {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .card-price-wrap {
    flex: 1;
    min-width: 0;
  }

  .btn-card {
    width: auto;
    flex: 0 0 auto;
    min-width: 7.5rem;
    margin-top: 0;
  }

  .delivery-card {
    padding: 1.5rem;
  }

  .delivery-cta {
    width: 100%;
    justify-content: center;
  }

  .map-wrap {
    min-height: 240px;
  }

  .map-wrap iframe {
    min-height: 240px;
    height: 240px;
  }

  .cta-final__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-final h2 {
    max-width: none;
  }

  .cta-final .btn-wa--hero {
    width: 100%;
  }

  .footer {
    padding-top: 2.5rem;
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .wa-float {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand span {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-meta li {
    font-size: 0.72rem;
  }

  .catalog-filters {
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }

  .card-body {
    padding: 1rem;
  }

  .card h3 {
    font-size: 1.12rem;
  }

  .card .desc {
    -webkit-line-clamp: 4;
    font-size: 0.84rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .card-cart {
    width: 100%;
  }

  .btn-add,
  .cart-qty {
    width: 100%;
    justify-content: center;
  }

  .cart-qty {
    display: flex;
  }

  .btn-card {
    width: 100%;
    min-height: 44px;
  }

  .cart-bar__inner {
    flex-wrap: wrap;
  }

  .cart-bar__btn {
    width: 100%;
    justify-content: center;
  }

  .checkout-footer__actions {
    flex-direction: column;
  }

  .btn-outline--checkout,
  .checkout-next,
  .cart-modal__submit {
    width: 100%;
  }

  .cart-edit-item__actions {
    flex-wrap: wrap;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .faq summary {
    font-size: 0.9rem;
    align-items: flex-start;
  }

  .info-card {
    padding: 1.1rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 210px;
    height: 210px;
  }
}

@media (max-width: 380px) {
  .brand-text span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* —— App / cardápio direto (fluxo pedido) —— */
.layout-app {
  --header-h: 3.75rem;
}

.layout-app .header--app .header-inner {
  min-height: var(--header-h);
}

.layout-app .header--app .brand-logo {
  height: 40px;
  max-width: 110px;
}

.shop-top {
  position: relative;
  margin-bottom: 0.5rem;
}

.shop-cover {
  height: clamp(120px, 28vw, 180px);
  overflow: hidden;
}

.shop-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.shop-info {
  padding-block: 1rem 0.25rem;
}

.shop-info__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.shop-info__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  margin-top: -1.75rem;
  box-shadow: var(--shadow-sm);
}

.shop-info h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1.15;
}

.shop-info__tag {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.shop-status {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b8f5cd;
  background: rgba(32, 201, 104, 0.15);
  border: 1px solid rgba(32, 201, 104, 0.35);
}

.shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}

.shop-chips li {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.shop-address {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.shop-address a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-flow-hint {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine-600);
}

.section--catalog-app {
  padding-top: 0;
  padding-bottom: 2rem;
}

.catalog-sticky {
  position: sticky;
  top: calc(var(--header-h) + 0px);
  z-index: 50;
  padding-block: 0.65rem 0.5rem;
  margin-bottom: 0.75rem;
  background: rgba(13, 10, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.section--catalog-app .catalog-filters {
  margin-bottom: 0;
}

.grid--app {
  gap: 1rem;
}

.footer--app {
  padding: 1.25rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: rgba(13, 10, 9, 0.6);
}

.footer-app__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-app__inner p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.footer-app__inner a {
  color: var(--muted);
}

body.layout-app.has-cart .footer--app {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .shop-info__head {
    flex-wrap: wrap;
  }

  .shop-status {
    margin-left: 0;
    order: 3;
  }

  .grid--app {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .grid--app {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--app {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Builder modals */
.builder-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.builder-modal[hidden] {
  display: none;
}

.builder-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 4, 0.75);
  backdrop-filter: blur(4px);
}

.builder-modal__panel {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-radius: 20px 20px 0 0;
  border: 1px solid var(--line);
  background: var(--ink-900);
}

.builder-modal__panel--sm {
  max-height: 50vh;
}

.builder-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.builder-modal__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--paper);
}

.builder-form__img {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.builder-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.option-grid,
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.check-pill {
  cursor: pointer;
}

.check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-pill span {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}

.check-pill input:checked + span {
  border-color: rgba(196, 92, 38, 0.55);
  background: rgba(196, 92, 38, 0.15);
  color: var(--paper);
}

.field-hint {
  font-size: 0.72rem;
  color: var(--muted-light);
}

.builder-price {
  margin: 0;
  font-size: 1rem;
  color: var(--paper);
}

.builder-price strong {
  color: var(--wine-600);
  font-size: 1.15rem;
}

.builder-submit {
  width: 100%;
}

body.builder-open {
  overflow: hidden;
}

.cart-edit-detail {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-light);
  line-height: 1.4;
}

.cart-remove {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-remove:hover {
  color: #f0a8a0;
  border-color: rgba(196, 92, 38, 0.4);
}
