.theme-buyer-auth {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(196, 165, 114, 0.06), transparent 32%),
    #0f0c09;
  color: #f3ede3;
}

.buyer-login-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: #0f0c09;
}

.buyer-login-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(196, 165, 114, 0.06), transparent 34%),
    url("/public/assets/images/buyer/login_bg.jpg") center center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.buyer-login-page__body,
.buyer-login-page__footer {
  position: relative;
  z-index: 1;
}

.buyer-login-page__body {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 32px;
}

.buyer-login-page__shell {
  width: 100%;
  max-width: 340px;
  animation: buyer-login-rise 2000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.buyer-login-page__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.buyer-login-page__divider {
  width: 28px;
  height: 1px;
  background: rgba(196, 165, 114, 0.65);
}

.buyer-login-page__eyebrow-text,
.buyer-login-page__cta a,
.buyer-login-page__footer-links,
.buyer-login-page__footer-links a,
.buyer-login-form__label,
.buyer-login-form__submit {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  text-transform: uppercase;
}

.buyer-login-page__eyebrow-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #c4a572;
}

.buyer-login-page__wordmark {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f3ede3;
}

.buyer-login-page__brand {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

.buyer-login-page__brand:focus-visible {
  outline: 1px solid #c4a572;
  outline-offset: 6px;
}

.buyer-login-page__tagline {
  margin: 20px 0 0;
  text-align: center;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 237, 228, 0.7);
}

.buyer-login-page__form-wrap {
  margin-top: 56px;
}

.buyer-login-form {
  width: 100%;
}

.buyer-login-form__fields {
  display: grid;
  gap: 28px;
}

.buyer-login-form__field {
  display: block;
}

.buyer-login-form__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(242, 237, 228, 0.7);
}

.buyer-login-form__field input {
  width: 100%;
  margin-top: 6px;
  border: 0;
  border-bottom: 1px solid rgba(243, 237, 227, 0.14);
  background: transparent;
  padding: 10px 0 11px;
  color: #f3ede3;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.buyer-login-form__field input:focus {
  border-bottom-color: #c4a572;
}

.buyer-login-form__password-field {
  position: relative;
  display: block;
}

.buyer-login-form__password-field input {
  padding-right: 44px;
}

.buyer-login-form__password-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(242, 237, 228, 0.7);
  padding: 0;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.buyer-login-form__password-toggle:hover {
  color: #f3ede3;
}

.buyer-login-form__password-toggle:active {
  transform: translateY(-50%) scale(0.98);
}

.buyer-login-form__password-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: opacity 200ms ease, transform 200ms ease;
}

.buyer-login-form__password-icon--visible {
  position: absolute;
  opacity: 0;
  transform: scale(0.92);
}

.buyer-login-form__password-toggle.is-visible .buyer-login-form__password-icon--hidden {
  opacity: 0;
  transform: scale(0.92);
}

.buyer-login-form__password-toggle.is-visible .buyer-login-form__password-icon--visible {
  opacity: 1;
  transform: scale(1);
}

.buyer-login-form__error {
  margin: 24px 0 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #d2786d;
}

.buyer-login-form__submit {
  width: 100%;
  margin-top: 40px;
  border: 1px solid rgba(191, 166, 119, 0.52);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 245, 221, 0.2) 0%, rgba(191, 166, 119, 0.92) 100%);
  padding: 15px 18px 16px;
  color: #0f0c09;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 8px 20px rgba(34, 24, 12, 0.18);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.buyer-login-form__submit:hover {
  opacity: 0.86;
}

.buyer-login-form__submit:active {
  transform: translateY(1px);
}

.buyer-login-page__cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.buyer-login-page__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(242, 237, 228, 0.7);
  transition: color 320ms ease, letter-spacing 320ms ease, transform 320ms ease;
}

.buyer-login-page__cta a span {
  transition: transform 220ms ease;
}

.buyer-login-page__cta a:hover {
  color: #c4a572;
  letter-spacing: 0.22em;
}

.buyer-login-page__cta a:hover span {
  transform: translateX(4px);
}

.buyer-login-page__footer {
  padding: 0 24px 40px;
}

.buyer-login-page__footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(242, 237, 228, 0.7);
  transition: color 360ms ease, letter-spacing 360ms ease;
}

.buyer-login-page__footer-links a:hover {
  color: #f3ede3;
}

@keyframes buyer-login-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buyer-signup-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: #0f0c09;
}

.buyer-signup-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(196, 165, 114, 0.06), transparent 34%),
    url("/public/assets/images/buyer/login_bg.jpg") center center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.buyer-signup-page__shell,
.buyer-login-page__body,
.buyer-login-page__footer {
  position: relative;
  z-index: 1;
}

.buyer-signup-page__shell {
  width: 100%;
  max-width: 380px;
  animation: buyer-login-rise 2000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.buyer-signup-form {
  width: 100%;
}

.buyer-signup-form__invite {
  display: grid;
  gap: 14px;
}

.buyer-signup-form__field {
  display: block;
}

.buyer-signup-form__field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.buyer-signup-form__hint {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 10px;
  color: rgba(242, 237, 228, 0.7);
}

.buyer-signup-form__invite-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 6px;
}

.buyer-signup-form__invite-row input,
.buyer-signup-form__field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(243, 237, 227, 0.14);
  background: transparent;
  padding: 0 0 5px 10px;
  color: #f3ede3;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.01em;
  outline: none;
  transition: border-color 0.3s ease;
}

.buyer-signup-form__invite-row input:focus,
.buyer-signup-form__field input:focus {
  border-bottom-color: #c4a572;
}

.buyer-signup-form__invite-row input::placeholder,
.buyer-signup-form__field input::placeholder {
  color: rgba(243, 237, 227, 0.38);
  font-weight: 300;
}

.buyer-signup-form__invite-chip {
  flex-shrink: 0;
  min-width: 112px;
  border: 1px solid rgba(191, 166, 119, 0.5);
  border-radius: 8px;
  padding: 15px 14px 16px;
  background: linear-gradient(180deg, rgba(255, 245, 221, 0.2) 0%, rgba(191, 166, 119, 0.92) 100%);
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d1710;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 8px 20px rgba(34, 24, 12, 0.18);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.buyer-signup-form__invite-chip:hover {
  opacity: 0.86;
}

.buyer-signup-form__invite-note {
  margin: 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(242, 237, 228, 0.7);
}

.buyer-signup-form__invite-note.is-valid {
  color: #c4a572;
}

.buyer-signup-form__invite-note.is-invalid {
  color: #d2786d;
}

.buyer-signup-form__invite-chip.is-valid {
  color: #1d1710;
}

.buyer-signup-form__invite-chip:disabled {
  opacity: 0.72;
  cursor: progress;
}

.buyer-signup-form__separator {
  height: 1px;
  margin: 40px 0;
  background: rgba(243, 237, 227, 0.12);
}

.buyer-signup-form__fields {
  gap: 28px;
}

.buyer-policy-page {
  min-height: 100vh;
  background: #0f0c09;
}

.buyer-policy-hero {
  border-bottom: 1px solid rgba(128, 96, 54, 0.22);
  background:
    radial-gradient(circle at top, rgba(196, 165, 114, 0.08), transparent 34%),
    rgba(9, 7, 5, 0.56);
}

.buyer-policy-hero__inner,
.buyer-policy-body {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.buyer-policy-hero__inner {
  padding: 56px 0 52px;
}

.buyer-policy-hero__eyebrow,
.buyer-policy-panel__label,
.buyer-policy-panel__path {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.buyer-policy-hero__eyebrow {
  margin: 0 0 12px;
  color: rgba(196, 165, 114, 0.72);
}

.buyer-policy-hero__title {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.96;
  color: #f3ede3;
}

.buyer-policy-hero__summary {
  max-width: 540px;
  margin: 18px 0 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(243, 237, 227, 0.68);
}

.buyer-policy-body {
  padding: 44px 0 96px;
}

.buyer-policy-panel {
  border: 1px solid rgba(128, 96, 54, 0.28);
  background: linear-gradient(180deg, rgba(22, 18, 14, 0.96), rgba(15, 12, 9, 0.96));
  padding: 32px;
  box-shadow: inset 0 1px 0 rgba(196, 165, 114, 0.06);
}

.buyer-policy-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.buyer-policy-panel__label {
  color: rgba(196, 165, 114, 0.78);
}

.buyer-policy-panel__path {
  color: rgba(243, 237, 227, 0.4);
}

.buyer-policy-panel__title {
  margin: 22px 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: #f3ede3;
}

.buyer-policy-panel__section + .buyer-policy-panel__section {
  margin-top: 30px;
  border-top: 1px solid rgba(128, 96, 54, 0.2);
  padding-top: 28px;
}

.buyer-policy-panel__section:first-of-type .buyer-policy-panel__title {
  margin-top: 26px;
}

.buyer-policy-panel__copy,
.buyer-policy-panel__list {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(243, 237, 227, 0.72);
}

.buyer-policy-panel__copy code {
  color: #c4a572;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
}

.buyer-policy-panel__list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.buyer-policy-panel__list li + li {
  margin-top: 6px;
}

.buyer-mypage-page {
  min-height: 100vh;
  background: #0f0c09;
}

.buyer-mypage-header {
  border-bottom: 1px solid rgba(128, 96, 54, 0.22);
  background: rgba(9, 7, 5, 0.56);
}

.buyer-mypage-header__inner,
.buyer-mypage-body {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.buyer-mypage-header__inner {
  padding: 56px 0 48px;
}

.buyer-mypage-header__eyebrow,
.buyer-account-panel__label,
.buyer-account-panel__field span,
.buyer-account-panel__btn {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  text-transform: uppercase;
}

.buyer-mypage-header__eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(196, 165, 114, 0.72);
}

.buyer-mypage-header__title {
  margin: 0;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 0.98;
  color: #f3ede3;
}

.buyer-mypage-body {
  display: grid;
  gap: 24px;
  padding: 44px 0 96px;
}

.buyer-account-panel {
  border: 1px solid rgba(128, 96, 54, 0.28);
  background: linear-gradient(180deg, rgba(22, 18, 14, 0.96), rgba(15, 12, 9, 0.96));
  padding: 32px;
}

.buyer-account-panel__label {
  margin: 0 0 22px;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: rgba(196, 165, 114, 0.76);
}

.buyer-account-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.buyer-account-panel__field span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(243, 237, 227, 0.42);
}

.buyer-account-panel__field strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #f3ede3;
}

.buyer-account-panel__copy {
  margin: 0;
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(243, 237, 227, 0.7);
}

.buyer-account-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.buyer-account-panel__btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(243, 237, 227, 0.16);
  font-size: 10px;
  letter-spacing: 0.22em;
  transition: all 0.3s ease;
}

.buyer-account-panel__btn--primary {
  border-color: #c4a572;
  background: #c4a572;
  color: #0f0c09;
}

.buyer-account-panel__btn--ghost {
  color: rgba(243, 237, 227, 0.72);
}

.buyer-account-panel__btn--ghost:hover {
  border-color: rgba(196, 165, 114, 0.42);
  color: #f3ede3;
}

.buyer-cart-page {
  min-height: 100vh;
  background: #0f0c09;
}

.buyer-cart-hero {
  border-bottom: 1px solid rgba(128, 96, 54, 0.22);
  background: rgba(9, 7, 5, 0.56);
}

.buyer-cart-hero__inner,
.buyer-cart-body {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.buyer-cart-hero__inner {
  display: grid;
  gap: 0.8rem;
  padding: 56px 0 48px;
}

.buyer-cart-hero__eyebrow,
.buyer-cart-button {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  text-transform: uppercase;
}

.buyer-cart-hero__eyebrow {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(196, 165, 114, 0.72);
}

.buyer-cart-hero__title {
  margin: 0;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 0.98;
  color: #f3ede3;
}

.buyer-cart-hero__summary {
  margin: 0;
  max-width: 52rem;
  color: rgba(243, 237, 227, 0.72);
}

.buyer-cart-body {
  display: grid;
  gap: 24px;
  padding: 44px 0 96px;
}

.buyer-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.buyer-cart-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(128, 96, 54, 0.28);
  background: linear-gradient(180deg, rgba(22, 18, 14, 0.96), rgba(15, 12, 9, 0.96));
  padding: 32px;
  color: #f3ede3;
}

.buyer-cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.buyer-cart-panel__label,
.buyer-cart-panel__count,
.buyer-cart-empty__mark,
.buyer-cart-note,
.buyer-cart-guide span,
.buyer-cart-button {
  font-family: "Segoe UI", "Apple SD Gothic Neo", sans-serif;
}

.buyer-cart-panel__label,
.buyer-cart-panel__count,
.buyer-cart-empty__mark,
.buyer-cart-guide span {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(196, 165, 114, 0.78);
}

.buyer-cart-empty {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(128, 96, 54, 0.28);
  padding: 56px 24px;
  text-align: center;
}

.buyer-cart-empty__mark {
  margin-bottom: 18px;
  color: rgba(196, 165, 114, 0.58);
}

.buyer-cart-empty h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: #f3ede3;
}

.buyer-cart-panel p,
.buyer-cart-empty p,
.buyer-cart-note {
  margin: 0;
  color: rgba(243, 237, 227, 0.72);
  line-height: 1.75;
}

.buyer-cart-empty p {
  max-width: 480px;
  margin-top: 12px;
}

.buyer-cart-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.buyer-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.buyer-cart-button--wide {
  width: 100%;
}

.buyer-cart-button--primary {
  background: linear-gradient(135deg, #d8ac55, #b88438);
  color: #16110b;
}

.buyer-cart-button--ghost {
  border: 1px solid rgba(196, 165, 114, 0.28);
  color: #f3ede3;
}

.buyer-cart-summary {
  display: grid;
  gap: 14px;
  margin: 0;
}

.buyer-cart-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.buyer-cart-summary dt,
.buyer-cart-summary dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.buyer-cart-summary dt {
  color: rgba(243, 237, 227, 0.62);
}

.buyer-cart-summary dd {
  color: #f3ede3;
  text-align: right;
}

.buyer-cart-summary__total {
  border-top: 1px solid rgba(128, 96, 54, 0.22);
  padding-top: 16px;
}

.buyer-cart-note {
  font-size: 12px;
}

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

.buyer-cart-guide div {
  border: 1px solid rgba(128, 96, 54, 0.22);
  padding: 22px;
}

.buyer-cart-guide strong {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.35;
  color: #f3ede3;
}

.buyer-cart-guide p {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .buyer-cart-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 900px) {
  .buyer-products-shell {
    grid-template-columns: 1fr;
  }

  .buyer-products-hero__head {
    flex-direction: column;
  }

  .buyer-products-hero__tools {
    position: absolute;
    top: 24px;
    right: 0;
    left: 0;
    z-index: auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
    pointer-events: auto;
  }

  .buyer-products-hero__inner,
  .buyer-products-hero__copy,
  .buyer-products-hero__aside {
    text-align: center;
  }

  .buyer-products-hero__head,
  .buyer-products-sort {
    align-items: center;
    justify-content: center;
  }

  .buyer-products-hero__head {
    gap: 18px;
  }

  .buyer-products-hero__copy {
    justify-self: center;
  }

  .buyer-products-hero__aside {
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .buyer-products-breadcrumb {
    justify-content: center;
    text-align: center;
  }

  .buyer-products-controls {
    width: calc(100vw - 24px);
    align-items: center;
    margin-top: 18px;
    z-index: 10020;
    overflow: visible;
  }

  .buyer-products-brand-filter {
    width: calc(100vw - 24px);
  }

  .buyer-products-sort-wrap {
    justify-content: flex-end;
    overflow: visible;
  }

  .buyer-products-sort {
    overflow: visible;
  }

  .buyer-products-sidebar {
    display: none;
  }

  .buyer-products-content {
    width: 100%;
    padding: 28px 0 56px;
  }

  .buyer-products-empty {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 18px;
    text-align: center;
  }

  .buyer-products-empty a {
    align-self: center;
  }

  .buyer-products-pagination {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .buyer-products-pagination__pages {
    flex: 0 1 auto;
    gap: 5px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .buyer-products-pagination__control,
  .buyer-products-pagination__page,
  .buyer-products-pagination__ellipsis {
    flex: 0 0 auto;
    min-width: 31px;
    height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .theme-buyer-source .buyer-products-pagination__page,
  .theme-buyer-source a.buyer-products-pagination__page,
  .theme-buyer-source span.buyer-products-pagination__page {
    font-size: 13px;
  }

  .buyer-products-pagination__control {
    min-width: 44px;
  }

  .buyer-products-pagination__ellipsis {
    min-width: 20px;
    padding: 0 3px;
  }

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

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

  .buyer-orders-item__top,
  .buyer-orders-item__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .buyer-order-detail-grid {
    grid-template-columns: 1fr;
  }

  .buyer-product-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .buyer-product-detail-media {
    order: -1;
  }

  .buyer-product-detail-body__inner {
    width: 100%;
  }

  .buyer-product-detail-body__image img {
    max-width: 100%;
  }

  .buyer-order-detail-status {
    flex-direction: column;
  }

  .buyer-order-detail-status__side {
    align-items: flex-start;
  }

  .buyer-checkout-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .buyer-order-inspection-item > header {
    flex-direction: column;
  }

  .buyer-order-detail-inspection-summary__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .buyer-order-detail-inspection-summary__previews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-order-inspection-modal {
    padding: 16px;
  }

  .buyer-order-inspection-modal__dialog {
    padding: 22px;
  }

  .buyer-order-inspection-modal__image-grid {
    grid-template-columns: 1fr;
  }

  .buyer-order-inspection-modal__title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .buyer-order-inspection-modal__checklist {
    grid-template-columns: 1fr;
  }

  .buyer-order-inspection-modal__checklist li {
    min-height: 82px;
  }

  .theme-buyer-source .buyer-order-detail-inspection-button {
    align-self: flex-start !important;
  }

  .buyer-order-detail-shipping-progress__steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2px;
  }

  .buyer-order-detail-shipping-progress__step {
    min-height: 76px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    text-align: left;
  }

  .buyer-order-detail-shipping-progress__step:not(:last-child)::after {
    top: 42px;
    bottom: 4px;
    left: 18px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .buyer-order-detail-shipping-progress__copy {
    padding-top: 1px;
  }

  .buyer-products-hero__inner,
  .buyer-products-shell {
    width: min(100% - 32px, 1400px);
  }

  .buyer-products-controls {
    width: min(100% - 32px, 1400px);
  }

  .buyer-products-sort {
    gap: 4px;
  }

  .buyer-products-sort__button {
    padding-left: 12px;
    padding-right: 12px;
  }

  .buyer-products-pagination {
    gap: 3px;
  }

  .buyer-products-pagination__pages {
    gap: 3px;
  }

  .buyer-products-pagination__control,
  .buyer-products-pagination__page,
  .buyer-products-pagination__ellipsis {
    min-width: 28px;
    height: 32px;
    padding: 0 5px;
    font-size: 11px;
  }

  .theme-buyer-source .buyer-products-pagination__page,
  .theme-buyer-source a.buyer-products-pagination__page,
  .theme-buyer-source span.buyer-products-pagination__page {
    font-size: 12px;
  }

  .buyer-products-pagination__control {
    min-width: 38px;
  }

  .buyer-products-pagination__ellipsis {
    min-width: 18px;
    padding: 0 2px;
  }

  .buyer-wishlist-header__inner,
  .buyer-wishlist-body,
  .buyer-orders-header__inner,
  .buyer-orders-body,
  .buyer-order-detail-header__inner,
  .buyer-order-detail-body,
  .buyer-checkout-header__inner,
  .buyer-checkout-body,
  .buyer-product-detail-shell {
    width: min(100% - 24px, 1360px);
  }

  .buyer-checkout-grid {
    grid-template-columns: 1fr;
  }

  .buyer-checkout-section-head,
  .buyer-checkout-section-actions,
  .buyer-checkout-benefits,
  .buyer-checkout-address-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .buyer-checkout-section-actions {
    justify-content: stretch;
  }

  .buyer-checkout-mini-button,
  .buyer-checkout-address-button {
    width: 100%;
  }

  .buyer-signup-page__shell {
    max-width: 100%;
  }

  .buyer-policy-hero__inner,
  .buyer-policy-body {
    width: min(100% - 24px, 1120px);
  }

  .buyer-mypage-header__inner,
  .buyer-mypage-body {
    width: min(100% - 24px, 1120px);
  }

  .buyer-policy-panel {
    padding: 24px;
  }

  .buyer-policy-panel__section + .buyer-policy-panel__section {
    margin-top: 24px;
    padding-top: 22px;
  }

  .buyer-account-panel {
    padding: 24px;
  }

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

  .buyer-home-new,
  .buyer-home-best,
  .buyer-home-story {
    width: calc(100% - 16px);
    padding: 72px 0;
  }

  .buyer-home-new {
    padding: 72px 0;
  }

  .buyer-home-story {
    --buyer-home-story-gap: 32px;
    padding: 0 0 36px;
  }

  .buyer-home-page > .buyer-home-story:last-of-type {
    padding-bottom: 36px;
  }

  .buyer-home-section-head {
    margin-bottom: 20px;
  }

  .buyer-home-story__banner {
    aspect-ratio: 1200 / 960;
    height: auto;
    min-height: 0;
    border: 0;
    border-radius: 18px;
    padding: 0;
  }

  .buyer-home-story__content {
    isolation: isolate;
    width: min(100%, calc(100% - 24px));
    padding-bottom: 0;
  }

  .buyer-home-story__copy {
    font-size: 14px;
  }

}
