:root {
  --bg: #f3ede3;
  --bg-strong: #faf5ec;
  --panel: rgba(250, 245, 236, 0.58);
  --panel-strong: rgba(255, 251, 246, 0.9);
  --text: #241d18;
  --muted: #726658;
  --line: rgba(109, 76, 22, 0.1);
  --gold: #cfaa58;
  --gold-deep: #8b5a14;
  --gold-soft: rgba(214, 169, 61, 0.1);
  --shadow: 0 24px 60px rgba(45, 29, 11, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 169, 61, 0.1), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(120, 77, 18, 0.08), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(214, 169, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf6ef 0%, #f4eadb 52%, #eee1cd 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: 110px;
  right: -40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 169, 61, 0.12), transparent 60%);
  filter: blur(26px);
}

body::after {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 74%);
  opacity: 0.12;
  filter: none;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.preview-dialog__content h3 {
  font-family: "Cormorant Garamond", serif;
}

.site-shell {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
  padding: 18px 0 42px;
  position: relative;
  z-index: 1;
}

.topbar,
.hero__copy,
.hero__brand-card,
.controls__panel,
.feature-card,
.section-card,
.catalog-card,
.step,
.footer,
.preview-dialog__panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(110%);
}

.topbar,
.hero__copy,
.hero__brand-card,
.controls__panel,
.feature-card,
.section-card,
.catalog-card,
.step,
.footer,
.preview-dialog__content {
  padding: 24px;
}

.topbar,
.hero__copy,
.hero__brand-card,
.controls__panel,
.feature-card,
.section-card,
.catalog-card,
.step,
.footer,
.preview-dialog__panel {
  border-radius: var(--radius-xl);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 20;
  margin-bottom: 24px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.82), rgba(246, 237, 224, 0.7)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.08), transparent 42%);
  border-color: rgba(139, 90, 20, 0.14);
}

.brand img {
  width: 194px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  box-shadow:
    inset 0 0 0 1px rgba(214, 169, 61, 0.14),
    0 12px 30px rgba(69, 45, 14, 0.08);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav__link {
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-weight: 700;
  position: relative;
}

.nav__link.is-active,
.nav__link:hover {
  background: var(--gold-soft);
  color: var(--gold-deep);
}

.topbar__cta {
  white-space: nowrap;
}

.hero {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.hero--home {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  min-height: 70vh;
}

.hero--inner {
  grid-template-columns: 1fr;
}

.hero__copy--wide {
  padding: 48px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(252, 247, 240, 0.72), rgba(245, 235, 220, 0.62)),
    radial-gradient(circle at top right, rgba(214, 169, 61, 0.1), transparent 34%);
}

.hero__brand-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.hero__brand-card--home {
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.76), rgba(244, 235, 221, 0.7)),
    radial-gradient(circle at top, rgba(214, 169, 61, 0.12), transparent 32%);
}

.hero__copy::before,
.hero__brand-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 43, 0.12), transparent 65%);
  pointer-events: none;
}

.eyebrow,
.section-label,
.catalog-card__page {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(214, 169, 61, 0.14);
  color: #9a6717;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 0.92;
  max-width: 12ch;
  letter-spacing: -0.04em;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero__text,
.brand-note,
.feature-card p,
.section-card p,
.step p,
.catalog-card__description,
.empty-state,
.footer p,
.preview-dialog__content p {
  color: var(--muted);
  line-height: 1.65;
}

.hero__actions,
.catalog-card__actions,
.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.filter-button:hover,
.catalog-card:hover,
.feature-card:hover,
.section-card:hover {
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(71, 46, 15, 0.08);
}

.button--primary {
  background: linear-gradient(135deg, #7b4b11, #d7a63c 58%, #f1cc69 100%);
  color: #fffdf7;
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.72);
}

.button--full {
  width: 100%;
}

.detail-list {
  margin: 26px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.section {
  padding-top: 34px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  max-width: 720px;
}

.feature-grid,
.grid,
.steps,
.section--split {
  display: grid;
  gap: 20px;
}

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

.feature-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.78), rgba(244, 233, 218, 0.72)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 40%);
}

.feature-card--large {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats-grid,
.testimonial-grid,
.best-seller-strip {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.testimonial-card,
.best-seller-pill {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.78), rgba(244, 233, 218, 0.72)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 40%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(120%);
}

.stat-card {
  display: grid;
  gap: 10px;
}

.stat-card strong {
  font-size: 1.08rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-grid,
.best-seller-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.testimonial-card {
  display: grid;
  gap: 14px;
}

.testimonial-card__quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.best-seller-pill {
  display: grid;
  gap: 10px;
  text-align: left;
  padding: 18px 20px;
}

.best-seller-pill strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 0.98;
}

.best-seller-pill span:last-child {
  color: var(--muted);
}

.best-seller-pill__label,
.catalog-card__badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(123, 75, 17, 0.12);
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card::after,
.section-card::after,
.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(138, 93, 22, 0.92), rgba(199, 154, 43, 0.3));
}

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

.section-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(252, 247, 240, 0.74), rgba(246, 238, 226, 0.68)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.08), transparent 38%);
}

.section-card--accent {
  background:
    linear-gradient(180deg, rgba(254, 249, 241, 0.78), rgba(247, 236, 219, 0.72)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.12), transparent 45%);
}

.testimonial-card {
  gap: 16px;
}

.testimonial-card strong {
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
}

.controls__panel {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.8), rgba(246, 235, 219, 0.74)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 36%);
}

.search input {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0 18px;
  font: inherit;
  background: rgba(255, 250, 243, 0.74);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.58);
}

.filter-button.is-active {
  background: var(--text);
  color: #fff;
}

.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 24px;
}

.catalog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.82), rgba(245, 233, 217, 0.76)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 40%);
}

.catalog-card__image {
  aspect-ratio: 1.35 / 1;
  width: 100%;
  object-fit: cover;
  background: white;
  border-bottom: 1px solid rgba(119, 92, 44, 0.08);
}

.catalog-card__body {
  padding: 18px;
}

.catalog-card__badge {
  margin-bottom: 14px;
}

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

.catalog-card__category {
  color: var(--gold-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-card__title {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.catalog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.catalog-card__tag {
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 249, 241, 0.66);
  color: #7a674f;
  font-size: 0.78rem;
  border: 1px solid rgba(214, 169, 61, 0.14);
}

.catalog-card__actions .button {
  flex: 1 1 0;
}

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

.steps--stacked {
  grid-template-columns: 1fr;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.78), rgba(244, 232, 216, 0.72)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 36%);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 20px 0 10px;
}

.preview-dialog {
  padding: 0;
  border: 0;
  background: transparent;
  width: min(calc(100% - 20px), 1200px);
  max-height: calc(100vh - 32px);
  margin: auto;
  overflow: hidden;
}

.preview-dialog::backdrop {
  background: rgba(21, 16, 8, 0.62);
}

.preview-dialog__panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.84), rgba(245, 233, 217, 0.78)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.12), transparent 42%);
  max-height: calc(100vh - 32px);
  height: calc(100vh - 32px);
}

.preview-dialog__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.preview-dialog__backdrop {
  display: contents;
}

.preview-dialog__content {
  overflow: auto;
  overscroll-behavior: contain;
}

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

.dialog-header .section-label {
  margin: 0;
}

.preview-dialog__close {
  position: static;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.95);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.order-dialog__panel {
  grid-template-columns: 1fr;
  width: min(100%, 860px);
  margin-inline: auto;
  height: auto;
  max-height: calc(100vh - 32px);
}

.order-dialog__content {
  padding: 28px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  overscroll-behavior: contain;
}

.order-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.74);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  resize: vertical;
}

.field textarea {
  min-height: 120px;
}

.order-form__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.order-form__hint {
  margin: 0;
  max-width: 420px;
  text-align: right;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-form__actions--left {
  align-items: flex-start;
}

.order-form__hint--left {
  text-align: left;
}

.success-message {
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(86, 139, 92, 0.2);
  background: rgba(221, 239, 226, 0.88);
  color: #295430;
  font-weight: 700;
}

.reseller-card {
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.82), rgba(245, 233, 217, 0.76)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 40%);
}

.cart-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.82), rgba(245, 233, 217, 0.76)),
    linear-gradient(135deg, rgba(214, 169, 61, 0.1), transparent 40%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cart-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(139, 90, 20, 0.92), rgba(214, 169, 61, 0.3));
}

.cart-panel__header,
.cart-panel__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-empty,
.cart-count {
  color: var(--muted);
}

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

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.54);
  border: 1px solid rgba(214, 169, 61, 0.14);
}

.cart-item__content {
  display: grid;
  gap: 6px;
}

.cart-item__content strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 0.95;
}

.cart-item__content span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floating-cart-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #7b4b11, #d7a63c 58%, #f1cc69 100%);
  color: #fffdf7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 22px 40px rgba(71, 46, 15, 0.22);
  transition: transform 160ms ease, opacity 160ms ease;
}

.floating-cart-button:hover {
  transform: translateY(-2px);
}

.floating-cart-button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.floating-cart-button__count {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.floating-cart-button.is-active {
  animation: cartPulse 2.8s ease-in-out infinite;
}

.floating-support {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 29;
  display: grid;
  gap: 10px;
}

.floating-support__button {
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(71, 46, 15, 0.16);
}

.floating-support__button--whatsapp {
  background: linear-gradient(135deg, #7b4b11, #d7a63c 58%, #f1cc69 100%);
  color: #fffdf7;
}

.floating-support__button--instagram {
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  color: var(--text);
}

@keyframes cartPulse {
  0%,
  100% {
    box-shadow: 0 22px 40px rgba(71, 46, 15, 0.22);
  }
  50% {
    box-shadow: 0 26px 54px rgba(71, 46, 15, 0.34);
  }
}

.brand-logo--hero {
  width: min(100%, 280px);
  padding: 14px 18px;
  margin: 0;
  align-self: flex-start;
  box-shadow: inset 0 0 0 1px rgba(199, 154, 43, 0.12);
}

.brand-pill-list,
.luxury-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-pill-list span,
.luxury-strip span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 243, 0.56);
  border: 1px solid rgba(214, 169, 61, 0.18);
  color: #8f5d15;
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.luxury-strip {
  margin-bottom: 22px;
}

.luxury-strip--hero {
  margin-top: 22px;
  margin-bottom: 0;
}

.section-card .button,
.feature-card .button {
  margin-top: auto;
}

.section-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .topbar,
  .hero--home,
  .feature-grid,
  .stats-grid,
  .testimonial-grid,
  .best-seller-strip,
  .grid,
  .steps,
  .section--split,
  .preview-dialog__panel {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: flex-start;
  }

  h1 {
    max-width: 100%;
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--container));
    padding-top: 12px;
  }

  .topbar,
  .hero__copy,
  .hero__brand-card,
  .controls__panel,
  .feature-card,
  .section-card,
  .step,
  .footer,
  .preview-dialog__content {
    padding: 20px;
  }

  .catalog-card__actions {
    flex-direction: column;
  }

  .brand img {
    width: 152px;
  }

  .brand-logo--hero {
    width: min(100%, 220px);
  }

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

  .cart-panel__header,
  .cart-panel__footer,
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item__actions {
    width: 100%;
  }

  .floating-cart-button {
    right: 16px;
    bottom: 16px;
  }

  .floating-support {
    left: 16px;
    bottom: 16px;
  }
}
