:root {
  --bg: #ffffff;
  --surface: #f5f4f1;
  --surface-strong: #ebe8e2;
  --text: #171717;
  --muted: #62605c;
  --border: #dedbd4;
  --accent: #274c38;
  --accent-wine: #7c1724;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.08);
  --radius: 8px;
  --max: 1180px;
}

.profile-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-modal h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.profile-modal p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.profile-form .wide {
  grid-column: 1 / -1;
}

.profile-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.profile-form input,
.profile-form textarea {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}

.profile-form textarea {
  min-height: 84px;
  padding: 10px 12px;
  resize: vertical;
}

.social-auth {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.social-auth span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.social-auth button {
  min-height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cart-line-actions button {
  min-height: 30px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #171717;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.notifications-drawer {
  position: fixed;
  right: 18px;
  top: 88px;
  z-index: 68;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(calc(100% + 40px));
  transition: transform 180ms ease;
}

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

.notification-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.notification-item {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.notification-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.chat-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 72;
}

.chat-launcher {
  min-height: 46px;
  padding: 0 18px;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.chat-panel {
  position: absolute;
  left: 0;
  bottom: 58px;
  display: none;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.chat-panel.open {
  display: block;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: #171717;
  color: #fff;
}

.chat-header button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 220px;
  overflow: auto;
  padding: 14px;
}

.chat-messages p {
  margin: 0;
  padding: 10px;
  background: var(--surface);
  border-radius: 6px;
  color: #2f2f2f;
  font-size: 13px;
  line-height: 1.4;
}

.chat-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.chat-options button {
  min-height: 38px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 640px) {
  .account-button {
    display: none;
  }

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

  .profile-form .wide {
    grid-column: auto;
  }

  .notifications-drawer {
    top: 74px;
    right: 14px;
    width: calc(100% - 28px);
  }

  .chat-widget {
    left: 14px;
    bottom: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  line-height: 1;
}

.brand span {
  font-size: 30px;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover {
  background: var(--surface);
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button span {
  position: absolute;
  right: 2px;
  top: 2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  background: var(--accent-wine);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.notify-dot {
  position: absolute;
  right: 2px;
  top: 2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.account-button {
  min-height: 42px;
  padding: 0 14px;
  background: #171717;
  border: 1px solid #171717;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: min(630px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--surface-strong);
}

.hero-section img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--surface-strong) 0%, rgba(235, 232, 226, 0.96) 31%, rgba(235, 232, 226, 0) 58%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.hero-copy h1 {
  margin: 0;
  max-width: 480px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 800;
}

.hero-copy p {
  max-width: 360px;
  margin: 22px 0 0;
  color: #41403c;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #191919;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.button-dark {
  background: #171717;
  color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  color: #171717;
}

.section-block {
  width: min(var(--max), calc(100% - 40px));
  margin: 58px auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-heading h2,
.feature-band h2,
.contact-section h2,
.subpage-hero h1,
.modal-content h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.section-heading p,
.feature-band p,
.contact-section p,
.subpage-hero p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading a,
.back-link {
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.compact-product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.quick-categories a {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.quick-categories a:hover {
  border-color: #171717;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: var(--surface);
  border-radius: var(--radius);
}

.feature-band .button {
  margin-top: 22px;
}

.feature-band img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.offer-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.offer-card img {
  width: 110px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
  border-radius: 6px;
}

.offer-card strong,
.offer-card span {
  display: block;
}

.offer-card span {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.offer-card button {
  min-height: 34px;
  padding: 0 12px;
  background: #171717;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  padding: 36px;
  background: #171717;
  border-radius: var(--radius);
  color: #fff;
}

.contact-section p {
  color: #d8d5ce;
}

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

.contact-list a,
.contact-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-list span {
  color: #c9c6bd;
}

.contact-list strong {
  text-align: right;
}

.catalog-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 38px auto 0;
}

.subpage-hero {
  display: grid;
  gap: 18px;
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--border);
}

.subpage-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
}

.catalog-filter-bar {
  position: sticky;
  top: 74px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.active {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
  padding: 16px 0 32px;
}

.product-card button {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  background: var(--surface);
  border-radius: var(--radius);
}

.product-card strong {
  display: block;
  margin-top: 13px;
  font-size: 16px;
}

.product-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-meta {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.product-meta span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-meta b {
  font-size: 13px;
}

.color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.color-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--swatch);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}

.product-price {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 800;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.42);
}

.modal-backdrop.open {
  display: flex;
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  width: min(860px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-modal,
.preparing-modal {
  position: relative;
  width: min(460px, 100%);
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-modal h2,
.preparing-modal h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.auth-modal p,
.preparing-modal p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 22px 0;
}

.auth-tabs button {
  min-height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.active {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

.auth-modal form {
  display: grid;
  gap: 14px;
}

.auth-modal label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.auth-modal input {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent-wine);
  font-size: 13px;
  font-weight: 700;
}

.orders-list {
  display: grid;
  gap: 12px;
  padding: 20px 0 44px;
}

.order-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.order-row span {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  min-height: 34px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.modal-media {
  background: var(--surface);
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-content {
  padding: 34px;
}

.modal-price {
  margin: 12px 0 0;
  font-size: 28px;
  font-weight: 500;
}

.modal-detail {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.selector-block {
  margin-top: 24px;
}

.selector-block strong {
  display: block;
  margin-bottom: 10px;
}

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

.size-grid button,
.quantity-stepper button,
.quantity-stepper span {
  min-width: 48px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #191919;
  font-weight: 700;
}

.size-grid button.active {
  outline: 2px solid #171717;
  outline-offset: 3px;
}

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

.color-quantity-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.color-quantity-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 38px 42px 38px;
}

.quantity-stepper button,
.quantity-stepper span {
  display: grid;
  min-width: 0;
  place-items: center;
  border-radius: 0;
}

.quantity-stepper button:first-child {
  border-radius: 6px 0 0 6px;
}

.quantity-stepper button:last-child {
  border-radius: 0 6px 6px 0;
}

.add-cart {
  width: 100%;
  margin-top: 26px;
  text-transform: none;
  font-size: 15px;
}

.cart-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: min(390px, calc(100% - 36px));
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 180ms ease;
}

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

.cart-header,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-header button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.cart-lines {
  display: grid;
  gap: 12px;
  max-height: 320px;
  overflow: auto;
  margin: 14px 0;
}

.cart-line {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cart-line span,
.empty-cart,
.cart-total span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.checkout-link {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
  padding: 28px 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-section {
    min-height: 610px;
    align-items: end;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(245, 244, 241, 0.98), rgba(245, 244, 241, 0));
  }

  .hero-section img {
    inset: 0 0 auto 0;
    width: 100%;
    height: 60%;
    object-position: 64% top;
  }

  .hero-copy {
    width: min(100% - 40px, 520px);
    margin: 0 auto 38px;
  }

  .hero-copy h1 {
    max-width: 340px;
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.04;
  }

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

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

  .quick-categories a:last-child {
    grid-column: 1 / -1;
  }

  .feature-band,
  .contact-section,
  .product-modal {
    grid-template-columns: 1fr;
  }

  .modal-media img {
    max-height: 420px;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand span {
    font-size: 25px;
  }

  .section-block,
  .catalog-page {
    width: calc(100% - 28px);
    margin-top: 42px;
  }

  .section-heading {
    display: grid;
    align-items: start;
    max-width: calc(100vw - 28px);
  }

  .section-heading > * {
    min-width: 0;
    max-width: 100%;
  }

  .section-heading p {
    width: 100%;
    max-width: 320px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
    text-align: center;
  }

  .compact-product-row,
  .offer-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

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

  .product-card strong {
    font-size: 14px;
  }

  .product-card span,
  .product-meta b {
    font-size: 12px;
  }

  .feature-band,
  .contact-section {
    padding: 22px 16px;
  }

  .offer-card {
    grid-template-columns: 92px 1fr;
  }

  .offer-card img {
    width: 92px;
  }

  .contact-list a,
  .contact-list p {
    display: grid;
    gap: 6px;
  }

  .contact-list strong {
    text-align: left;
  }

  .catalog-filter-bar {
    top: 66px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .filter-chip {
    white-space: nowrap;
  }

  .subpage-hero h1 {
    font-size: 42px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .product-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: 8px 8px 0 0;
  }

  .auth-modal,
  .preparing-modal {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .modal-content {
    padding: 24px 16px;
  }

  .color-quantity-row {
    grid-template-columns: 20px 1fr;
  }

  .color-quantity-row .quantity-stepper {
    grid-column: 2;
  }

  .order-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
    text-align: center;
  }
}
