:root {
  --am-font-display: "Plus Jakarta Sans", sans-serif;
  --am-font-body: "Inter", sans-serif;
  --am-bg: #fcf9f8;
  --am-bg-soft: #f6f3f2;
  --am-bg-card: #ffffff;
  --am-text: #1c1b1b;
  --am-text-soft: #5a4136;
  --am-dark: #23201f;
  --am-dark-soft: #383332;
  --am-line: #e2bfb0;
  --am-primary: #a04100;
  --am-accent: #ff6b00;
  --am-accent-text: #572000;
  --am-shadow: 0 22px 48px rgba(28, 27, 27, 0.08);
  --am-shell: min(1280px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--am-bg);
  color: var(--am-text);
  font-family: var(--am-font-body);
  line-height: 1.6;
}

body.has-site-popup {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--am-shell);
  margin: 0 auto;
}

.shell--narrow {
  width: min(720px, calc(100vw - 48px));
}

.section {
  padding: 110px 0;
}

.products-archive-section {
  padding-top: 50px;
}

.section--muted {
  background: var(--am-bg-soft);
}

.section--dark {
  background: var(--am-dark);
  color: #f4efed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid rgba(226, 191, 176, 0.45);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
}

.site-header__left {
  min-width: 0;
  gap: 42px;
}

.site-header__right {
  gap: 24px;
  margin-left: auto;
}

.site-brand,
.site-footer__brand {
  font-family: var(--am-font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 1.7rem;
}

.site-brand.is-active,
.site-nav__link.is-active {
  color: var(--am-primary);
}

.site-menu-panel {
  display: block;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav__link {
  font-family: var(--am-font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--am-text-soft);
  transition: color 0.25s ease;
}

.site-nav__link:hover,
.site-actions__item:hover,
.site-actions__icon:hover,
.inline-link:hover {
  color: var(--am-primary);
}

.site-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-actions__item {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--am-text-soft);
}

.site-actions__icon {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--am-text);
  cursor: pointer;
  transition: color 0.25s ease;
}

.site-actions__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-actions__badge {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--am-accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
  transform: translate(34%, -24%);
}

.site-account-menu {
  position: relative;
  display: inline-flex;
}

.site-account-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  min-width: 168px;
  padding: 8px 0;
  border: 1px solid rgba(226, 191, 176, 0.55);
  background: #fff;
  box-shadow: 0 16px 36px rgba(28, 27, 27, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-account-menu__dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
}

.site-account-menu:hover .site-account-menu__dropdown,
.site-account-menu:focus-within .site-account-menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-account-menu__dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--am-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-account-menu__dropdown a:hover {
  background: var(--am-bg-soft);
  color: var(--am-primary);
}

.site-search {
  position: relative;
  flex: 0 1 320px;
  min-width: 260px;
}

.site-search input {
  width: 100%;
  height: 44px;
  padding: 0 18px 0 48px;
  border: 1px solid rgba(160, 65, 0, 0.34);
  border-radius: 999px;
  background: #fff;
  color: var(--am-text);
  outline: 0;
}

.site-search input:focus {
  border-color: var(--am-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.site-search button {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-search button span {
  position: absolute;
  left: 17px;
  top: 12px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--am-accent);
  border-radius: 999px;
}

.site-search button span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  background: var(--am-accent);
  transform: rotate(45deg);
  transform-origin: center;
}

.site-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--am-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.is-site-menu-open .site-menu-toggle > span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.is-site-menu-open .site-menu-toggle > span:nth-child(3) {
  opacity: 0;
}

.is-site-menu-open .site-menu-toggle > span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--am-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ffb98e;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 18, 0.72), rgba(20, 18, 18, 0.26));
}

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

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  color: #fff;
}

.hero__content--narrow {
  max-width: 720px;
}

.hero__content h1,
.archive-hero h1,
.copy-block h2,
.section-heading h2,
.product-summary h1,
.content-shell h1 {
  margin: 0;
  font-family: var(--am-font-display);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero__content h1 {
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  max-width: 950px;
}

.hero__content p,
.archive-hero p,
.copy-block p,
.content-shell p,
.contact-layout__left p {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero__actions,
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-family: var(--am-font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button--primary {
  background: var(--am-accent);
  color: var(--am-accent-text);
  cursor: pointer;
}

.button--dark {
  background: var(--am-dark);
  color: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.inline-link {
  display: inline-block;
  font-family: var(--am-font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inline-link--light {
  color: #fff;
}

.section-heading,
.archive-toolbar,
.archive-toolbar--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading h2,
.archive-hero h1,
.copy-block h2,
.product-summary h1,
.content-shell h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.product-summary h1 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card,
.consult-card,
.product-card,
.case-card,
.feature-card,
.testimonial-card,
.contact-map__card,
.detail-panel,
.cta-panel,
.content-shell,
.archive-entry {
  box-shadow: var(--am-shadow);
}

.category-card,
.consult-card {
  min-height: 320px;
}

.category-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background: var(--am-bg-card);
}

.category-card--wide {
  grid-column: span 8;
}

.category-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.category-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(17, 15, 15, 0.72));
}

.category-card__overlay h3,
.consult-card h3,
.product-card h2,
.case-card h2,
.case-card h3,
.feature-card h3,
.testimonial-card h3,
.contact-details h2,
.cta-panel h2 {
  margin: 0 0 8px;
  font-family: var(--am-font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.category-card__overlay h3 {
  font-size: 2rem;
}

.consult-card {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: var(--am-bg-soft);
}

.consult-card p {
  max-width: 460px;
}

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

.product-card,
.case-card {
  background: var(--am-bg-card);
  overflow: hidden;
}

.product-card__media,
.case-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--am-bg-soft);
}

.product-card__media img,
.case-card__media img,
.product-gallery__hero img,
.product-gallery__thumb img,
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media img {
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  background: var(--am-accent);
  color: var(--am-accent-text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--am-primary);
}

.product-card__body,
.case-card__body {
  padding: 24px;
}

.product-card__collection,
.case-card__meta,
.price,
.detail-panel strong,
.contact-details strong,
.footer-heading,
.feature-card span,
.testimonial-card span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__collection,
.case-card__meta,
.testimonial-card span {
  color: var(--am-text-soft);
}

.product-card__body p,
.case-card__body p,
.feature-card p,
.contact-details p,
.site-footer__copy,
.footer-payments {
  color: var(--am-text-soft);
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product-card__meta--stack {
  flex-direction: column;
  align-items: flex-start;
}

.archive-layout .product-card__body {
  padding: 0 16px 20px;
}

.archive-layout .product-card__name {
  display: block;
  margin: 0 0 5px;
  color: var(--am-text-soft);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.25;
}

.archive-layout .product-card__body h2 {
  margin: 0 0 7px;
  font-size: 1.32rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.archive-layout .product-card__body p {
  margin: 0;
  color: var(--am-text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

.archive-layout .product-card__feature {
  display: block;
  margin-top: 7px;
  color: var(--am-text-soft);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.archive-layout .product-card__meta {
  display: none;
}

.price {
  color: var(--am-primary);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.14), rgba(90, 65, 54, 0.08)),
    linear-gradient(180deg, #f2ece9, #ddd4cf);
  color: var(--am-text);
}

.product-placeholder strong {
  font-family: var(--am-font-display);
  font-size: 1.5rem;
  line-height: 1.1;
}

.product-placeholder span,
.product-placeholder em {
  margin-top: 10px;
  color: var(--am-text-soft);
}

.product-placeholder--detail {
  min-height: 560px;
  align-items: flex-start;
}

.craftsmanship {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.craftsmanship__media {
  position: absolute;
  inset: 0;
}

.craftsmanship__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 18, 0.72);
}

.craftsmanship__media img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.craftsmanship__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.craftsmanship__content h2 {
  margin: 0 0 16px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-family: var(--am-font-display);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.masonry-grid {
  columns: 3 300px;
  column-gap: 28px;
}

.case-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 28px;
}

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

.testimonial-card {
  padding: 36px;
  background: var(--am-bg-card);
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.05rem;
  font-style: italic;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split-layout--wide {
  grid-template-columns: 1fr 1fr;
}

.image-stack,
.image-card,
.metric-panel {
  position: relative;
}

.image-stack img,
.image-card img,
.metric-panel img {
  min-height: 520px;
  object-fit: cover;
}

.stat-card,
.floating-metric,
.metric-panel__box {
  position: absolute;
  background: var(--am-bg-card);
  box-shadow: var(--am-shadow);
}

.stat-card {
  right: -22px;
  bottom: -22px;
  padding: 20px 22px;
}

.stat-card strong,
.floating-metric strong,
.metric-panel__box strong {
  display: block;
  font-family: var(--am-font-display);
  font-size: 2rem;
  font-weight: 800;
}

.floating-metric {
  left: -24px;
  bottom: -24px;
  padding: 24px;
  border-left: 8px solid var(--am-accent);
}

.metric-panel {
  overflow: hidden;
  min-height: 480px;
}

.metric-panel__box {
  inset: auto auto 40px 40px;
  padding: 28px 30px;
}

.copy-block h2 {
  margin-bottom: 18px;
}

.copy-block--centered h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.copy-block--centered > * {
  margin-left: auto;
  margin-right: auto;
}

.detail-list,
.spec-list,
.city-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list {
  display: grid;
  gap: 22px;
}

.detail-list li,
.spec-list li,
.city-list li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(226, 191, 176, 0.5);
}

.detail-list strong,
.spec-list strong {
  font-family: var(--am-font-display);
}

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

.feature-card {
  padding: 30px;
  background: var(--am-bg-card);
}

.feature-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.feature-card--large img {
  margin-top: 24px;
  height: 260px;
  object-fit: cover;
}

.feature-card--dark {
  background: var(--am-dark);
  color: #fff;
}

.feature-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card--horizontal {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
}

.feature-card--horizontal img {
  height: 220px;
  object-fit: cover;
}

.archive-hero {
  padding: 150px 0 54px;
}

.archive-hero--shop {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 230px 0 150px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.74), rgba(16, 20, 24, 0.28)),
    linear-gradient(180deg, rgba(16, 20, 24, 0.18), rgba(16, 20, 24, 0.42)),
    url('../images/shop-banner-bathroom.jpg') center/cover no-repeat;
  color: #fff;
}

.archive-hero--shop .shell {
  position: relative;
  z-index: 1;
}

.archive-hero--shop .eyebrow,
.archive-hero--shop p {
  color: rgba(255, 255, 255, 0.84);
}

.archive-hero--shop h1 {
  color: #fff;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.archive-toolbar--end {
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
}

.archive-search-label {
  color: var(--am-text-soft);
  font-size: 0.9rem;
}

.archive-control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 0 26px;
}

.archive-sort-form,
.archive-per-page {
  display: flex;
  align-items: center;
  gap: 10px;
}

.archive-control-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.archive-sort-form label,
.archive-per-page span {
  color: var(--am-text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-sort-form select {
  appearance: none;
  min-width: 210px;
  height: 42px;
  padding: 0 52px 0 14px;
  border: 1px solid rgba(90, 65, 54, 0.2);
  border-radius: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231c1b1b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  color: var(--am-text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}

.archive-per-page {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.archive-per-page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-width: 28px; */
  /* height: 28px; */
  /* border: 1px solid rgba(90, 65, 54, 0.18); */
  /* background: #fff; */
  color: var(--am-text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.archive-per-page a:hover,
.archive-per-page a.is-active {
  /* border-color: var(--am-primary);
  background: var(--am-primary); */
  color: var(--am-primary);
  text-decoration: underline;
}

.archive-control-actions .archive-clear-link--inline {
  display: inline-flex;
  align-items: center;
  min-width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--am-primary);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.archive-control-actions .archive-clear-link--inline:hover {
  border-color: transparent;
  background: transparent;
  color: var(--am-primary);
  text-decoration: underline;
}

.archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
}

.filter-panel {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 28px;
  background: var(--am-bg-card);
  box-shadow: var(--am-shadow);
}

.filter-group + .filter-group {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 191, 176, 0.45);
}

.filter-group h2 {
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--am-text-soft);
}

.filter-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.filter-link,
.archive-clear-link {
  color: inherit;
  text-decoration: none;
}

.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(226, 191, 176, 0.4);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-link span {
  font-weight: 600;
}

.filter-link em {
  font-style: normal;
  color: var(--am-text-soft);
}

.filter-link:hover,
.filter-link.is-active {
  background: #efe3db;
  border-color: rgba(196, 124, 88, 0.45);
}

.archive-clear-link {
  font-size: 0.9rem;
  color: var(--am-primary);
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(226, 191, 176, 0.5);
  background: var(--am-bg-card);
  color: inherit;
  text-decoration: none;
}

.archive-pagination .page-numbers.current {
  border-color: rgba(196, 124, 88, 0.45);
  background: #efe3db;
}

.finish-swatches {
  display: flex;
  gap: 14px;
}

.finish-swatches span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-detail {
  padding: 132px 0 96px;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: start;
}

.product-gallery__hero {
  position: relative;
  display: grid;
  aspect-ratio: 5/4;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--am-bg-soft);
  max-height: 600px;
}

.product-gallery__lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery__slide {
  grid-area: 1 / 1;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.product-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.product-gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 600px;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 54px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--am-primary);
  cursor: pointer;
  font-family: var(--am-font-display);
  font-size: 1.7rem;
  font-weight: 800;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease;
}

.product-gallery__nav:hover {
  background: var(--am-primary);
  color: #fff;
}

.product-gallery__nav--prev {
  left: 14px;
}

.product-gallery__nav--next {
  right: 14px;
}

.product-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 5px 10px;
  background: rgba(28, 27, 27, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-gallery__thumb {
  flex: 0 0 88px;
  width: 88px;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.product-gallery__thumb.is-active {
  border-color: var(--am-primary);
}

.product-gallery__thumb:not(.is-active) {
  opacity: 0.68;
}

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

.product-summary {
  position: sticky;
  top: 108px;
  min-width: 0;
}

.product-summary__meta,
.detail-panel {
  display: grid;
  gap: 14px;
}

.product-summary__meta {
  margin: 22px 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip-list span {
  padding: 8px 14px;
  background: rgba(255, 107, 0, 0.12);
  color: var(--am-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-box-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 24px;
}

.summary-box {
  min-width: 0;
  padding: 22px;
  background: var(--am-bg-card);
  box-shadow: var(--am-shadow);
}

.summary-box--price {
  margin: 0;
  background: #ebe6e2;
}

.summary-box--stock {
  background: #ebe6e2;
}

.summary-box__label {
  display: block;
  margin-bottom: 10px;
  color: var(--am-text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-box strong {
  font-family: var(--am-font-display);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-details-see-all,
.product-details-sheet {
  display: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 28px;
  background: rgba(18, 16, 14, 0.88);
}

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

.has-product-lightbox {
  overflow: hidden;
}

.product-lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.product-lightbox__image {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 130px);
  object-fit: contain;
  background: #fff;
}

.product-lightbox__close,
.product-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--am-primary);
  cursor: pointer;
  font-family: var(--am-font-display);
  font-weight: 800;
}

.product-lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
}

.product-lightbox__nav {
  top: 50%;
  width: 46px;
  height: 60px;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.product-lightbox__nav--prev {
  left: 18px;
}

.product-lightbox__nav--next {
  right: 18px;
}

.product-lightbox__caption {
  margin: 18px auto 0;
  max-width: 980px;
  color: #fff;
  text-align: center;
}

.muted-note {
  color: var(--am-text-soft);
  font-size: 0.95rem;
}

.cart-inline-form {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin: 24px 0 18px;
}

.cart-inline-form__qty,
.checkout-form label {
  display: grid;
  gap: 8px;
}

.cart-inline-form__qty span,
.checkout-form label span {
  color: var(--am-text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-inline-form input,
.cart-line__qty input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(90, 65, 54, 0.28);
  background: #fff;
  color: var(--am-text);
}

.cart-page-section {
  padding: 42px 0 96px;
}

.cart-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.cart-customer-message {
  display: grid;
  gap: 20px;
  color: #000;
  font-size: 1.05rem;
  line-height: 1.55;
}

.cart-customer-message p {
  margin: 0;
}

.cart-customer-message strong {
  font-weight: 800;
}

.cart-customer-message__accent {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.12em;
}

.cart-customer-message__balance,
.account-summary__balance {
  color: #f05a24 !important;
  font-weight: 900;
}

.cart-card,
.commerce-notice,
.empty-state {
  padding: 28px;
  background: var(--am-bg-card);
  box-shadow: var(--am-shadow);
}

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

.cart-card__head h2 {
  margin: 0;
  font-size: 1.4rem;
}

.cart-items-card {
  width: 100%;
}

.cart-clear-form,
.cart-order-form {
  margin: 0;
}

.cart-order-form {
  position: relative;
}

.cart-order-form__default-submit {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cart-mobile-list,
.cart-mobile-order-total,
.cart-submit-mobile {
  display: none;
}

.cart-table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  color: var(--am-text);
  font-size: 0.88rem;
}

.cart-table__col-no {
  width: 58px;
}

.cart-table__col-brand {
  width: 88px;
}

.cart-table__col-part {
  width: 190px;
}

.cart-table__col-image {
  width: 72px;
}

.cart-table__col-qty,
.cart-table__col-price,
.cart-table__col-amount {
  width: 122px;
}

.cart-table__col-delete {
  width: 112px;
}

.cart-table th,
.cart-table td {
  padding: 16px 12px;
  border: 1px solid rgba(201, 177, 164, 0.46);
  vertical-align: middle;
}

.cart-table th {
  background: #eef3f4;
  color: #3b3f40;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.cart-table tbody tr:nth-child(even) {
  background: rgba(248, 244, 239, 0.58);
}

.cart-table tfoot td {
  background: #fff;
  font-size: 1rem;
}

.cart-table__index {
  text-align: center;
}

.cart-table__cell--qty,
.cart-table__cell--price,
.cart-table__cell--amount,
.cart-table__subtotal-qty,
.cart-table__subtotal-amount {
  text-align: right;
}

.cart-table__cell--qty .cart-table__qty {
  margin-left: auto;
  text-align: right;
}

.cart-table__thumb {
  display: block;
  width: 32px;
  height: auto;
  margin: 0 auto;
  background: transparent;
  overflow: visible;
}

.cart-table__thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cart-table__description {
  min-width: 320px;
  line-height: 1.45;
}

.cart-table__qty {
  width: 78px;
  min-height: 40px;
  padding: 6px 8px;
  border: 1px solid rgba(201, 177, 164, 0.8);
  background: #fff;
  text-align: center;
}

.checkout-form .cart-table__qty {
  width: 78px;
  padding: 6px 8px;
  border: 1px solid rgba(201, 177, 164, 0.8);
}

.cart-table__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: var(--am-primary);
  color: #fff;
  cursor: pointer;
  font-family: var(--am-font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-table__button--ghost {
  background: #eef2f3;
  color: var(--am-primary);
}

.cart-table__delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid #c84b4b;
  border-radius: 50%;
  background: #fff;
  color: #c84b4b;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
}

.cart-table__delete span {
  transform: translateY(-1px);
}

.cart-table td::before {
  content: none;
}

.cart-table__subtotal-label {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
}

.cart-table__subtotal-qty,
.cart-table__subtotal-amount {
  font-size: 1.05rem;
  font-weight: 800;
}

.checkout-form .cart-remark-field {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 10px 26px;
  border-right: 1px solid rgba(201, 177, 164, 0.46);
  border-bottom: 1px solid rgba(201, 177, 164, 0.46);
  border-left: 1px solid rgba(201, 177, 164, 0.46);
}

.checkout-form .cart-remark-field span {
  flex: 0 0 auto;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-form .cart-remark-field textarea {
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  outline: none;
  resize: vertical;
}

.checkout-form .cart-remark-field textarea:focus {
  outline: none;
  box-shadow: none;
}

.cart-items-card .checkout-form__submit {
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
}

.commerce-notice {
  border-left: 6px solid var(--am-accent);
}

.commerce-notice__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 0 18px;
  background: var(--am-accent);
  color: var(--am-accent-text);
  font-family: var(--am-font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commerce-notice--error {
  border-left-color: #c54b36;
}

.commerce-notice--success {
  border-left-color: #2f7d5d;
}

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

.checkout-form__full {
  grid-column: 1 / -1;
}

.checkout-form__submit {
  width: 100%;
  margin-top: 20px;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.site-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.66);
  backdrop-filter: blur(8px);
}

.site-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 40px));
}

.site-popup__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.site-popup__media {
  min-height: 100%;
}

.site-popup__card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.site-popup__link {
  display: block;
  height: 100%;
}

.site-popup__content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 56px 46px 46px;
}

.site-popup__eyebrow {
  margin: 0;
  color: var(--am-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-popup__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.site-popup__content p:last-of-type {
  margin: 0;
  color: var(--am-text-soft);
}

.site-popup__cta {
  width: fit-content;
}

.site-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.82);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.product-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: var(--am-bg-card);
  box-shadow: var(--am-shadow);
}

.product-data-table th,
.product-data-table td {
  padding: 14px 18px;
  border: 1px solid rgba(226, 191, 176, 0.5);
  text-align: left;
  vertical-align: top;
}

.product-data-table th {
  width: 18%;
  color: var(--am-text-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.payload-preview {
  height: 100%;
  min-height: 420px;
  margin: 0;
  padding: 24px;
  overflow: auto;
  background: #201d1c;
  color: #f6f1ef;
  font-size: 0.78rem;
  line-height: 1.5;
}

.detail-panel {
  margin-top: 28px;
  padding: 24px;
  background: var(--am-bg-card);
}

.detail-panel div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.editorial-copy > *:first-child {
  margin-top: 0;
}

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

.gallery-strip__item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.auth-page {
  min-height: calc(100vh - 84px);
  padding: 72px 0 110px;
}

.auth-shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  background: var(--am-bg-card);
  box-shadow: var(--am-shadow);
  overflow: hidden;
}

.auth-panel {
  padding: 56px 52px;
}

.auth-panel--visual {
  background:
    linear-gradient(140deg, rgba(18, 22, 25, 0.78), rgba(18, 22, 25, 0.42)),
    url('../images/popup-bathroom-offer-v2.jpg') center/cover no-repeat;
  color: #fff;
  min-height: 520px;
  display: grid;
  align-content: end;
}

.auth-panel--visual .eyebrow,
.auth-panel--visual p {
  color: rgba(255, 255, 255, 0.84);
}

.auth-panel--visual h1 {
  color: #fff;
  margin-bottom: 14px;
}

.auth-panel--form {
  display: grid;
  align-content: center;
  gap: 24px;
}

.auth-panel--form h2 {
  margin: 0;
}

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

.auth-form label {
  display: grid;
  gap: 8px;
}

.auth-form label span {
  color: var(--am-text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(90, 65, 54, 0.28);
  background: #fff;
  color: var(--am-text);
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.inline-link {
  color: var(--am-primary);
  font-weight: 700;
}

.auth-form__check {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.auth-form__check span {
  font-size: 0.95rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.account-shell {
  align-items: stretch;
}

.account-panel {
  align-content: start;
}

.account-card {
  display: grid;
  gap: 20px;
  padding: 28px 30px;
  border: 1px solid rgba(226, 191, 176, 0.45);
  background: #fff;
}

.account-card h3 {
  margin: 0;
}

.account-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 0;
}

.account-summary div {
  display: grid;
  gap: 6px;
}

.account-summary dt {
  color: var(--am-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-summary dd {
  margin: 0;
  color: var(--am-text);
  font-size: 1rem;
  font-weight: 700;
  word-break: break-word;
}

.archive-intro-content {
  margin-bottom: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 84px);
}

.contact-layout--single {
  grid-template-columns: 1fr;
  min-height: auto;
}

.contact-layout__left {
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.contact-layout__right {
  background: var(--am-bg-soft);
}

.contact-map {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.contact-map__card {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: min(320px, calc(100% - 80px));
  padding: 26px;
  background: var(--am-dark);
  color: #fff;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: calc(100% - 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 42px 64px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.82rem;
  color: var(--am-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(90, 65, 54, 0.28);
  background: transparent;
  padding: 16px 0;
  color: var(--am-text);
}

.form-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  font-size: 0.95rem;
}

.form-notice--success {
  background: rgba(36, 135, 84, 0.12);
  color: #175939;
}

.form-notice--error {
  background: rgba(170, 57, 24, 0.12);
  color: #8e3214;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  padding: 90px 0 32px;
  background: var(--am-dark);
  color: #f3eeeb;
}

.footer-grid {
  display: block;
}

.site-footer__copy {
  max-width: 320px;
}

.footer-heading {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-payments,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.content-shell,
.archive-entry {
  padding: 32px;
  background: var(--am-bg-card);
}

@media (max-width: 1080px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-header__left {
    gap: 24px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-search {
    flex-basis: 260px;
    min-width: 220px;
  }

  .card-grid,
  .testimonial-grid,
  .gallery-strip,
  .contact-details,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-layout,
  .cart-layout,
  .auth-shell,
  .product-detail__layout,
  .split-layout,
  .feature-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout--single {
    width: 100%;
  }

  .contact-details {
    width: calc(100% - 32px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .filter-panel,
  .product-summary {
    position: static;
  }

  .feature-card--large,
  .feature-card--horizontal,
  .category-card,
  .category-card--wide,
  .consult-card {
    grid-column: auto;
    grid-row: auto;
  }
}
.flex{
  display: flex;
}
.items-center{
  align-items: center;
}
.justify-between{
  justify-content: space-between;
}
@media (max-width: 780px) {
  :root {
    --am-shell: min(1280px, calc(100vw - 28px));
  }


  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr 42px;
    min-height: 70px;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header__left,
  .site-header__right {
    display: contents;
  }

  .site-brand {
    display: none;
  }

  .site-search {
    display: block;
    min-width: 0;
    width: 100%;
    grid-column: 1;
    grid-row: 1;
  }

  .site-search input {
    height: 44px;
    padding-left: 48px;
  }

  .site-menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .site-menu-panel {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 12px 0 8px;
    border-top: 1px solid rgba(226, 191, 176, 0.45);
  }

  .is-site-menu-open .site-menu-panel {
    display: grid;
    gap: 14px;
  }

  .site-popup {
    padding: 16px;
  }

  .site-popup__dialog {
    width: min(100%, calc(100vw - 32px));
  }

  .site-popup__card {
    grid-template-columns: 1fr;
  }

  .site-popup__card img {
    min-height: 260px;
  }

  .site-popup__content {
    padding: 28px 22px 24px;
  }

  .site-popup__close {
    top: 10px;
    right: 10px;
  }

  .section-heading,
  .archive-toolbar,
  .archive-toolbar--split,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .archive-control-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .archive-sort-form,
  .archive-per-page,
  .archive-control-actions {
    justify-content: space-between;
  }

  .archive-sort-form select {
    min-width: 0;
    flex: 1;
  }

  .site-nav {
    display: grid;
    gap: 10px;
  }

  .site-actions {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    justify-content: flex-end;
  }

  .is-site-menu-open .site-actions {
    display: flex;
  }

  .section,
  .product-detail {
    padding: 74px 0;
  }

  .products-archive-section {
    padding-top: 30px;
  }
  .product-summary .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .product-summary h1 {
    font-size: clamp(1.28rem, 8vw, 1.9rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .summary-box {
    padding: 14px;
  }

  .summary-box-grid {
    gap: 10px;
  }

  .summary-box__label {
    margin-bottom: 7px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .summary-box strong {
    font-size: clamp(0.88rem, 4.6vw, 1.18rem);
  }

  .summary-box--price strong {
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .product-detail-spec-section {
    display: none;
  }

  .product-details-see-all {
    display: flex;
    width: 100%;
    min-height: 50px;
    margin: 0 0 14px;
    border: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    color: var(--am-text);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .product-details-sheet {
    position: fixed;
    inset: 0;
    z-index: 155;
    display: block;
    pointer-events: none;
  }

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

  .product-details-sheet.is-open {
    pointer-events: auto;
  }

  .product-details-sheet__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(28, 27, 27, 0.2);
    opacity: 0;
    transition: opacity 0.22s ease;
  }

  .product-details-sheet.is-open .product-details-sheet__overlay {
    opacity: 1;
  }

  .product-details-sheet__panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    max-height: min(78vh, 680px);
    flex-direction: column;
    background: #fff;
    box-shadow: 0 -24px 42px rgba(28, 27, 27, 0.14);
    transform: translateY(100%);
    transition: transform 0.26s ease;
  }

  .product-details-sheet.is-open .product-details-sheet__panel {
    transform: translateY(0);
  }

  .product-details-sheet__header {
    position: relative;
    display: flex;
    min-height: 56px;
    border-bottom: 1px solid rgba(226, 191, 176, 0.45);
    align-items: center;
    justify-content: center;
    padding: 0 54px;
  }

  .product-details-sheet__header h2 {
    margin: 0;
    font-family: var(--am-font-display);
    font-size: 1rem;
    font-weight: 800;
  }

  .product-details-sheet__close {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--am-text);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
  }

  .product-details-sheet__body {
    overflow-y: auto;
    padding: 28px 24px 18px;
  }

  .product-details-sheet__body h3 {
    margin: 0 0 18px;
    font-family: var(--am-font-display);
    font-size: 0.95rem;
    font-weight: 800;
  }

  .product-details-list {
    display: grid;
    gap: 12px;
    margin: 0;
  }

  .product-details-list__row {
    display: grid;
    gap: 3px;
  }

  .product-details-list dt {
    color: rgba(90, 65, 54, 0.68);
    font-size: 0.82rem;
  }

  .product-details-list dd {
    margin: 0;
    color: var(--am-text);
    font-size: 0.92rem;
    font-weight: 600;
    overflow-wrap: anywhere;
  }

  .product-details-sheet__footer {
    padding: 12px 24px max(12px, env(safe-area-inset-bottom));
  }

  .product-details-sheet__button {
    width: 100%;
    min-height: 48px;
    border: 0;
    background: var(--am-primary);
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .has-product-details-sheet {
    overflow: hidden;
  }

  .product-lightbox {
    padding: 14px;
  }

  .product-lightbox__image {
    max-height: calc(100vh - 110px);
  }

  .product-lightbox__nav {
    width: 40px;
    height: 52px;
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    padding: 92px 0 72px;
  }

  .archive-hero--shop {
    min-height: 420px;
    padding: 170px 0 96px;
  }

  .auth-page {
    padding: 42px 0 80px;
  }

  .auth-panel {
    padding: 32px 24px;
  }

  .auth-panel--visual {
    min-height: 280px;
  }

  .account-card {
    padding: 24px 22px;
  }

  .account-summary {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .testimonial-grid,
  .gallery-strip,
  .contact-details,
  .footer-grid,
  .product-gallery__grid,
  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

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

  .archive-layout .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .archive-layout .product-card__body {
    padding: 10px 4px 0;
  }

  .archive-layout .product-card {
    box-shadow: none;
  }

  .archive-layout .product-card__media {
    aspect-ratio: 1;
  }

  .archive-layout .product-card__media img {
    padding: 0;
  }

  .archive-layout .badge {
    top: 0;
    left: 0;
    min-height: 28px;
    padding: 0 13px;
    color: #111;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .archive-layout .product-card__collection {
    display: none;
  }

  .archive-layout .product-card__name {
    margin-bottom: 4px;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .archive-layout .product-card__body h2 {
    margin: 0 0 5px;
    font-size: 0.98rem;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .archive-layout .product-card__body p {
    margin: 0;
    color: var(--am-text-soft);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .archive-layout .product-card__feature {
    margin-top: 5px;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .archive-layout .product-card__meta {
    display: none;
  }

  .masonry-grid {
    columns: 1;
  }

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

  .cart-card__head {
    flex-direction: row;
    align-items: center;
    margin-bottom: 24px;
  }

  .cart-page-section {
    padding: 24px 0 0;
  }

  .cart-customer-message {
    gap: 20px;
    font-size: 1.08rem;
    line-height: 1.28;
  }

  .cart-items-card {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .cart-card__head {
    margin: 0;
    padding: 20px;
    background: #fff;
  }

  .cart-card__head h2 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .cart-clear-form .cart-table__button {
    min-height: 42px;
    width: auto;
    padding: 0 16px;
    font-size: 0.76rem;
  }

  .cart-table-wrap {
    display: none;
  }

  .cart-mobile-list {
    display: grid;
    background: #fff;
    padding: 0 20px;
  }

  .cart-mobile-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid rgba(90, 65, 54, 0.18);
  }

  .cart-mobile-item:first-child {
    border-top: 0;
  }

  .cart-mobile-item__image {
    display: block;
    align-self: start;
    width: 100%;
    background: var(--am-bg-soft);
  }

  .cart-mobile-item__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .cart-mobile-item__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cart-mobile-item__body h3 {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.18;
  }

  .cart-mobile-item__body p {
    grid-column: 1;
    margin: 0;
    color: #000;
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .cart-mobile-item__body strong {
    font-weight: 800;
  }

  .cart-mobile-item__description {
    text-transform: uppercase;
  }

  .cart-mobile-item__delete {
    position: absolute;
    top: 20px;
    right: 0;
    width: 24px;
    height: 24px;
    border-width: 1.5px;
    font-size: 1rem;
  }

  .cart-mobile-item__delete span {
    transform: none;
    line-height: 1;
  }

  .cart-mobile-qty {
    grid-column: 2;
    grid-row: 3 / span 2;
    align-self: center;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .cart-mobile-qty__control {
    display: inline-grid;
    grid-template-columns: 28px 40px 28px;
    height: 24px;
    border: 1px solid #a4a5a5;
    background: #fff;
  }

  .cart-mobile-qty__control button,
  .cart-mobile-qty__control input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: 0;
    border-left: 1px solid #a4a5a5;
    background: transparent;
    color: var(--am-text);
    text-align: center;
    line-height: 1;
  }

  .cart-mobile-qty__control button:first-child {
    border-left: 0;
  }

  .cart-mobile-qty__control button {
    cursor: pointer;
    font-weight: 800;
  }

  .cart-mobile-qty__control input {
    appearance: textfield;
    font-weight: 800;
  }

  .cart-mobile-qty__control input::-webkit-outer-spin-button,
  .cart-mobile-qty__control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
  }

  .cart-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.82rem;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table colgroup {
    display: none;
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tfoot,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table tr {
    padding: 14px;
    border: 1px solid rgba(201, 177, 164, 0.48);
    background: #fff;
  }

  .cart-table tr + tr {
    margin-top: 14px;
  }

  .cart-table tfoot tr {
    margin-top: 14px;
  }

  .cart-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .cart-table th,
  .cart-table td {
    padding: 9px 0;
    border: 0;
  }

  .cart-table td {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .cart-table td::before {
    content: attr(data-label);
    color: var(--am-text-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .cart-table tfoot td:empty,
  .cart-table tfoot td[colspan] {
    display: none;
  }

  .cart-table__index {
    text-align: left;
  }

  .cart-table__thumb {
    width: 32px;
    height: auto;
  }

  .cart-table__description {
    min-width: 0;
    line-height: 1.35;
  }

  .cart-table__qty {
    width: 96px;
  }

  .checkout-form .cart-table__qty {
    width: 96px;
  }

  .cart-table__subtotal-label {
    display: block;
    font-size: 1.08rem;
    text-align: left;
  }

  .cart-table__subtotal-label::before {
    content: none;
  }

  .cart-table__subtotal-qty,
  .cart-table__subtotal-amount {
    text-align: left;
  }

  .cart-table__button {
    width: 100%;
  }

  .cart-clear-form .cart-table__button {
    width: auto;
  }

  .cart-table-actions {
    justify-content: stretch;
  }

  .cart-table-actions .button {
    width: 100%;
  }

  .checkout-form .cart-remark-field {
    display: grid;
    gap: 8px;
    padding: 18px 20px 28px;
    border: 0;
    background: #fff;
  }

  .checkout-form .cart-remark-field span {
    color: #000;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .checkout-form .cart-remark-field textarea {
    min-height: 132px;
    padding: 10px;
    border: 1px solid rgba(90, 65, 54, 0.5);
    background: #fff;
    font-size: 0.92rem;
  }

  .cart-mobile-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    padding: 16px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
  }
  .cart-mobile-order-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #000;
    font-size: 1.08rem;
    font-weight: 800;
  }

  .cart-items-card .checkout-form__submit {
    width:100%;
    margin: 16px 0 0;
    font-size: 1.12rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .cart-submit-desktop {
    display: none;
  }

  .cart-submit-mobile {
    display: inline;
  }

  .feature-card--horizontal {
    grid-template-columns: 1fr;
  }

  .contact-map__card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}
