:root {
  --primary-color: #d72638;
  --primary-dark: #ae1628;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --border: #e6e9ef;
  --text: #1f2430;
  --muted: #667085;
  --success: #16a34a;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-light: 0 10px 24px rgba(15, 23, 42, 0.05);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --page-width: 1180px;
  --content-width: 1040px;
  --font-title: "Segoe UI", "Trebuchet MS", sans-serif;
  --font-body: "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top, rgba(215, 38, 56, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, #f3f5f7 100%);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

svg path,
svg circle,
svg rect,
svg line,
svg polyline,
svg polygon {
  fill: none;
  stroke: currentColor;
}

button,
input,
textarea,
select {
  font: inherit;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.landing-card {
  width: min(720px, 100%);
  padding: 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.1);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 800;
}

.landing-card h1 {
  margin: 16px 0 14px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #ec3c45);
  color: #fff;
}

.btn-secondary {
  background: #eef2f5;
  color: var(--text);
}

.public-menu-page {
  min-height: 100vh;
  padding-bottom: 132px;
  overflow-x: clip;
}

.public-menu-topbar {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(174, 22, 40, 0.16);
}

.public-menu-topbar__inner,
.public-menu-subbar__inner,
.public-menu-layout {
  width: 100%;
  max-width: var(--content-width);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}

.public-menu-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  gap: 12px;
}

.public-menu-topbar__inner > * {
  min-width: 0;
}

.public-menu-brand {
  color: #fff;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 1;
}

.public-menu-brand span {
  color: #ffd54c;
}

.public-menu-brand small {
  font-size: 0.48em;
  color: #fff;
}

.public-menu-brand--logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.public-menu-brand--logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(260px, 72vw);
  object-fit: contain;
}

.public-menu-topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.public-menu-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: Georgia, serif;
}

.public-menu-hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.public-menu-hamburger i {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  display: block;
}

.public-menu-subbar {
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.public-menu-subbar__inner {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.public-menu-subbar__inner > * {
  min-width: 0;
}

.public-menu-subbar__url {
  color: #5a6270;
  font-size: 0.98rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-menu-subbar__url::before {
  content: "◉";
  margin-right: 8px;
  color: #5a6270;
  font-size: 0.8rem;
}

.public-menu-subbar__whatsapp {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1fbe5d, #15974a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  justify-self: end;
}

.public-menu-subbar__whatsapp::before {
  content: "◉";
  margin-right: 8px;
  font-size: 0.78rem;
}

.public-menu-layout {
  display: grid;
  gap: 14px;
  padding: 12px 0 0;
  justify-items: stretch;
}

.store-cover-card,
.story-groups-row,
.hero-promo-card,
.catalog-section,
.promo-banners-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(231, 235, 241, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-light);
}

.story-groups-row,
.catalog-section,
.promo-banners-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.store-cover-card {
  overflow: hidden;
}

.store-cover-card__banner {
  position: relative;
  height: 220px;
}

.store-cover-card__banner img,
.hero-promo-card__media img,
.promo-banner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-cover-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 29, 0.15), rgba(16, 20, 29, 0.66));
}

.store-cover-card__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px 18px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
}

.store-cover-card__identity {
  display: flex;
  align-items: end;
  gap: 16px;
  min-width: 0;
}

.store-cover-card__logo {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 30px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.store-cover-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-cover-card__copy {
  padding-bottom: 4px;
  min-width: 0;
}

.store-cover-card__url {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #4f5a6b;
  font-size: 0.86rem;
  font-weight: 800;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-cover-card__copy h1 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  line-height: 1;
}

.store-cover-card__copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.story-groups-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 8px;
}

.story-groups-row::-webkit-scrollbar,
.catalog-tabs::-webkit-scrollbar,
.story-viewer-list::-webkit-scrollbar {
  display: none;
}

.story-group-item {
  min-width: 94px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.story-group-item__ring {
  width: 86px;
  height: 86px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
}

.story-group-item__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.story-group-item__label {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-promo-card {
  position: relative;
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
}

.hero-promo-card__media {
  position: absolute;
  inset: 0;
}

.hero-promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 15, 8, 0.82) 0%, rgba(35, 15, 8, 0.56) 42%, rgba(35, 15, 8, 0.12) 100%);
}

.hero-promo-card__content {
  position: relative;
  z-index: 1;
  width: min(52%, 420px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  color: #fff;
}

.hero-promo-card__eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-promo-card__content h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-promo-card__content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-promo-card__button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffd54c, #ffc72c);
  color: #402300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.catalog-section,
.promo-banners-section {
  padding: 6px 0 0;
}

.catalog-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.catalog-section__header h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.05;
}

.catalog-section__header p {
  margin: 0;
  color: var(--muted);
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  padding-bottom: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  position: relative;
  --catalog-pointer-x: 16.666%;
}

.catalog-tabs::after {
  content: "";
  position: absolute;
  left: var(--catalog-pointer-x);
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: translate(-50%, 0) rotate(45deg);
  transform-origin: center;
  box-shadow: 6px 6px 14px rgba(15, 23, 42, 0.04);
}

.featured-section-chip {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.catalog-tab {
  min-height: 56px;
  padding: 0 18px;
  width: 100%;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: #374151;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.catalog-tab:nth-child(4n) {
  border-right: 0;
}

.catalog-tab:nth-child(n + 5) {
  border-top: 1px solid var(--border);
}

.catalog-tab:first-child {
  border-top-left-radius: 18px;
}

.catalog-tab:nth-child(4) {
  border-top-right-radius: 18px;
}

.catalog-tab:nth-child(4n + 1):nth-last-child(-n + 4) {
  border-bottom-left-radius: 18px;
}

.catalog-tab:nth-child(4n):nth-last-child(-n + 4),
.catalog-tab:last-child {
  border-bottom-right-radius: 18px;
}

.catalog-tab.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  z-index: 1;
}

.catalog-tab.is-active::after {
  display: none;
}

.featured-chip {
  min-height: 48px;
  width: min(100%, 220px);
  padding: 0 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow:
    0 10px 22px rgba(215, 38, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
}

.featured-chip::after {
  display: block;
  content: "";
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--primary-dark);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px;
  position: absolute;
}

.catalog-tab__icon,
.featured-chip__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd77a, #ffad1f 60%, #d97800 100%);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(227, 232, 238, 0.96);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.catalog-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.09);
}

.catalog-product-card:focus-visible {
  outline: 3px solid rgba(215, 38, 56, 0.2);
  outline-offset: 2px;
}

.catalog-product-card[hidden] {
  display: none;
}

.catalog-product-card__image {
  position: relative;
  aspect-ratio: 1 / 0.92;
}

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

.catalog-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
}

.badge-featured {
  background: linear-gradient(180deg, #c61822, #a61119);
}

.badge-delicious {
  background: linear-gradient(180deg, #dd2f2f, #b21515);
}

.badge-offer {
  background: linear-gradient(180deg, #8a6112, #6c4a06);
}

.catalog-product-card__body {
  position: relative;
  padding: 12px 12px 14px;
}

.catalog-product-card__body h3 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.catalog-product-card__body strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.category-panel {
  display: none;
}

.category-panel.is-active {
  display: block;
}

.catalog-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.catalog-view-more {
  min-width: 164px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: #27303c;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}

.promo-banners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.promo-banner-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.promo-banner-card__media {
  position: absolute;
  inset: 0;
}

.promo-banner-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 18, 12, 0.16), rgba(78, 18, 12, 0.78));
}

.promo-banner-card__content {
  position: relative;
  z-index: 1;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  color: #fff;
}

.promo-banner-card__content strong {
  font-size: 1rem;
  line-height: 1.05;
}

.promo-banner-card__content span,
.promo-banner-card__content small {
  font-weight: 800;
}

.menu-made-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 75px;
  padding: 26px 12px 34px;
  text-align: center;
}

.menu-made-by a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-made-by img {
  display: block;
  width: auto;
  height: 55px;
  max-width: min(150px, 48vw);
  object-fit: contain;
  opacity: 0.9;
}

.menu-made-by p {
  margin: 0;
  color: #aeb6c2;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

.floating-cart-button {
  position: fixed;
  right: 16px;
  bottom: calc(74px + env(safe-area-inset-bottom));
  z-index: 24;
  min-width: 176px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #d9dee6;
  border-radius: 14px;
  background: #fff;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.public-menu-page.is-cart-open .floating-cart-button {
  opacity: 0;
  pointer-events: none;
}

.floating-cart-button strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.floating-cart-button__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.floating-cart-button__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.floating-cart-button__divider {
  width: 1px;
  height: 10px;
  background: #d5dbe4;
}

.floating-cart-button__icon {
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  position: relative;
  flex: 0 0 auto;
}

.floating-cart-button__icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -7px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.floating-cart-button__icon::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0.82;
}

.public-menu-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 22;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  min-height: 58px;
  padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(226, 230, 236, 0.96);
  box-shadow: 0 -10px 20px rgba(15, 23, 42, 0.05);
}

.public-menu-footer__item {
  min-height: 42px;
  color: #4c5564;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  position: relative;
}

.public-menu-footer__item + .public-menu-footer__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #e5e8ee;
}

.public-menu-footer__item.is-active {
  color: var(--primary-color);
}

.public-menu-footer__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
}

.public-menu-footer__icon::before,
.public-menu-footer__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.public-menu-footer__icon::before {
  left: 3px;
  right: 3px;
  top: 6px;
  height: 2px;
}

.public-menu-footer__icon::after {
  width: 2px;
  top: 3px;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}

.public-menu-footer__icon--reels {
  border-radius: 4px;
}

.public-menu-footer__icon--reels::before {
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  height: auto;
  border: 2px solid currentColor;
  background: transparent;
}

.public-menu-footer__icon--reels::after {
  width: 0;
  height: 0;
  top: 4px;
  bottom: auto;
  left: 50%;
  transform: translateX(-35%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  background: transparent;
}

.public-menu-footer__icon--cart {
  border-radius: 4px;
}

.public-menu-footer__icon--cart::before {
  left: 3px;
  right: 3px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 2px;
}

.public-menu-footer__icon--cart::after {
  width: 10px;
  height: 6px;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: transparent;
}

.public-menu-footer__icon--contact {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.public-menu-footer__icon--contact::before,
.public-menu-footer__icon--contact::after {
  display: none;
}

.public-menu-footer__badge {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(10px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.cart-screen {
  padding-top: 10px;
  padding-bottom: 10px;
}

.cart-screen__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cart-screen__header h2 {
  margin: 0 0 4px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.cart-screen__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.cart-screen__count {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 230, 236, 0.96);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cart-screen__count-icon,
.cart-finish-button__icon,
.cart-customer-card__icon,
.cart-field__icon {
  color: var(--primary-color);
}

.cart-screen__count-icon {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.cart-screen__count-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -7px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cart-screen__count strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1f2430;
}

.cart-screen__content {
  display: grid;
  gap: 16px;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item-card,
.cart-summary-card,
.cart-customer-card,
.cart-empty {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 230, 236, 0.96);
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.cart-item-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.cart-item-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  object-fit: cover;
}

.cart-item-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.cart-item-card__copy {
  min-width: 0;
}

.cart-item-card__copy h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.cart-item-card__copy p {
  margin: 0;
  color: #4f5a6b;
  font-size: 0.48rem;
  line-height: 1.38;
}

.cart-item-card__copy small {
  display: block;
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 800;
}

.cart-item-card__meta {
  display: grid;
  justify-items: end;
  gap: 12px;
  flex: 0 0 auto;
}

.cart-item-card__meta strong {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cart-item-card__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-button,
.cart-remove-button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(220, 225, 233, 0.96);
  border-radius: 10px;
  background: #fff;
  color: #1f2430;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.04);
}

.cart-qty-value {
  min-width: 22px;
  text-align: center;
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 900;
}

.cart-remove-button {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(174, 22, 40, 0.18);
}

.cart-qty-button svg,
.cart-remove-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  line-height: 1;
  flex: 0 0 auto;
  overflow: visible;
}

.cart-summary-card {
  padding: 22px 24px;
  display: grid;
  gap: 14px;
}

.cart-summary-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 236, 242, 0.96);
}

.cart-summary-card__head strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.cart-coupon-toggle {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(220, 225, 233, 0.96);
  border-radius: 12px;
  background: #fff;
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-coupon-box {
  display: grid;
  gap: 10px;
  padding: 4px 0 2px;
}

.cart-coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 58;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cart-coupon-modal[hidden] {
  display: none;
}

.cart-coupon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(6px);
}

.cart-coupon-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  display: grid;
  gap: 14px;
}

.cart-coupon-modal__dialog > strong {
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.05;
}

.cart-coupon-modal__dialog > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.42;
}

.cart-coupon-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f3f5f8;
  color: #4b5565;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-coupon-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cart-coupon-form input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(220, 225, 233, 0.96);
  border-radius: 14px;
  outline: 0;
  background: #fff;
  color: #1f2430;
  font-size: 0.96rem;
  font-weight: 700;
}

.cart-coupon-form input::placeholder {
  color: #7b8494;
}

.cart-coupon-form button,
.cart-coupon-applied button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-coupon-applied {
  min-height: 48px;
  padding: 0 12px 0 14px;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-coupon-applied span {
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 900;
}

.cart-coupon-applied button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  color: var(--success);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.cart-summary-row,
.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-summary-row {
  font-size: 1rem;
}

.cart-summary-row strong {
  font-size: 1rem;
}

.cart-summary-row--discount,
.cart-summary-row--discount strong {
  color: var(--success);
}

.cart-summary-total {
  padding-top: 18px;
  border-top: 1px dashed rgba(212, 218, 226, 0.96);
}

.cart-summary-total span {
  font-size: 1.2rem;
  font-weight: 900;
}

.cart-summary-total strong {
  color: #111827;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  line-height: 1;
}

.cart-customer-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.cart-customer-card__header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 900;
}

.cart-customer-card__icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  flex: 0 0 auto;
}

.cart-customer-card__icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cart-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cart-field {
  min-height: 62px;
  border: 1px solid rgba(220, 225, 233, 0.96);
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cart-field--full {
  grid-column: 1 / -1;
}

.cart-field input,
.cart-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2430;
  font-size: 1rem;
}

.cart-field input::placeholder,
.cart-field select {
  color: #6c7688;
  font-weight: 700;
}

.cart-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-field__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  position: relative;
}

.cart-field__icon::before,
.cart-field__icon::after {
  content: "";
  position: absolute;
}

.cart-field__icon--user::before {
  inset: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cart-field__icon--user::after {
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cart-field__icon--phone::before {
  inset: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cart-field__icon--phone::after {
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(40deg);
}

.cart-field__icon--address {
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.cart-field__icon--address::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cart-field__icon--note::before {
  inset: 0;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.cart-field__icon--note::after {
  left: 4px;
  right: 4px;
  top: 6px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.cart-field__action {
  border: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.cart-finish-button {
  min-height: 84px;
  padding: 0 26px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(174, 22, 40, 0.24);
  cursor: pointer;
}

.cart-finish-button__icon {
  width: 26px;
  height: 26px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.cart-finish-button__icon::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 3px;
  height: 10px;
  border: 3px solid #fff;
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cart-finish-button span {
  display: grid;
  gap: 3px;
}

.cart-finish-button strong {
  font-size: 1.18rem;
  line-height: 1;
}

.cart-finish-button small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.cart-empty {
  padding: 34px 24px;
  text-align: center;
}

.cart-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
}

.cart-empty__button {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(220, 225, 233, 0.96);
  border-radius: 16px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 900;
  cursor: pointer;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: calc(112px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(12px);
  z-index: 32;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  min-height: 44px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.96);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-quickview {
  position: fixed;
  inset: 0;
  z-index: 57;
  display: grid;
  place-items: center;
  padding: 0;
}

.product-quickview[hidden] {
  display: none;
}

.product-quickview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
}

.product-quickview__dialog {
  position: relative;
  z-index: 1;
  width: min(100vw, 560px);
  height: 100dvh;
  max-height: 100dvh;
  padding: calc(18px + env(safe-area-inset-top)) 20px calc(18px + env(safe-area-inset-bottom));
  border-radius: 0;
  background: #fff;
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.2);
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.product-quickview__dialog::-webkit-scrollbar {
  display: none;
}

.product-quickview__back {
  width: max-content;
  border: 0;
  background: transparent;
  color: #1f2530;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.product-quickview__back span {
  font-size: 2rem;
  line-height: 0.7;
  transform: translateY(-1px);
}

.product-quickview__media {
  width: 100%;
  height: clamp(210px, 38dvh, 320px);
  aspect-ratio: auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff2df, #fffaf5);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.72);
  display: block;
  isolation: isolate;
  margin-bottom: 10px;
}

.product-quickview__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-quickview__body {
  display: grid;
  gap: 10px;
  padding: 4px 6px 8px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.product-quickview__body h3 {
  margin: 0;
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.product-quickview__body p {
  margin: 0;
  color: #647084;
  font-size: 1rem;
  line-height: 1.65;
}

.product-quickview__body strong {
  color: var(--primary-color);
  font-size: clamp(1.65rem, 6vw, 2.15rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.product-quickview__section {
  display: grid;
  gap: 0;
  padding: 18px 6px 0;
  border-top: 1px solid #e4e8ef;
}

.product-quickview__section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.product-quickview__section-header div {
  display: grid;
  gap: 4px;
}

.product-quickview__section-header strong {
  color: #1f2530;
  font-size: 1.18rem;
  line-height: 1;
}

.product-quickview__section-header span,
.product-option-row small {
  color: #7a8495;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-quickview__section-header em {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.08);
  color: var(--primary-color);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-quickview__section--future {
  opacity: 0.76;
}

.product-quickview__section--future select {
  width: 100%;
  min-height: 48px;
  border: 1px dashed #cfd5df;
  border-radius: 14px;
  background: #f7f8fb;
  color: #7a8495;
  padding: 0 14px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.product-option-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: #202632;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f5;
}

.product-option-row--check {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.product-option-row:last-child {
  border-bottom: 0;
}

.product-quickview__section--required .product-option-row {
  min-height: 64px;
  margin-bottom: 8px;
  padding: 12px 14px;
  border: 1px solid #edf0f5;
  border-radius: 18px;
  background: #fbfcfe;
}

.product-quickview__section--required .product-option-row:last-child {
  margin-bottom: 0;
}

.product-option-row > span:first-child {
  display: grid;
  gap: 4px;
}

.product-option-row strong {
  font-size: 1.02rem;
  line-height: 1.08;
}

.product-option-row__price {
  color: #4b5565;
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-option-row input[type="checkbox"],
.product-option-row input[type="radio"] {
  appearance: none;
  width: 25px;
  height: 25px;
  border: 2px solid var(--primary-color);
  border-radius: 7px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.product-option-row input[type="radio"] {
  border-radius: 999px;
}

.product-option-row input[type="checkbox"]::before,
.product-option-row input[type="radio"]::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--primary-color);
  transform: scale(0);
  transition: transform 0.16s ease;
}

.product-option-row input[type="radio"]::before {
  border-radius: 999px;
}

.product-option-row input:checked::before {
  transform: scale(1);
}

.product-quickview__notes {
  display: grid;
  gap: 8px;
  padding: 18px 6px 0;
  border-top: 1px solid #e4e8ef;
}

.product-quickview__notes span {
  color: #202632;
  font-size: 1.02rem;
  font-weight: 900;
}

.product-quickview__notes textarea {
  width: 100%;
  resize: vertical;
  min-height: 82px;
  border: 1px solid #dfe3eb;
  border-radius: 16px;
  background: #fff;
  padding: 12px 14px;
  color: #202632;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  outline: 0;
}

.product-quickview__notes textarea:focus {
  border-color: rgba(215, 38, 56, 0.45);
  box-shadow: 0 0 0 4px rgba(215, 38, 56, 0.08);
}

.product-quickview__add {
  position: sticky;
  bottom: 0;
  z-index: 2;
  min-height: 70px;
  margin-top: 2px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  display: grid;
  place-items: center;
  gap: 3px;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(174, 22, 40, 0.2);
}

.product-quickview__add strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1;
}

.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  touch-action: manipulation;
}

.story-viewer[hidden] {
  display: none;
}

.story-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(8px);
}

.story-viewer-dialog {
  position: relative;
  z-index: 1;
  width: min(100vw, calc(100dvh * 9 / 16));
  height: min(100dvh, calc(100vw * 16 / 9));
  max-width: 430px;
  max-height: 100dvh;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  color: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.story-viewer-chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: calc(12px + env(safe-area-inset-top)) 16px 0;
  pointer-events: none;
}

.story-viewer-close,
.story-viewer-store,
.story-viewer-cta {
  pointer-events: auto;
}

.story-viewer-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.story-viewer-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.story-viewer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  opacity: 0.42;
  transform: scale(0.82);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.story-viewer-dot.is-active {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #ffbf2f;
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(255, 191, 47, 0.14);
}

.story-viewer-store {
  max-width: 142px;
  min-height: 48px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(16, 11, 7, 0.86);
  border: 2px solid rgba(255, 191, 47, 0.9);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.24),
    0 0 0 4px rgba(255, 191, 47, 0.14);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.story-viewer-store img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}

.story-viewer-store span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
}

.story-viewer-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.story-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.story-slide-media,
.story-slide-media img,
.story-slide-media video {
  width: 100%;
  height: 100%;
}

.story-slide-media {
  position: absolute;
  inset: 0;
  background: #000;
}

.story-slide-media img,
.story-slide-media video {
  object-fit: contain;
  object-position: center center;
}

.story-slide-media__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(0deg, rgba(4, 5, 10, 0.78) 0%, rgba(4, 5, 10, 0) 32%);
}

.story-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 20px calc(108px + env(safe-area-inset-bottom));
}

.story-slide-copy {
  display: grid;
  gap: 10px;
  text-align: center;
}

.story-slide-copy h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.story-slide-copy p {
  max-width: 290px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.38;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.story-viewer-nav {
  position: absolute;
  top: 0;
  bottom: calc(104px + env(safe-area-inset-bottom));
  width: 50%;
  z-index: 4;
  touch-action: manipulation;
}

.story-viewer-nav--left {
  left: 0;
}

.story-viewer-nav--right {
  right: 0;
}

.story-viewer-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 16px 20px calc(18px + env(safe-area-inset-bottom));
}

.story-viewer-cta {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow:
    0 20px 34px rgba(174, 22, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .public-menu-layout {
    max-width: 920px;
  }

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

  .hero-promo-card__content {
    width: min(58%, 360px);
  }
}

@media (max-width: 760px) {
  .public-menu-topbar__inner,
  .public-menu-subbar__inner,
  .public-menu-layout {
    padding-left: 8px;
    padding-right: 8px;
  }

  .store-cover-card,
  .story-groups-row,
  .hero-promo-card,
  .catalog-section,
  .promo-banners-section {
    margin-left: auto;
    margin-right: auto;
  }

  .store-cover-card__banner {
    height: 180px;
  }

  .store-cover-card__content {
    align-items: center;
    margin-top: -34px;
    padding: 0 16px 16px;
  }

  .store-cover-card__identity {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }

  .store-cover-card__logo {
    width: 88px;
    height: 88px;
    border-radius: 24px;
  }

  .store-cover-card__copy {
    min-width: 0;
    flex: 1 1 auto;
    text-align: left;
  }

  .store-cover-card__copy h1 {
    margin-bottom: 6px;
    font-size: 1.6rem;
    line-height: 1.02;
  }

  .store-cover-card__copy p {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .hero-promo-card {
    min-height: 210px;
  }

  .hero-promo-card__content {
    width: min(70%, 280px);
    padding: 20px;
  }

  .hero-promo-card__content h2 {
    font-size: 1.9rem;
  }

  .floating-cart-button {
    min-width: 164px;
    min-height: 42px;
    right: 12px;
    bottom: calc(68px + env(safe-area-inset-bottom));
    font-size: 0.78rem;
  }

  .public-menu-footer {
    min-height: 56px;
  }

  .cart-item-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .cart-item-card__content {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cart-item-card__meta {
    align-self: start;
    width: auto;
    justify-items: end;
  }

  .cart-item-card__controls,
  .cart-item-card__meta strong {
    justify-content: flex-end;
    text-align: right;
  }

  .cart-form-grid {
    grid-template-columns: 1fr;
  }

  .cart-screen__header {
    align-items: start;
    flex-direction: column;
  }

  .cart-screen__count {
    align-self: flex-end;
  }

  .story-viewer-dialog {
    width: min(100vw, calc(100dvh * 9 / 16));
    height: min(100dvh, calc(100vw * 16 / 9));
    max-width: 100vw;
  }
}

@media (max-width: 560px) {
  .public-menu-page {
    padding-bottom: 118px;
  }

  .public-menu-layout {
    padding-left: 10px;
    padding-right: 10px;
  }

  .catalog-section,
  .promo-banners-section {
    padding: 4px 0 0;
    overflow: visible;
  }

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

  .public-menu-topbar__inner {
    min-height: 54px;
    padding: 0 6px;
    gap: 8px;
  }

  .public-menu-brand {
    font-size: 1.32rem;
    letter-spacing: -0.05em;
  }

  .public-menu-brand--logo img {
    height: 26px;
    max-width: min(210px, 68vw);
  }

  .public-menu-topbar__actions {
    gap: 8px;
  }

  .public-menu-social {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .public-menu-hamburger i {
    width: 20px;
  }

  .public-menu-topbar {
    box-shadow: none;
  }

  .public-menu-topbar__inner {
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .public-menu-subbar__inner {
    min-height: 36px;
    gap: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .public-menu-subbar {
    border-top: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .public-menu-subbar__url {
    font-size: 0.72rem;
    line-height: 1;
    padding-right: 4px;
  }

  .public-menu-subbar__whatsapp {
    min-height: 28px;
    max-width: 122px;
    padding: 0 8px;
    font-size: 0.67rem;
  }

  .public-menu-subbar__url::before,
  .public-menu-subbar__whatsapp::before {
    margin-right: 5px;
    font-size: 0.58rem;
  }

  .store-cover-card__banner {
    height: 132px;
  }

  .store-cover-card {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .store-cover-card__content {
    margin-top: -22px;
    padding: 0 12px 12px;
  }

  .store-cover-card__identity {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .store-cover-card__logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border-width: 3px;
  }

  .store-cover-card__url {
    display: none;
  }

  .store-cover-card__copy h1 {
    margin-bottom: 3px;
    font-size: 1rem;
    line-height: 1.04;
    color: #1f2430;
  }

  .store-cover-card__copy p {
    font-size: 0.72rem;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .store-cover-card__copy {
    width: 100%;
    text-align: left;
  }

  .story-groups-row {
    gap: 12px;
    padding: 4px 0 8px;
    justify-content: flex-start;
  }

  .story-group-item {
    min-width: 72px;
    gap: 6px;
  }

  .story-group-item__ring {
    width: 66px;
    height: 66px;
  }

  .story-group-item__label {
    font-size: 0.72rem;
  }

  .hero-promo-card {
    min-height: 168px;
  }

  .hero-promo-card__content {
    width: min(72%, 220px);
    padding: 14px;
    gap: 6px;
  }

  .hero-promo-card__eyebrow {
    padding: 5px 8px;
    font-size: 0.6rem;
  }

  .hero-promo-card__content h2 {
    font-size: 1.02rem;
    line-height: 1;
  }

  .hero-promo-card__content p {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .hero-promo-card__button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.7rem;
    border-radius: 10px;
  }

  .catalog-section__header {
    margin-bottom: 12px;
    justify-content: center;
    width: 100%;
  }

  .catalog-section__header h2 {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }

  .catalog-section__header p {
    font-size: 0.74rem;
  }

  .catalog-section__header > div {
    text-align: center;
  }

  .catalog-tabs {
    margin-bottom: 16px;
    border-radius: 14px;
    width: 100%;
    padding-bottom: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    --catalog-pointer-x: 16.666%;
  }

  .featured-section-chip {
    margin-bottom: 12px;
  }

  .catalog-tab {
    min-height: 42px;
    padding: 0 10px;
    gap: 5px;
    font-size: 0.75rem;
  }

  .catalog-tab:nth-child(n + 5) {
    border-top: 1px solid var(--border);
  }

  .catalog-tab:first-child {
    border-top-left-radius: 14px;
  }

  .catalog-tab:nth-child(4) {
    border-top-right-radius: 14px;
  }

  .catalog-tab:nth-child(4n + 1):nth-last-child(-n + 4) {
    border-bottom-left-radius: 14px;
  }

  .catalog-tab:nth-child(4n):nth-last-child(-n + 4),
  .catalog-tab:last-child {
    border-bottom-right-radius: 14px;
  }

  .catalog-tab__icon {
    width: 12px;
    height: 12px;
  }

  .catalog-tabs::after {
    bottom: -6px;
    width: 12px;
    height: 12px;
    transform: translate(-50%, 0) rotate(45deg);
  }

  .featured-chip {
    min-height: 40px;
    width: min(100%, 172px);
    padding: 0 16px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .featured-chip::after {
    left: 50%;
    bottom: -6px;
    width: 10px;
    height: 10px;
    transform: translateX(-50%) rotate(45deg);
  }

  .catalog-product-card__body {
    padding: 9px 9px 12px;
  }

  .catalog-product-card__body h3 {
    font-size: 0.76rem;
    line-height: 1.06;
  }

  .catalog-product-card__body strong {
    font-size: 0.74rem;
  }

  .catalog-product-card__badge {
    top: 8px;
    left: 8px;
    min-height: 22px;
    padding: 3px 8px;
    font-size: 0.58rem;
  }

  .promo-banners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .floating-cart-button {
    min-width: 152px;
    min-height: 40px;
    right: 10px;
    bottom: calc(64px + env(safe-area-inset-bottom));
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .floating-cart-button strong {
    font-size: 0.76rem;
  }

  .floating-cart-button__meta {
    gap: 6px;
    font-size: 0.62rem;
  }

  .floating-cart-button__icon {
    width: 16px;
    height: 12px;
  }

  .public-menu-footer {
    min-height: 52px;
    padding: 4px 6px calc(4px + env(safe-area-inset-bottom));
  }

  .public-menu-footer__item {
    min-height: 38px;
    gap: 3px;
    font-size: 0.68rem;
  }

  .public-menu-footer__icon {
    width: 15px;
    height: 15px;
  }

  .cart-screen {
    padding-top: 6px;
  }

  .cart-screen__header {
    margin-bottom: 12px;
  }

  .cart-screen__header h2 {
    font-size: 1.85rem;
  }

  .cart-screen__header p {
    font-size: 0.9rem;
  }

  .cart-screen__count {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .cart-screen__count strong {
    font-size: 0.98rem;
  }

  .cart-list,
  .cart-screen__content {
    gap: 12px;
  }

  .cart-item-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
    border-radius: 20px;
  }

  .cart-item-card__image {
    border-radius: 14px;
  }

  .cart-item-card__copy h3 {
    margin-bottom: 5px;
    font-size: 0.96rem;
  }

  .cart-item-card__copy p,
  .cart-item-card__copy small {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .cart-item-card__copy p {
    font-size: 0.4rem;
  }

  .cart-item-card__meta {
    gap: 8px;
  }

  .cart-item-card__meta strong {
    font-size: 0.92rem;
  }

  .cart-qty-button,
  .cart-remove-button {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.74rem;
  }

  .cart-qty-value {
    min-width: 16px;
    font-size: 1.02rem;
  }

  .cart-qty-button svg,
  .cart-remove-button svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.3;
    transform: scale(1);
    transform-origin: center;
  }

  .cart-summary-card,
  .cart-customer-card,
  .cart-empty {
    padding: 18px;
    border-radius: 22px;
  }

  .cart-summary-card__head {
    align-items: start;
    flex-direction: column;
  }

  .cart-coupon-toggle {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .cart-coupon-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cart-coupon-form input,
  .cart-coupon-form button,
  .cart-coupon-applied {
    min-height: 42px;
  }

  .cart-coupon-applied {
    padding: 8px 10px 8px 12px;
    align-items: start;
    flex-direction: column;
  }

  .cart-coupon-applied button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .cart-coupon-modal {
    padding: 14px;
  }

  .product-quickview {
    padding: 0;
    align-items: end;
  }

  .product-quickview__dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    padding: calc(14px + env(safe-area-inset-top)) 16px calc(14px + env(safe-area-inset-bottom));
    border-radius: 0;
    gap: 16px;
  }

  .product-quickview__media {
    width: 100%;
    height: clamp(190px, 34dvh, 260px);
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .product-quickview__body h3 {
    font-size: 1.45rem;
  }

  .product-quickview__body p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .product-quickview__body strong {
    font-size: 1.62rem;
  }

  .product-quickview__add {
    min-height: 66px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .product-quickview__section {
    padding-top: 16px;
  }

  .product-quickview__section--required .product-option-row {
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .cart-coupon-modal__dialog {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .cart-coupon-modal__dialog > strong {
    font-size: 1.08rem;
  }

  .cart-coupon-modal__dialog > p {
    font-size: 0.88rem;
  }

  .cart-summary-row,
  .cart-summary-row strong {
    font-size: 0.95rem;
  }

  .cart-summary-total span {
    font-size: 1.05rem;
  }

  .cart-summary-total strong {
    font-size: 1.95rem;
  }

  .cart-customer-card__header {
    font-size: 1rem;
  }

  .cart-field {
    min-height: 56px;
    border-radius: 16px;
    padding: 0 14px;
  }

  .cart-field input,
  .cart-field select {
    font-size: 16px;
  }

  .cart-field__action {
    font-size: 0.82rem;
  }

  .cart-finish-button {
    min-height: 74px;
    padding: 0 18px;
    border-radius: 18px;
    gap: 12px;
  }

  .cart-finish-button strong {
    font-size: 1rem;
  }

  .cart-finish-button small {
    font-size: 0.8rem;
  }

  .cart-toast {
    bottom: calc(100px + env(safe-area-inset-bottom));
    min-width: 180px;
    font-size: 0.8rem;
  }

  .promo-banner-card {
    min-height: 104px;
  }

  .promo-banner-card__content {
    min-height: 104px;
    padding: 10px;
    gap: 4px;
  }

  .promo-banner-card__content strong {
    font-size: 0.82rem;
  }

  .story-viewer-chrome {
    gap: 8px;
    padding: calc(10px + env(safe-area-inset-top)) 12px 0;
  }

  .story-viewer-dialog {
    width: 100vw;
    height: min(100dvh, calc(100vw * 16 / 9));
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }

  .story-viewer-close {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .story-viewer-dots {
    gap: 8px;
  }

  .story-viewer-dot {
    width: 7px;
    height: 7px;
  }

  .story-viewer-dot.is-active {
    width: 10px;
    height: 10px;
  }

  .story-viewer-store {
    max-width: 120px;
    min-height: 40px;
    padding: 5px 10px 5px 6px;
    gap: 8px;
  }

  .story-viewer-store img {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .story-viewer-store span {
    font-size: 0.78rem;
  }

  .story-slide-content {
    padding: 0 16px calc(94px + env(safe-area-inset-bottom));
  }

  .story-slide-copy {
    gap: 8px;
  }

  .story-slide-copy h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .story-slide-copy p {
    max-width: 270px;
    font-size: 0.92rem;
    line-height: 1.32;
  }

  .story-viewer-nav {
    bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .story-viewer-footer {
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
  }

  .story-viewer-cta {
    min-height: 52px;
    font-size: 1rem;
  }
}
