:root {
  --bg: #f7f0d8;
  --surface: #fffdf7;
  --surface-2: #f2e7cd;
  --text: #332129;
  --muted: #7d5d47;
  --line: rgba(120, 78, 46, 0.2);
  --brand: #332129;
  --accent: #bb7440;
  --accent-soft: #e8c79d;
  --shadow: 0 16px 40px rgba(51, 33, 41, 0.12);
  --radius: 18px;
  --container: 1280px;
  --header-h: 72px;
  --section-space: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

html.modal-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

button,
input,
select {
  font: inherit;
}

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

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

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 12px 16px;
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 200;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--brand);
  color: #fefbff;
  font-size: 13px;
  padding: 9px 0;
  overflow: hidden;
}

.topbar__inner {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  gap: 40px;
  white-space: nowrap;
  animation: topbar-marquee 28s linear infinite;
}

.topbar__item {
  flex: 0 0 auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes topbar-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(51, 33, 41, 0.14);
}

.header__inner,
.hero__grid,
.footer__grid,
.modal__body,
.cart-item,
.product-panel__grid {
  display: grid;
  gap: 20px;
}

.header__inner {
  min-height: var(--header-h);
  grid-template-columns: 180px 1fr auto;
  align-items: center;
}

.logo img {
  width: auto;
  height: 88px;
  object-fit: contain;
  padding: 15px 0;
}

.nav,
.header__actions,
.hero__actions,
.custom-order__actions,
.hero__mini,
.toolbar,
.filters-row,
.category-tabs,
.swatches-preview,
.info-banner,
.info-banner__group,
.custom-order__highlights,
.footer__social-list,
.footer__contact-list,
.footer__legal-list,
.footer__links,
.product-actions,
.price-row,
.summary-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.nav {
  justify-content: center;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active,
.nav a[aria-current="page"] {
  color: var(--brand);
}

.btn:focus,
.btn:focus-visible,
.icon-btn:focus,
.icon-btn:focus-visible,
.mobile-nav-toggle:focus,
.mobile-nav-toggle:focus-visible,
.close-btn:focus,
.close-btn:focus-visible,
.thumb:focus,
.thumb:focus-visible,
.swatch:focus,
.swatch:focus-visible,
.option-btn:focus,
.option-btn:focus-visible,
.category-tab:focus,
.category-tab:focus-visible,
.js-view-product:focus,
.js-view-product:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(187, 116, 64, 0.24);
}

.header__actions {
  justify-content: flex-end;
}

.icon-btn,
.btn,
.swatch,
.qty button,
.mobile-nav-toggle,
.filter-btn,
.category-carousel__control,
.category-carousel__dot,
.close-btn,
.thumb,
.option-btn,
.link-btn {
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.icon-btn,
.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(51, 33, 41, 0.1);
}

.cart-btn {
  position: relative;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  top: -2px;
  right: -2px;
  padding: 0 4px;
}

.mobile-nav {
  display: none;
  padding-bottom: 16px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.hero,
.section,
.custom-order,
.generic-content {
  padding: var(--section-space) 0;
}

.hero__grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.hero__card,
.hero__side,
.section-card,
.product-card,
.drawer,
.modal__dialog,
.footer,
.faq-card {
  background: var(--surface);
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 4px);
}

.hero__card {
  padding: 34px;
  min-height: 380px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__eyebrow,
.custom-order__eyebrow,
.badge,
.info-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__eyebrow {
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(51, 33, 41, 0.14);
}

.hero h1,
.hero h2,
.custom-order__content h2,
.section__head h2,
.faq-card h2 {
  margin: 18px 0 12px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 500;
}

.hero h1,
.hero h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.section__head h2,
.faq-card h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.hero p,
.section__head p,
.faq-card p,
.footer p,
.footer li,
.footer a,
.custom-order__content p {
  color: var(--muted);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 500;
}

.btn:hover,
.icon-btn:hover,
.mobile-nav-toggle:hover,
.swatch:hover,
.qty button:hover,
.category-carousel__control:hover,
.thumb:hover,
.option-btn:hover {
  transform: translateY(-1px);
}

.btn--primary,
.btn--dark {
  background: var(--brand);
  color: #fff;
}

.btn--light,
.btn--ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero__side,
.faq-card,
.footer,
.section-card {
  padding: 24px;
}

.hero__media {
  aspect-ratio: 4 / 4.3;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ead6bf, #fff7e6);
  border: 1px solid var(--line);
}

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

.hero__media--neutral img {
  object-fit: contain;
  padding: 20px;
}

.stat {
  flex: 1 1 30%;
  min-width: 110px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.stat span,
.muted,
.product-panel__code,
.product-panel__description,
.product-meta-list span,
.category-tab__label,
.footer__meta p {
  color: var(--muted);
}

.section-card {
  padding: 18px;
}

.category-carousel {
  position: relative;
  margin-bottom: 24px;
  padding: 0 44px;
}

.category-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.category-tabs {
  width: max-content;
  min-width: 100%;
  align-items: start;
  gap: 14px;
}

.category-tab {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0;
  flex: 0 0 108px;
  background: transparent;
  color: var(--muted);
  text-align: center;
  scroll-snap-align: start;
}

.category-tab__media {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(#fffdf8, #fffdf8) padding-box, linear-gradient(135deg, #d9c29e, #bb7440) border-box;
  box-shadow: 0 10px 22px rgba(51, 33, 41, 0.14);
  display: grid;
  place-items: center;
}

.category-tab__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tab.active {
  color: var(--brand);
}

.category-tab.active .category-tab__media {
  box-shadow: 0 14px 28px rgba(51, 33, 41, 0.2);
  background: linear-gradient(#fffdf8, #fffdf8) padding-box, linear-gradient(135deg, #332129, #d9c29e) border-box;
}

.category-carousel__control {
  position: absolute;
  top: 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 250, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(51, 33, 41, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  z-index: 2;
}

.category-carousel__control--prev {
  left: 0;
}

.category-carousel__control--next {
  right: 0;
}

.category-carousel__control[disabled] {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.category-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.category-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(120, 78, 46, 0.28);
}

.category-carousel__dot.active {
  width: 28px;
  background: var(--brand);
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #eadcc8;
  cursor: pointer;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(51, 33, 41, 0.14);
  box-shadow: 0 10px 20px rgba(51, 33, 41, 0.12);
  pointer-events: none;
}

.badge--inline {
  position: static;
  top: auto;
  left: auto;
  align-self: flex-start;
}

.product-card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-title,
.cart-item__meta h4,
.product-panel h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

.price {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.price--old {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.swatch-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.12);
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
}

.product-card__actions .btn--ghost,
.product-card__actions .btn--dark {
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1;
}

.product-card__actions .btn--dark {
  min-width: 34px;
}

.custom-order__card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 28px;
  border-radius: calc(var(--radius) + 8px);
  background: url("../img/bg-brown.png") no-repeat top -12px right 210px / 770px auto,
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #332129 0%, #8f5b36 55%, #d08a4e 100%);
  color: #fff;
  box-shadow: 0 20px 44px rgba(51, 33, 41, 0.24);
  overflow: hidden;
}

.custom-order__content {
  display: grid;
  align-content: center;
  gap: 14px;
}

.custom-order__eyebrow,
.custom-order__pill,
.custom-order__actions .btn--light {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.custom-order__content h2,
.custom-order__content p {
  color: #fff;
}

.custom-order__pill {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.custom-order__media {
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.custom-order__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 18px 20px;
  text-align: left;
}

.faq-item__trigger h3 {
  margin: 0;
  font-size: 18px;
}

.faq-item__icon {
  font-size: 28px;
  line-height: 1;
  color: var(--brand);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-item.is-open .faq-item__content {
  max-height: 240px;
}

.faq-item__content-inner {
  padding: 0 20px 20px;
}

.footer__grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.drawer-backdrop,
.modal {
  position: fixed;
  inset: 0;
  background: rgba(19, 12, 14, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 110;
}

.drawer-backdrop.is-open,
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 440px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}

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

.drawer__head,
.drawer__footer,
.modal__head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__head {
  justify-content: flex-end;
}

.drawer__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.drawer__footer .summary-row {
  grid-column: 1 / -1;
}

.drawer__footer .btn {
  min-width: 0;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: -0.01em;
  padding: 12px 10px;
}

.drawer__content {
  overflow: auto;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.close-btn,
.thumb,
.option-btn,
.swatch,
.qty button,
.link-btn {
  background: var(--surface);
}

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.modal {
  overflow-y: auto;
  padding: 32px 16px;
}

.modal__dialog {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.modal__body {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  padding: 24px;
}

.gallery {
  display: grid;
  gap: 16px;
}

.gallery__main {
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border-radius: 22px;
  background: #eadcc8;
}

.gallery__main img,
.gallery__thumbs img,
.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery__thumbs.is-hidden,
.gallery__thumbs:empty {
  display: none;
}

.thumb {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
}

.thumb.active {
  border-color: var(--brand);
}

.product-panel {
  display: grid;
  gap: 20px;
  align-content: start;
}

.product-panel__title-wrap {
  display: grid;
  gap: 10px;
}

.product-panel__price-row {
  gap: 6px;
  align-items: center;
}

#modalPrice {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

#modalOldPrice {
  font-size: 16px;
  line-height: 1;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.swatches,
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(51, 33, 41, 0.12);
  background: var(--swatch-color, #ddd);
}

.swatch.active {
  box-shadow: 0 0 0 3px rgba(51, 33, 41, 0.14);
  border-color: var(--brand);
}

.option-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

#modalSizes .option-btn {
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.1;
  min-width: 44px;
}

.option-btn.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.qty button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.product-meta-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(120, 78, 46, 0.16);
}

.product-meta-list strong {
  color: var(--text);
}

.cart-item {
  grid-template-columns: 88px 1fr;
  align-items: start;
}

.cart-item__media {
  width: 88px;
  height: 108px;
  border-radius: 18px;
  overflow: hidden;
  background: #eadcc8;
}

.cart-item__meta {
  display: grid;
  gap: 10px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 240px;
  text-align: center;
  border: 1px dashed rgba(120, 78, 46, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  padding: 24px;
}

.link-btn {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--accent);
}

.generic-content .section-card {
  margin-top: 24px;
}

.section-card--narrow {
  max-width: 880px;
  margin-inline: auto;
}

@media (max-width: 1200px) {
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {

  .hero__grid,
  .footer__grid,
  .custom-order__card {
    grid-template-columns: 1fr;
  }

  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .logo {
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 78px;
    padding: 10px 0;
  }

  .header__actions {
    gap: 10px;
    flex-wrap: nowrap;
    align-self: center;
  }

  .nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

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

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

@media (min-width: 901px) {
  .mobile-nav-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .product-panel__grid {
    grid-template-columns: 1fr;
  }

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

  .category-carousel {
    padding-inline: 0;
  }

  .category-carousel__control {
    display: none;
  }

  .hero__card,
  .hero__side,
  .faq-card,
  .footer,
  .modal__body,
  .drawer__content,
  .drawer__head,
  .drawer__footer {
    padding: 18px;
  }

  .header__inner {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .logo img {
    height: 63px;
    max-width: 100%;
  }

  .header__actions {
    gap: 8px;
  }

  .icon-btn,
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-card__media {
    aspect-ratio: 4 / 4.7;
    min-height: 0;
    height: auto;
  }

  .product-card__content {
    padding: 14px;
    gap: 8px;
  }

  .product-title {
    font-size: 15px;
  }

  .price {
    font-size: 19px;
  }

  .product-card__actions {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .btn--ghost,
  .btn--dark {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .swatches-preview {
    gap: 6px;
  }

  .swatch-dot {
    width: 15px;
    height: 15px;
  }

  .product-card__actions .btn--ghost,
  .product-card__actions .btn--dark {
    padding-inline: 10px;
    font-size: 11px;
  }

  .gallery__thumbs {
    grid-template-columns: repeat(auto-fit, minmax(74px, 74px));
    gap: 8px;
    justify-content: start;
  }

  .thumb {
    width: 74px;
    aspect-ratio: 1 / 1;
  }

  .drawer__footer {
    align-items: stretch;
  }

  .drawer__footer .btn {
    min-width: 0;
    padding-inline: 12px;
    white-space: nowrap;
    font-size: 12px;
  }

  .product-panel__price-row {
    gap: 4px;
  }

  #modalPrice {
    font-size: 2.2rem;
  }
}