:root {
  --bg: #ffffff;
  --text: #111111;
  --line: #111111;
  --muted: #6b6b6b;
}

* {
  box-sizing: border-box;
}

html,
body {
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, sans-serif;
}

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

button,
input {
  font: inherit;
}

.sidebar-toggle {
  display: none;
}

.page-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 280px;
  height: 100vh;
  overflow-y: auto;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

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

.sidebar-header h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ghost-btn,
.menu-toggle,
.nav-link,
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.ghost-btn:hover,
.menu-toggle:hover,
.nav-link:hover,
.nav-pill:hover {
  background: #111111;
  color: #ffffff;
}

.ghost-btn.is-current {
  background: #111111;
  color: #ffffff;
}

.nav-link.is-current,
.nav-pill.is-current,
.nav-link-root.is-current {
  background: #111111;
  color: #ffffff;
}

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

.nav-branch {
  display: grid;
  gap: 8px;
}

.nav-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.nav-chevron {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  margin-left: 3px;
  border-right: 1.5px solid var(--text);
  border-bottom: 1.5px solid var(--text);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.nav-branch[open] > .nav-summary .nav-chevron {
  transform: rotate(45deg);
}

.nav-pill,
.nav-link {
  width: 100%;
  justify-content: flex-start;
}

.nav-summary,
.nav-summary *,
.nav-branch > summary,
.nav-branch > summary * {
  cursor: pointer !important;
}

.nav-summary:hover .nav-pill,
.nav-summary:focus-visible .nav-pill {
  background: #111111;
  color: #ffffff;
}

.nav-children {
  display: grid;
  gap: 8px;
  margin: 2px 0 8px 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(17, 17, 17, 0.18);
}

.nav-children .nav-link,
.nav-children .nav-pill {
  min-height: 38px;
  padding: 8px 14px;
  text-transform: none;
  letter-spacing: 0.03em;
}

.menu-toggle {
  width: 48px;
  min-width: 48px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.content {
  min-height: 100vh;
}

.is-hidden {
  display: none !important;
}

.header {
  position: relative;
  z-index: 10;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  padding-right: var(--header-dynamic-edge-inset, 20px);
  padding-bottom: 20px;
  padding-left: var(--header-dynamic-edge-inset, 20px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.header.header-search-below {
  padding-bottom: 76px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  visibility: visible;
}

.header.header-brand-pending .brand {
  visibility: hidden;
}

.brand h1 {
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.auth-frame {
  display: grid;
  place-items: start center;
}

.auth-shell {
  width: min(500px, 100%);
  margin: 0 auto;
}

.auth-shell .checkout-section {
  position: relative;
}

.auth-section {
  --auth-head-line-gap: 15px;
  --auth-line-to-content-gap: 15px;
  --auth-note-to-field-gap: 15px;
  --auth-verify-note-zone-height: 52px;
  --auth-login-error-zone-height: 46px;
  --auth-login-line-to-email-gap: 15px;
  --auth-register-error-zone-height: 46px;
  --auth-register-line-to-email-gap: 15px;
  --auth-login-field-gap: 15px;
  --auth-password-to-forgot-gap: 5px;
  --auth-forgot-to-button-gap: 11px;
  --auth-button-to-register-gap: 7px;
}

.checkout-form.auth-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.checkout-form.auth-form .auth-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
}

.checkout-form.auth-form .auth-actions {
  display: flex;
  flex-direction: column;
  margin-top: 7px;
  gap: 7px;
}

.auth-robot-check {
  position: relative;
  display: inline-block;
  width: 191px;
  height: 42px;
  margin-top: 7px;
  color: var(--text);
  font-size: 14px;
  cursor: default;
}

.auth-robot-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.auth-robot-honeypot {
  display: none !important;
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.auth-robot-check-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.auth-robot-check-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.auth-robot-check-box::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 7px;
  height: 13px;
  border-right: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  opacity: 0;
  transform: rotate(45deg) scale(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.auth-robot-check-copy {
  position: absolute;
  top: 0;
  left: 47px;
  width: 144px;
  height: 42px;
  padding-top: 0;
  padding-right: 12px;
  padding-bottom: 0;
  padding-left: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 40px;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  cursor: default;
}

.auth-robot-check-toggle input:checked + .auth-robot-check-box {
  background: #111111;
}

.auth-robot-check-toggle input:checked + .auth-robot-check-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.auth-section .checkout-form.auth-form .auth-verify-note {
  display: flex;
  min-height: var(--auth-verify-note-zone-height);
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.checkout-form.auth-form .auth-register-link {
  align-self: flex-start;
  display: inline-block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease;
}

.checkout-form.auth-form .auth-register-link:hover,
.checkout-form.auth-form .auth-register-link:focus-visible {
  color: var(--text);
}

.checkout-form.auth-form .auth-forgot-link {
  margin-top: var(--auth-password-to-forgot-gap);
}

.auth-notice,
.auth-error {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
}

.auth-notice {
  color: #1d5b31;
}

.auth-error {
  color: #b12020;
}

.auth-login-error {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1;
}

.auth-register-error {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.35;
}

.auth-login-error-row {
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 9px;
  text-align: center;
}

.auth-register-error-row {
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

.auth-verify-note {
  color: var(--muted);
}

.auth-resend-code-btn {
  display: inline-block;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, opacity 160ms ease;
}

.auth-resend-code-count {
  position: static;
  min-width: 0;
  color: currentColor;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
}

.auth-form-verify .auth-code-row {
  display: block !important;
}

.auth-form-verify .auth-code-row .checkout-field {
  display: block;
}

.auth-form-verify .auth-code-row .auth-resend-code-btn {
  margin-left: 0;
}

.auth-resend-code-btn:hover,
.auth-resend-code-btn:focus-visible {
  color: var(--text);
}

.auth-resend-code-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.auth-resend-code-btn:disabled:hover,
.auth-resend-code-btn:disabled:focus-visible {
  color: var(--text);
}

.auth-resend-code-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.header-actions {
  position: absolute;
  top: 20px;
  right: var(--header-dynamic-edge-inset, 20px);
  z-index: 20;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  position: absolute;
  top: 20px;
  left: var(--header-search-left, 0px);
  width: var(--header-search-width, 0px);
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.header.header-search-below .header-search {
  top: 76px;
  left: var(--header-dynamic-edge-inset, 20px);
  width: calc(100% - (var(--header-dynamic-edge-inset, 20px) * 2));
}

.header-search input {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 96px);
  height: 42px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.header-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 42px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.header.header-hide-brand .brand {
  display: none;
}

.header.header-hide-brand .header-left {
  gap: 0;
}

.auth-btn {
  padding: 0 18px;
}

.account-avatar {
  display: inline-block;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
}

.account-menu {
  min-width: 148px;
}

.account-logout-form {
  margin: 0;
}

.account-logout-form .dropdown-item {
  width: 100%;
}

.account-settings-body {
  margin-top: 12px;
}

.account-settings-body span,
.account-settings-body strong {
  display: block;
}

.account-settings-body strong {
  margin-top: 6px;
}

.header-dropdown {
  position: relative;
  display: block;
  z-index: 25;
}

.icon-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible,
.header-dropdown.is-open .icon-btn {
  background: #ffffff;
  color: #111111;
  border-color: #111111;
  outline: none;
}

.lang-trigger-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.empty-icon-btn {
  background: #ffffff;
}

.support-icon {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
}

.exit-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
}

.exit-icon::before,
.exit-icon::after {
  content: "";
  position: absolute;
}

.exit-icon::before {
  left: 2px;
  top: 3px;
  width: 9px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}

.exit-icon::after {
  right: 0;
  top: 7px;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 4px -3px 0 -1px currentColor, 4px 3px 0 -1px currentColor;
  transform: rotate(0deg);
}

.cart-icon {
  position: relative;
  width: 18px;
  height: 16px;
  display: inline-block;
}

.cart-btn {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 2;
  min-width: 16px;
  height: 16px;
  padding-right: 4px;
  padding-left: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
  text-align: center;
}

.cart-count-badge.is-empty {
  display: none;
}

.cart-icon::before,
.cart-icon::after {
  content: "";
  position: absolute;
}

.cart-icon::before {
  left: 2px;
  top: 2px;
  width: 12px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cart-icon::after {
  left: 4px;
  bottom: 0;
  width: 10px;
  height: 3px;
  border-top: 1.5px solid currentColor;
  box-shadow: -3px 4px 0 -1px currentColor, 7px 4px 0 -1px currentColor;
}

.support-icon::before,
.support-icon::after {
  content: "";
  position: absolute;
}

.support-icon::before {
  inset: 0;
  border: 1.5px solid currentColor;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.support-icon::after {
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 4px;
  transform: translateX(-50%);
  border: 1.5px solid currentColor;
  border-top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  min-width: 150px;
  padding: 8px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 15;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-dropdown.is-open .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-item {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  border-color: var(--line);
  background: #111111;
  color: #ffffff;
  outline: none;
}

.workspace {
  padding: 18px 10px 24px;
}

.workspace-frame {
  min-height: calc(100vh - 130px);
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 32px
    );
}

.workspace-frame.has-products {
  display: block;
  padding-top: 24px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
}

.catalog-social-bar {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  min-height: 33px;
  border-bottom: 0;
}

.catalog-social-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.catalog-social-copy {
  position: absolute;
  top: -12px;
  left: 0;
}

.catalog-social-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
  white-space: nowrap;
}

.catalog-social-links {
  position: absolute;
  top: -9px;
  right: 0;
}

.catalog-social-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  line-height: 0;
  overflow: hidden;
  transition: transform 160ms ease, opacity 160ms ease;
}

.catalog-social-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}

.catalog-social-link:hover,
.catalog-social-link:focus-visible {
  transform: translateY(-1px);
  opacity: 0.78;
}

.catalog-social-link.is-disabled {
  opacity: 0.28;
}

.catalog-sort {
  position: absolute;
  top: 18px;
  left: 1px;
  z-index: 4;
  width: 34px;
  height: 34px;
}

.catalog-sort-trigger {
  position: absolute;
  top: 0;
  left: 0;
  height: 34px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.catalog-sort-trigger svg {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-sort-menu {
  position: absolute;
  top: 34px;
  left: 0;
  display: none;
  width: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.catalog-sort.is-open .catalog-sort-menu {
  display: block;
}

.catalog-sort-menu a {
  display: block;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-size: 13px;
}

.catalog-sort-menu a + a {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.catalog-sort-menu a:hover,
.catalog-sort-menu a:focus-visible,
.catalog-sort-menu a.is-current {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.catalog-sort-menu a:first-child {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.catalog-sort-menu a:last-child {
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.catalog-page-control {
  --catalog-page-half-width: 37px;
  --catalog-page-box-width: 73px;
  --catalog-page-box-height: 37px;
  --catalog-page-arrow-size: 37px;
  position: relative;
  width: 100%;
  height: var(--catalog-page-box-height);
  margin-top: -5px;
  margin-bottom: 10px;
}

.catalog-page-control-bottom {
  margin-top: var(--catalog-page-bottom-offset, 0px);
  margin-bottom: 0;
}

.catalog-page-box {
  position: relative;
  width: var(--catalog-page-box-width);
  height: var(--catalog-page-box-height);
  margin-right: auto;
  margin-left: auto;
}

.catalog-page-input-shell {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--catalog-page-half-width);
  height: 100%;
  border: 1px solid var(--line);
  border-top-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 8px;
  background: #ffffff;
}

.catalog-page-input-shell input {
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-right: 6px;
  padding-bottom: 0;
  padding-left: 6px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: var(--catalog-page-box-height);
  text-align: center;
  outline: none;
}

.catalog-page-submit {
  position: absolute;
  top: 0;
  left: calc(var(--catalog-page-half-width) - 1px);
  width: var(--catalog-page-half-width);
  height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-top-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 0;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0;
  transition: background 160ms ease, color 160ms ease;
}

.catalog-page-submit:hover,
.catalog-page-submit:focus-visible {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.catalog-page-submit span {
  display: block;
  line-height: var(--catalog-page-box-height);
  text-align: center;
}

.catalog-page-arrow {
  position: absolute;
  top: 0;
  width: var(--catalog-page-arrow-size);
  height: var(--catalog-page-arrow-size);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.catalog-page-arrow.is-left {
  right: calc(50% + (var(--catalog-page-box-width) / 2));
}

.catalog-page-arrow.is-right {
  left: calc(50% + (var(--catalog-page-box-width) / 2));
}

.catalog-page-arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.catalog-page-arrow.is-left span {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.catalog-page-arrow.is-right span {
  transform: translate(-62%, -50%) rotate(45deg);
}

.catalog-page-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.product-grid {
  display: block;
  width: 100%;
}

.product-grid.catalog-layout-pending {
  visibility: hidden;
}

.product-grid::after {
  content: "";
  display: block;
  clear: both;
}

.product-card {
  width: calc((100% - 8px) / 2);
  max-width: none;
  overflow: hidden;
  display: block;
  float: left;
  position: relative;
  box-sizing: border-box;
  margin-top: 0;
  margin-right: 8px;
  margin-bottom: 8px;
  margin-left: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.product-card:nth-child(2n) {
  margin-right: 0;
}

.product-image {
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
}

.image-track {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.image-hover-zones {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
}

.product-image:hover .image-track,
.product-image:focus-within .image-track,
.product-image.is-gallery-active .image-track {
  opacity: 1;
}

.product-card.is-adding-to-cart .image-track {
  opacity: 0 !important;
}

.image-track-segment {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.image-hover-zone {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.image-track-segment span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.image-track-segment:hover span,
.image-track-segment:focus-visible span {
  background: #ffffff;
}

.image-track-segment.is-active span,
.image-track-segment.is-active:hover span,
.image-track-segment.is-active:focus-visible span {
  background: #111111;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.24);
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-body {
  display: block;
  min-height: 0;
  padding-top: 7px;
  padding-right: 18px;
  padding-bottom: 59px;
  padding-left: 7px;
}

.product-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  min-height: calc(1.28em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-body h2 a {
  color: inherit;
}

.product-card.is-title-extended .product-body h2 {
  min-height: calc(1.28em * 5);
  -webkit-line-clamp: 5;
}

.variant-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.55);
  border-radius: 999px;
  background: var(--swatch-color, #111111);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.variant-swatch:hover,
.variant-swatch:focus-visible {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.12);
  outline: none;
}

.catalog-caption {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-caption span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-frame p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

#sidebar-toggle:checked ~ .page-shell .sidebar {
  transform: translateX(0);
}

#sidebar-toggle:checked ~ .page-shell .sidebar-overlay {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-item.is-current {
  background: #111111;
  color: #ffffff;
  border-color: var(--line);
}

.detail-frame {
  display: block;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 40vw) minmax(340px, 1fr);
  gap: 30px;
}

.detail-gallery-column,
.detail-info-column {
  min-width: 0;
}

.detail-gallery-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.detail-main-media {
  position: relative;
  overflow: hidden;
  width: min(40vw, calc(100% - 24px));
  height: min(40vh, calc(100vw - 24px));
  margin: 0 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.detail-main-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.detail-media-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.detail-media-arrow.is-left {
  left: 14px;
}

.detail-media-arrow.is-right {
  right: 14px;
}

.detail-media-arrow span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.detail-media-arrow.is-left span {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.detail-media-arrow.is-right span {
  transform: rotate(45deg);
  margin-left: -4px;
}

.detail-main-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-thumbnails {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: calc(100% - 24px);
  margin: 0 12px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.35) transparent;
}

.detail-thumbnails::-webkit-scrollbar {
  height: 8px;
}

.detail-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.detail-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.28);
  border-radius: 999px;
}

.detail-thumbnail {
  display: block;
  flex: 0 0 80px;
  min-width: 80px;
  max-width: 80px;
  width: 80px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  cursor: pointer;
}

.detail-thumbnail img {
  display: block;
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-thumbnail.is-current {
  box-shadow: 0 0 0 2px #111111 inset;
}

.detail-info-column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.detail-back {
  align-self: flex-start;
}

.detail-category-list {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.detail-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

.detail-inline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.detail-section-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-variant-swatches {
  transform: none;
}

.detail-variant-swatches .variant-swatch {
  display: inline-block;
}

.detail-variant-swatches .variant-swatch.is-current {
  box-shadow: 0 0 0 2px #111111;
}

.detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.detail-price-row form {
  margin: 0;
}

.detail-price {
  font-size: 32px;
  font-weight: 700;
}

.detail-buy-btn {
  min-width: 190px;
}

.detail-cart-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-cart-actions[hidden],
[data-detail-add-form][hidden] {
  display: none !important;
}

.detail-go-cart-btn {
  min-width: 176px;
}

.cart-frame {
  display: block;
}

.workspace-frame.cart-frame.has-products {
  min-height: calc(100vh - 130px);
  padding-top: 7px;
  padding-bottom: 7px;
  box-sizing: border-box;
}

.cart-frame:not(.has-products) {
  position: relative;
  display: block;
}

.page-shell .cart-empty {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 0;
  margin-top: 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

.page-shell .cart-empty p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.cart-frame:not(.has-products) .cart-empty {
  margin-top: 0 !important;
}

.cart-list[hidden],
.cart-summary[hidden],
.cart-empty[hidden] {
  display: none !important;
}

.cart-item-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cart-item-body h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.cart-item-body h2 a {
  display: block;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.cart-remove-form {
  margin: 0;
}

.cart-actions-divider {
  width: 1px;
  height: 32px;
  margin: 0 14px;
  background: var(--line);
  transform: translateX(8px);
}

.cart-remove-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.cart-remove-btn:hover,
.cart-remove-btn:focus-visible {
  background: var(--text);
  color: #ffffff;
}

.cart-quantity-field input:disabled,
.cart-remove-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.cart-remove-btn:disabled:hover,
.cart-remove-btn:disabled:focus-visible {
  background: #ffffff;
  color: var(--text);
}

.cart-summary strong {
  font-size: 28px;
}

.cart-delivery-note {
  display: block;
  max-width: none;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: left;
}

.cart-checkout-btn {
  position: relative;
  width: 100%;
  min-height: 52px;
  padding-top: 0;
  padding-right: 18px;
  padding-bottom: 0;
  padding-left: 18px;
  border: 1px solid var(--text);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cart-checkout-label {
  display: block;
  line-height: 50px;
  text-align: center;
}

.cart-checkout-label {
  display: inline-block;
}

.cart-checkout-btn:hover,
.cart-checkout-btn:focus-visible {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.cart-empty {
  min-height: 280px;
}

.cart-empty .ghost-btn {
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.checkout-frame {
  display: grid;
  place-items: center;
}

.support-frame {
  display: grid;
  align-content: start;
  justify-items: center;
}

.checkout-form {
  width: min(980px, 100%);
  display: grid;
  gap: 20px;
}

.support-shell {
  width: min(980px, 100%);
  display: grid;
  gap: 20px;
}

.checkout-section {
  display: grid;
  gap: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.checkout-section[hidden],
.checkout-delivery-panel[hidden],
.checkout-fields[data-delivery-panel][hidden],
.checkout-marketplace-picker[hidden],
.country-suggestions[hidden] {
  display: none;
}

.checkout-section-head {
  display: block;
  padding-bottom: 0;
  margin-bottom: 15px;
  border-bottom: 0;
}

.checkout-section-head::after {
  content: "";
  display: block;
  margin-top: 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.checkout-section-head span {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-contact-copy,
.support-contact-empty,
.support-faq-empty {
  color: var(--muted);
  line-height: 1.6;
}

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

.support-contact-link {
  min-height: 62px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: background 160ms ease, color 160ms ease;
}

.support-contact-link:hover,
.support-contact-link:focus-visible {
  background: #111111;
  color: #ffffff;
  outline: none;
}

.support-contact-link.is-disabled {
  color: rgba(17, 17, 17, 0.42);
  background: #ffffff;
  pointer-events: none;
}

.support-contact-value {
  font-size: 19px;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}

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

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

.support-faq-item.has-children {
  background: #ffffff;
}

.support-faq-item summary {
  list-style: none;
  min-height: 68px;
  padding: 20px 52px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.support-faq-item summary::-webkit-details-marker {
  display: none;
}

.support-faq-item summary span {
  font-size: 16px;
  line-height: 1.5;
}

.support-faq-item summary::before,
.support-faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.support-faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 160ms ease;
}

.support-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.support-faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.support-faq-children {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.015);
}

.support-faq-children .support-faq-item {
  margin-top: 10px;
}

.checkout-fields {
  display: grid;
  gap: 18px;
}

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

.checkout-field {
  display: grid;
  gap: 8px;
}

.checkout-field-full {
  grid-column: 1 / -1;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 160ms ease;
}

.checkout-field input,
.checkout-field select {
  min-height: 56px;
  padding: 0 16px;
  line-height: 56px;
}

.checkout-field select {
  cursor: pointer;
}

.checkout-select-plain {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding-right: 16px;
}

.checkout-field textarea {
  min-height: 92px;
  padding: 18px 16px;
  resize: vertical;
}

.contact-form-shell .checkout-field textarea {
  min-height: 260px;
}

.contact-form-shell {
  gap: 4px;
}

.contact-form-shell .checkout-section-head {
  margin-bottom: 0;
}

.contact-form-shell .checkout-section-head + .checkout-fields {
  margin-top: 0;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  border-color: var(--text);
}

.checkout-field input:-webkit-autofill,
.checkout-field input:-webkit-autofill:hover,
.checkout-field input:-webkit-autofill:focus,
.checkout-field textarea:-webkit-autofill,
.checkout-field textarea:-webkit-autofill:hover,
.checkout-field textarea:-webkit-autofill:focus,
.checkout-field select:-webkit-autofill,
.checkout-field select:-webkit-autofill:hover,
.checkout-field select:-webkit-autofill:focus {
  border-color: var(--line);
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0 1000px #ffffff inset;
  caret-color: var(--text);
  transition: background-color 999999s ease-out;
}

.checkout-field input:autofill,
.checkout-field textarea:autofill,
.checkout-field select:autofill {
  background: #ffffff;
  color: var(--text);
}

.checkout-floating-field {
  position: relative;
}

.checkout-floating-label {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 0 4px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left top;
  transition:
    top 180ms ease,
    transform 180ms ease,
    color 180ms ease,
    font-size 180ms ease;
}

.checkout-floating-field:focus-within .checkout-floating-label,
.checkout-floating-field.is-filled .checkout-floating-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text);
}

.checkout-floating-field select option[value=""] {
  color: var(--muted);
}

.checkout-country-field {
  position: relative;
}

.country-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.country-suggestion {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}

.country-suggestion:last-child {
  border-bottom: 0;
}

.country-suggestion:hover,
.country-suggestion:focus-visible,
.country-suggestion.is-selected {
  background: var(--text);
  color: #ffffff;
}

.country-suggestion-empty,
.country-suggestion-empty:hover,
.country-suggestion-empty:focus-visible {
  background: #ffffff;
  color: var(--muted);
  cursor: default;
}

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

.checkout-delivery-option {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.checkout-delivery-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.checkout-delivery-option-title {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-delivery-option-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.checkout-delivery-option:has(input:checked) {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.checkout-delivery-option:has(input:checked) .checkout-delivery-option-copy {
  color: rgba(255, 255, 255, 0.72);
}

.checkout-delivery-option:hover,
.checkout-delivery-option:focus-within {
  border-color: var(--text);
}

.checkout-delivery-panel {
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.checkout-marketplace-services {
  display: grid;
  gap: 10px;
}

.checkout-marketplace-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.checkout-marketplace-option {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.checkout-marketplace-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.checkout-marketplace-option-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-marketplace-option:has(input:checked) {
  border-color: var(--text);
  background: var(--text);
  color: #ffffff;
}

.checkout-pickup-summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-pickup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
}

.checkout-pickup-card {
  display: grid;
  gap: 12px;
}

.checkout-subhead {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-pickup-map {
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fbfbfb;
}

.checkout-pickup-map-stage {
  position: relative;
  min-height: 280px;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: center center;
}

.checkout-pickup-map-city {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-pickup-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 1px solid var(--text);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.checkout-pickup-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
}

.checkout-pickup-marker:hover,
.checkout-pickup-marker:focus-visible,
.checkout-pickup-marker.is-active {
  background: var(--text);
  transform: scale(1.08);
}

.checkout-pickup-marker:hover::after,
.checkout-pickup-marker:focus-visible::after,
.checkout-pickup-marker.is-active::after {
  background: #ffffff;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  padding: 0;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-summary-row strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.checkout-summary-delivery-copy {
  display: grid;
  justify-items: end;
  gap: 3px;
  text-align: right;
}

.checkout-summary-delivery-copy span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.checkout-summary-row-total {
  padding-top: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--text);
}

.checkout-summary-row-total strong {
  font-size: 14px;
}

.checkout-submit {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--text);
  border-radius: 8px;
  background: var(--text);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.checkout-submit:hover,
.checkout-submit:focus-visible {
  background: #ffffff;
  color: var(--text);
}

.checkout-success-frame {
  display: grid;
  place-items: start center;
}

.checkout-success-shell {
  width: min(100%, 620px);
  display: grid;
  gap: 0;
}

.checkout-success-head {
  display: block;
  padding-bottom: 0;
  margin-bottom: 15px;
  border-bottom: 0;
}

.checkout-success-head::after {
  content: "";
  display: block;
  margin-top: 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.checkout-success-head span {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Sequential interface layout: no shared gap-based spacing inside cards/forms */
.page-shell .support-shell,
.page-shell .checkout-success-shell,
.page-shell .checkout-success-card,
.page-shell .checkout-success-row,
.page-shell .support-contact-actions,
.page-shell .support-faq-list,
.page-shell .support-faq-children,
.page-shell .contact-form-actions,
.page-shell .checkout-form.auth-form,
.page-shell .checkout-form.auth-form .auth-fields,
.page-shell .checkout-form.auth-form .auth-actions {
  display: block;
  gap: 0 !important;
}

.page-shell .checkout-section {
  display: block;
  gap: 0 !important;
}

.page-shell .checkout-section > * + * {
  margin-top: 15px;
}

.page-shell .checkout-section-head {
  margin: 0;
  padding: 0;
}

.page-shell .checkout-section-head::after {
  content: "";
  display: block;
  margin-top: 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.page-shell .checkout-section-head + * {
  margin-top: 15px;
}

.page-shell .auth-section .checkout-section-head::after {
  margin-top: var(--auth-head-line-gap);
}

.page-shell .auth-section .checkout-section-head + .checkout-form.auth-form {
  margin-top: var(--auth-line-to-content-gap);
}

.page-shell .auth-section .checkout-section-head + .checkout-form.auth-form.auth-form-verify {
  margin-top: 0;
}

.page-shell .auth-section .auth-form-verify .auth-verify-note {
  margin-top: 0;
  margin-bottom: 0;
}

.page-shell .auth-section .auth-form-verify .auth-resend-code-btn {
  margin-top: 7px;
}

.page-shell .auth-section .checkout-section-head + .checkout-form.auth-form:has(.auth-register-error-row) {
  margin-top: 0;
}

.page-shell .auth-section .checkout-section-head + .checkout-form.auth-form:not(:has(.auth-register-error-row)):not(.auth-form-login):not(.auth-form-verify) {
  margin-top: var(--auth-register-line-to-email-gap);
}

.page-shell .auth-section .auth-register-error-row {
  display: flex;
  min-height: var(--auth-register-error-zone-height);
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
}

.page-shell .checkout-success-head {
  margin: 0;
  padding: 0;
}

.page-shell .checkout-success-head::after {
  content: "";
  display: block;
  margin-top: 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.page-shell .checkout-success-head + * {
  margin-top: 15px;
}

.page-shell .support-shell > * + *,
.page-shell .checkout-success-shell > * + *,
.page-shell .checkout-success-card > * + *,
.page-shell .checkout-success-row > * + *,
.page-shell .support-contact-actions > * + *,
.page-shell .support-faq-list > * + *,
.page-shell .support-faq-children > * + *,
.page-shell .contact-form-actions > * + * {
  margin-top: 15px;
}

.page-shell .checkout-form.auth-form .auth-fields .checkout-field + .checkout-field {
  margin-top: 15px;
}

.page-shell .auth-form-verify .auth-code-row .checkout-field + .checkout-field {
  margin-top: 0;
}

.page-shell .checkout-form.auth-form .auth-actions {
  margin-top: 11px;
}

.page-shell .checkout-form.auth-form .auth-login-error {
  margin: 0;
}

.page-shell .checkout-form.auth-form .auth-login-error-row {
  margin-top: 0;
  margin-bottom: 9px;
}

.page-shell .checkout-form.auth-form .auth-actions > * + * {
  margin-top: 7px;
}

.page-shell .auth-section .auth-form-login > * {
  margin-top: 0;
}

.page-shell .auth-section .checkout-section-head + .checkout-form.auth-form.auth-form-login {
  margin-top: var(--auth-login-line-to-email-gap);
}

.page-shell .auth-section .checkout-section-head + .checkout-form.auth-form.auth-form-login:has(.auth-login-error-row) {
  margin-top: 0;
}

.page-shell .auth-section .auth-form-login .auth-login-error-row {
  display: flex;
  min-height: var(--auth-login-error-zone-height);
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
}

.page-shell .auth-section .auth-form-login .auth-fields {
  margin-top: 0;
  margin-bottom: 0;
}

.page-shell .auth-section .auth-form-login .auth-fields .checkout-field + .checkout-field {
  margin-top: var(--auth-login-field-gap);
}

.page-shell .auth-section .auth-form-login .auth-forgot-link {
  display: block;
  margin-top: var(--auth-password-to-forgot-gap);
}

.page-shell .auth-section .auth-form-login .auth-actions {
  margin-top: var(--auth-forgot-to-button-gap);
}

.page-shell .auth-section .auth-form-login .auth-actions > * + * {
  margin-top: var(--auth-button-to-register-gap);
}

/* Global sequential layout overrides */
.page-shell .category-nav,
.page-shell .nav-branch,
.page-shell .nav-children,
.page-shell .header-left,
.page-shell .header-actions,
.page-shell .catalog-social-links,
.page-shell .detail-shell,
.page-shell .detail-gallery-column,
.page-shell .detail-info-column,
.page-shell .cart-shell,
.page-shell .cart-list,
.page-shell .cart-empty,
.page-shell .checkout-summary,
.page-shell .checkout-delivery-panel,
.page-shell .checkout-marketplace-services,
.page-shell .checkout-pickup-card {
  gap: 0 !important;
}

.page-shell .category-nav > * + *,
.page-shell .nav-branch > * + *,
.page-shell .nav-children > * + *,
.page-shell .detail-shell > * + *,
.page-shell .detail-info-column > * + *,
.page-shell .cart-shell > * + *,
.page-shell .cart-list > * + *,
.page-shell .cart-empty > * + *,
.page-shell .checkout-summary > * + *,
.page-shell .checkout-delivery-panel > * + *,
.page-shell .checkout-marketplace-services > * + *,
.page-shell .checkout-pickup-card > * + * {
  margin-top: 14px;
}

.page-shell .detail-gallery-column > * + * {
  margin-top: 10px;
}

.page-shell .header-left > * + *,
.page-shell .header-actions > * + *,
.page-shell .catalog-social-links > * + * {
  margin-left: 8px;
}

.page-shell .product-grid {
  display: block !important;
  width: 100%;
}

.page-shell .product-grid::after {
  content: "";
  display: block;
  clear: both;
}

.page-shell .product-card {
  display: block;
  float: left;
  position: relative;
  box-sizing: border-box;
  font-size: 16px;
  width: calc((100% - 8px) / 2);
  margin-top: 0;
  margin-right: 8px;
  margin-bottom: 8px;
  margin-left: 0;
}

.page-shell .product-card[hidden] {
  display: none !important;
}

.page-shell .product-body {
  display: block;
  min-height: 0;
  padding-top: 7px;
  padding-right: 18px;
  padding-bottom: 59px;
  padding-left: 7px;
}

.page-shell .product-body > * + * {
  margin-top: 12px;
}

.page-shell .product-swatches-row {
  position: absolute;
  min-height: 14px;
  z-index: 2;
}

.page-shell .variant-swatches {
  display: block;
}

.page-shell .variant-swatches > * + * {
  margin-left: 4px;
}

.page-shell .product-meta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
}

.page-shell .product-meta strong {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
}

.page-shell .product-actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.page-shell .product-actions form {
  margin: 0;
}

.page-shell .add-to-cart-btn {
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  font-weight: 300;
}

.page-shell .add-to-cart-btn::before,
.page-shell .add-to-cart-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.page-shell .add-to-cart-btn::before {
  width: 18px;
  height: 1.5px;
}

.page-shell .add-to-cart-btn::after {
  width: 1.5px;
  height: 18px;
}


.page-shell .detail-layout {
  display: flex;
  align-items: flex-start;
}

.page-shell .detail-gallery-column {
  display: block;
  width: 40vw;
  flex: 0 0 40vw;
}

.page-shell .detail-info-column {
  flex: 1 1 auto;
  margin-left: 0;
}

.page-shell .detail-topbar,
.page-shell .detail-inline-row,
.page-shell .detail-price-row,
.page-shell .checkout-summary-row {
  gap: 0 !important;
}

.page-shell .detail-topbar > * + *,
.page-shell .detail-inline-row > * + *,
.page-shell .detail-price-row > * + *,
.page-shell .checkout-summary-row > * + * {
  margin-left: 16px;
}

.page-shell .detail-thumbnails > * + * {
  margin-left: 10px;
}

.page-shell .detail-main-media {
  width: calc(40vw - 24px);
  height: 40vw;
  max-width: calc(100% - 24px);
  max-height: 40vw;
  margin: 0 12px;
}

.page-shell .detail-thumbnails {
  width: calc(40vw - 24px);
  max-width: calc(100% - 24px);
  margin: 10px 12px 0 12px;
  padding-bottom: 0;
  scrollbar-width: none;
}

.page-shell .detail-thumbnails::-webkit-scrollbar {
  height: 0;
}

.page-shell .detail-cart-actions {
  gap: 0 !important;
}

.page-shell .detail-cart-actions > * + * {
  margin-left: 12px;
}

.page-shell .cart-shell {
  --cart-item-side: 14px;
  --cart-item-image-size: 112px;
  --cart-item-gutter: 18px;
  --cart-item-control-edge: 14px;
  --cart-item-meta-height: 36px;
  --cart-summary-width: 420px;
  --cart-summary-shell-width: 1060px;
  display: block;
}

.page-shell .cart-shell > * + *,
.page-shell .cart-list > * + * {
  margin-top: 4px;
}

.page-shell .cart-status[hidden] + .cart-list {
  margin-top: 0;
}

.page-shell .cart-list {
  display: block;
}

.page-shell .cart-item {
  --cart-title-font-size: 20px;
  --cart-quantity-width: 50px;
  --cart-divider-margin: 8px;
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 1060px;
  height: 140px;
  min-height: 140px;
  max-height: 140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--cart-item-side);
  padding-right: var(--cart-item-side);
  padding-bottom: var(--cart-item-side);
  padding-left: var(--cart-item-side);
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.page-shell .cart-item-image {
  position: absolute;
  top: var(--cart-item-side);
  left: var(--cart-item-side);
  width: var(--cart-item-image-size);
  min-width: var(--cart-item-image-size);
  max-width: var(--cart-item-image-size);
  height: var(--cart-item-image-size);
}

.page-shell .cart-item-body {
  position: relative;
  min-width: 0;
  height: var(--cart-item-image-size);
  min-height: var(--cart-item-image-size);
  max-height: var(--cart-item-image-size);
  margin-left: calc(var(--cart-item-image-size) + var(--cart-item-gutter));
  margin-right: 0;
  padding-bottom: 42px;
  box-sizing: border-box;
}

.page-shell .cart-item-body h2 {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: var(--cart-title-font-size);
  line-height: 1.3;
  max-height: 3.9em;
  overflow: hidden;
}

.page-shell .cart-item-body h2 a {
  max-height: 3.9em;
  overflow: hidden;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.page-shell .cart-item-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 36px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.page-shell .cart-item-meta > span:first-child {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}

.page-shell .cart-item-actions {
  position: absolute;
  right: 0;
  top: auto;
  bottom: 0;
  display: block;
  margin-left: 0;
  transform: none;
  white-space: nowrap;
}

.page-shell .cart-quantity-field {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: var(--cart-quantity-width);
  min-width: var(--cart-quantity-width);
  height: 34px;
  box-sizing: border-box;
}

.page-shell .cart-quantity-field input {
  display: block;
  width: 100%;
  height: 34px;
  padding-top: 0;
  padding-right: 8px;
  padding-bottom: 0;
  padding-left: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  line-height: 32px;
  text-align: center;
  outline: none;
}

.page-shell .cart-quantity-field input:focus {
  background: #111111;
  color: #ffffff;
}

.page-shell .cart-status {
  min-height: 20px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 4px;
  margin-left: 0;
  color: #b42318;
  font-size: 14px;
  line-height: 20px;
}

.page-shell .cart-status[hidden] {
  display: none;
}

.page-shell .cart-actions-divider {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-right: var(--cart-divider-margin);
  margin-bottom: 0;
  margin-left: var(--cart-divider-margin);
  transform: none;
}

.page-shell .cart-remove-form {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 430px) {
  .page-shell .cart-item {
    --cart-item-gutter: 5px;
  }

  .page-shell .cart-actions-divider {
    display: none;
  }

  .page-shell .cart-item-actions {
    font-size: 0;
  }

  .page-shell .cart-quantity-field,
  .page-shell .cart-remove-form {
    font-size: 18px;
  }

  .page-shell .cart-remove-form {
    margin-left: 0;
  }
}

.page-shell .cart-summary {
  display: block;
  width: 100%;
  max-width: var(--cart-summary-shell-width);
  margin-top: 4px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  box-sizing: border-box;
}

.page-shell .cart-summary-total {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.page-shell .cart-summary-total > span:first-child {
  display: block;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  transform: none;
  text-align: left;
}

.page-shell .cart-total-price {
  display: block;
  margin-top: 4px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  text-align: left;
}

.page-shell .cart-checkout-area {
  display: block;
  margin-top: 4px;
  transform: none;
}

.page-shell .cart-delivery-note {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 4px;
  margin-left: 0;
  transform: none;
  white-space: normal;
  text-align: left;
}

.page-shell .cart-checkout-btn {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  transform: none;
  box-sizing: border-box;
  text-align: center;
}

.page-shell .checkout-fields {
  display: block;
}

.page-shell .checkout-fields > * + * {
  margin-top: 18px;
}

.page-shell .checkout-fields-two {
  display: flex;
  flex-wrap: wrap;
}

.page-shell .checkout-fields-two > .checkout-field,
.page-shell .checkout-fields-two > .checkout-field-full,
.page-shell .checkout-fields-two > .checkout-country-field {
  width: 100%;
}

.page-shell .checkout-delivery-options,
.page-shell .checkout-marketplace-options,
.page-shell .checkout-pickup-layout {
  gap: 0 !important;
}

.page-shell .checkout-delivery-options {
  display: flex;
}

.page-shell .checkout-delivery-options > * {
  width: calc(50% - 6px);
}

.page-shell .checkout-delivery-options > * + * {
  margin-left: 12px;
}

.page-shell .checkout-marketplace-options {
  display: flex;
}

.page-shell .checkout-marketplace-options > * {
  width: calc(33.333% - 6.666px);
}

.page-shell .checkout-marketplace-options > * + * {
  margin-left: 10px;
}

.page-shell .checkout-pickup-layout {
  display: flex;
  align-items: flex-start;
}

.page-shell .checkout-pickup-layout > *:first-child {
  width: 57.5%;
}

.page-shell .checkout-pickup-layout > *:last-child {
  width: 42.5%;
  margin-left: 16px;
}

.page-shell .checkout-summary-delivery-copy {
  display: block;
}

.page-shell .checkout-summary-delivery-copy > * + * {
  margin-top: 3px;
}

.checkout-success-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.checkout-success-meta {
  margin-top: auto;
  margin-bottom: auto;
}

.checkout-success-meta > * + * {
  margin-top: 15px;
}

.checkout-success-row {
  display: grid;
  gap: 6px;
}

.checkout-success-row span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-success-row strong {
  font-size: 24px;
  line-height: 1.2;
}

.checkout-success-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.checkout-success-actions {
  display: flex;
  justify-content: flex-start;
}

.checkout-success-track-btn {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  justify-content: center;
  border-radius: 8px;
}

.tracking-frame {
  display: block;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.tracking-shell {
  display: block;
  width: 100%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.tracking-card {
  display: block;
  width: 100%;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.tracking-card > * + * {
  margin-top: 22px;
}

.tracking-card-head {
  display: block;
  margin: 0;
  padding: 0;
}

.tracking-card-head::after {
  content: "";
  display: block;
  margin-top: 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.tracking-card-head span,
.tracking-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tracking-section > * + * {
  margin-top: 12px;
}

.tracking-info-grid + .tracking-section {
  margin-top: 12px;
}

.tracking-section > .tracking-info-grid:first-child {
  margin-top: 0;
}

.tracking-info-grid {
  display: block;
  margin-top: 12px;
  margin-left: 0;
}

.tracking-info-grid > * {
  width: 100%;
  margin-top: 12px;
  margin-left: 0;
}

.tracking-info-grid > *:first-child {
  margin-top: 0;
}

.tracking-row {
  display: block;
  min-height: 48px;
}

.tracking-row > * + * {
  margin-top: 7px;
}

.tracking-row strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.tracking-row-wide {
  width: 100%;
}

.tracking-support-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
}

.tracking-change-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tracking-items {
  display: block;
}

.tracking-items > * + * {
  margin-top: 10px;
}

.tracking-item {
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tracking-item > * {
  min-width: 0;
}

.tracking-item > * + * {
  margin-left: 12px;
}

.tracking-item strong {
  flex: 1 1 auto;
  line-height: 1.3;
}

.tracking-item span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.detail-copy-block {
  display: block;
  padding-top: 9px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.detail-copy-head {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.detail-description {
  color: var(--text);
  line-height: 1.45;
}

.detail-delivery-copy {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.detail-delivery-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.delivery-api-note {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px dashed rgba(17, 17, 17, 0.35);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.02);
}

.delivery-api-note span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-api-note p {
  margin: 0;
  line-height: 1.55;
}

.product-image[data-product-url] {
  cursor: pointer;
}

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

body.is-lightbox-open {
  overflow: hidden;
}

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

.catalog-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.58);
}

.catalog-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
}

.catalog-lightbox-media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.catalog-lightbox-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.catalog-lightbox-arrow,
.catalog-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.catalog-lightbox-arrow span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.catalog-lightbox-arrow.is-left span {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.catalog-lightbox-arrow.is-right span {
  transform: rotate(45deg);
  margin-left: -4px;
}

.catalog-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 28px;
  line-height: 1;
}

.catalog-lightbox-footer {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.catalog-lightbox-title {
  font-size: 18px;
  line-height: 1.35;
}

.catalog-lightbox-counter {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-code-section,
.support-contact-section,
.support-faq-section,
.support-chat-shell {
  display: grid;
  gap: 18px;
}

.support-chat-entry-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.support-chat-entry-btn {
  min-width: 140px;
}

.checkout-inline-error {
  display: block;
  margin-top: 8px;
  color: #8a1f1f;
  font-size: 12px;
  line-height: 1.4;
}

.support-chat-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.support-chat-note-warning {
  color: #b42318;
}

.contact-form-shell .checkout-section-head + .support-chat-note-warning {
  margin-top: 6px;
  margin-bottom: 6px;
}

.contact-form-actions {
  display: grid;
  gap: 6px;
  margin-top: 0;
}

.contact-form-note {
  margin-top: 0;
}

.contact-form-submit {
  margin-top: 0;
}

.support-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.support-chat-head {
  align-items: flex-start;
}

.support-chat-head > div {
  display: grid;
  gap: 8px;
}

.support-chat-code {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-meta {
  display: grid;
  gap: 10px;
}

.support-chat-meta-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.support-chat-meta-line span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-meta-line strong {
  text-align: right;
  font-size: 15px;
  font-weight: 500;
}

.support-chat-stream {
  min-height: 360px;
  max-height: 560px;
  overflow-y: auto;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.support-chat-empty {
  color: var(--muted);
  font-size: 14px;
}

.support-chat-message {
  display: grid;
  gap: 8px;
  max-width: min(82%, 760px);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.support-chat-message-customer {
  justify-self: end;
  background: #111111;
  color: #ffffff;
}

.support-chat-message-admin {
  justify-self: start;
}

.support-chat-message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-message-customer .support-chat-message-meta span,
.support-chat-message-customer .support-chat-message-meta strong {
  color: rgba(255, 255, 255, 0.92);
}

.support-chat-message-body {
  white-space: pre-wrap;
  line-height: 1.6;
}

.support-chat-form {
  display: grid;
  gap: 14px;
}

.support-chat-form textarea {
  min-height: 140px;
}

/* Product page: one predictable wide layout, then one stacked narrow layout. */
.page-shell .detail-shell {
  --detail-column-gap: 10px;
  --detail-gallery-width: min(40vw, 520px);
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-shell .detail-frame.has-products {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.page-shell .detail-shell > * + * {
  margin-top: 10px;
}

.page-shell .detail-topbar {
  position: relative;
  display: block;
  min-height: 44px;
  margin-top: 0;
}

.page-shell .detail-back {
  display: inline-block;
}

.page-shell .detail-category-list {
  position: absolute;
  top: 4px;
  right: 4px;
  transform: none;
  line-height: 1;
}

.page-shell .detail-layout {
  display: block;
  width: 100%;
  min-width: 0;
}

.page-shell .detail-layout::after {
  content: "";
  display: block;
  clear: both;
}

.page-shell .detail-gallery-column {
  display: block;
  float: left;
  width: var(--detail-gallery-width);
  max-width: 100%;
}

.page-shell .detail-info-column {
  display: block;
  min-width: 0;
  margin-left: calc(var(--detail-gallery-width) + var(--detail-column-gap));
}

.page-shell .detail-title,
.page-shell .detail-description {
  overflow-wrap: break-word;
}

.page-shell .detail-title {
  margin-top: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.page-shell .detail-info-column > * + * {
  margin-top: 18px;
}

.page-shell .detail-main-media {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  aspect-ratio: 1 / 1;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.page-shell .detail-thumbnails {
  display: block !important;
  width: 100%;
  max-width: none;
  margin-top: 10px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.page-shell .detail-thumbnail {
  display: inline-block;
  vertical-align: top;
}

.page-shell .detail-inline-row {
  position: relative;
  display: block;
  min-height: 20px;
}

.page-shell .detail-variant-swatches {
  position: absolute;
  top: 0;
  right: 0;
}

.page-shell .detail-price-row {
  position: relative;
  display: block;
  min-height: 44px;
}

.page-shell .detail-price {
  display: inline-block;
  margin-top: 0;
}

.page-shell .detail-cart-controls {
  position: absolute;
  top: 0;
  right: 0;
  width: 328px;
  min-width: 328px;
  max-width: 328px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  margin-left: 0 !important;
  text-align: center;
}

.page-shell .detail-cart-actions {
  position: relative;
  display: block;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
}

.page-shell .detail-cart-actions .cart-quantity {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 116px;
  min-width: 116px;
  max-width: 116px;
  height: 34px;
  min-height: 34px;
  max-height: 34px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
}

.page-shell .detail-quantity-field {
  position: absolute;
  top: 0;
  left: 56px;
  display: block;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  margin-left: 0 !important;
  box-sizing: border-box;
}

.page-shell .detail-quantity-field input {
  display: block;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding-top: 0;
  padding-right: 4px;
  padding-bottom: 0;
  padding-left: 4px;
  border: 1px solid var(--line);
  border-radius: 999px 0 0 999px;
  box-sizing: border-box;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  line-height: 42px;
  text-align: center;
}

.page-shell .detail-quantity-field input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #111111 inset;
}

.page-shell .detail-quantity-field input:disabled {
  opacity: 0.55;
}

.page-shell .detail-quantity-confirm {
  position: absolute;
  top: 0;
  left: 99px;
  display: block;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  margin-left: 0 !important;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0 999px 999px 0;
  box-sizing: border-box;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.page-shell .detail-quantity-confirm svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-shell .detail-quantity-confirm:hover,
.page-shell .detail-quantity-confirm:focus-visible {
  background: #111111;
  color: #ffffff;
}

.page-shell .detail-quantity-confirm:disabled {
  opacity: 0.55;
  cursor: default;
}

.page-shell .detail-cart-swatches {
  position: absolute;
  top: 13px;
  right: 186px;
  left: auto;
  display: block;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  overflow: visible;
  margin-left: 0 !important;
  white-space: nowrap;
}

.page-shell .detail-cart-swatches > * + * {
  margin-left: 4px;
}

.page-shell .detail-cart-actions .cart-quantity-btn {
  position: absolute;
  top: 0;
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 15px;
  line-height: 32px;
  text-align: center;
}

.page-shell .detail-cart-actions .cart-quantity-btn:hover,
.page-shell .detail-cart-actions .cart-quantity-btn:focus-visible {
  background: #111111;
  color: #ffffff;
}

.page-shell .detail-cart-actions .cart-quantity-btn[data-action="decrease"] {
  left: 0;
}

.page-shell .detail-cart-actions .cart-quantity-btn[data-action="increase"] {
  right: 0;
}

.page-shell .detail-cart-actions [data-detail-quantity] {
  position: absolute;
  top: 0;
  left: 34px;
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  white-space: nowrap;
}

.page-shell .detail-go-cart-btn {
  position: absolute;
  top: 0;
  right: 5px;
  display: block;
  width: 176px;
  min-width: 176px;
  max-width: 176px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-left: 0 !important;
  box-sizing: border-box;
  line-height: 42px;
  text-align: center;
}

.page-shell [data-detail-add-form] {
  position: absolute;
  top: 0;
  right: 5px;
  display: block;
  width: 176px;
  min-width: 176px;
  max-width: 176px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  text-align: right;
}

.page-shell .detail-cart-controls.is-in-cart .detail-cart-swatches {
  right: auto;
  left: 12px;
}

.page-shell .detail-buy-btn {
  display: inline-block;
  width: 176px;
  min-width: 176px;
  max-width: 176px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  box-sizing: border-box;
  line-height: 42px;
  text-align: center;
}


@media (max-width: 860px) {
  .site-info-footer-inner {
    display: block;
    min-height: 360px;
    padding-top: 36px;
    padding-right: 18px;
    padding-bottom: 36px;
    padding-left: 18px;
  }

  .site-info-footer-column {
    padding-right: 0;
  }

  .site-info-footer-column + .site-info-footer-column {
    margin-top: 22px;
  }

  .page-shell .detail-shell {
    --detail-gallery-width: 100%;
  }

  .page-shell .detail-topbar {
    min-height: 44px;
  }

  .page-shell .detail-category-list {
    position: absolute;
    top: 4px;
    right: 4px;
    margin-top: 0;
    text-align: right;
    transform: none;
    line-height: 1;
  }

  .page-shell .detail-gallery-column {
    float: none;
    width: 100%;
    max-width: none;
  }

  .page-shell .detail-info-column {
    width: 100%;
    margin-top: 18px;
    margin-left: 0;
  }

  .page-shell .detail-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .page-shell .detail-price-row {
    min-height: 44px;
  }

  .page-shell .detail-cart-controls {
    position: absolute;
    top: 0;
    right: 0;
    width: 328px;
    min-width: 328px;
    max-width: 328px;
    margin-top: 0;
  }

  .page-shell .detail-cart-actions {
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    text-align: center;
  }

  .page-shell .detail-buy-btn,
  .page-shell .detail-go-cart-btn {
    width: 176px;
    box-sizing: border-box;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .page-shell .detail-price-row {
    min-height: 97px;
  }

  .page-shell .detail-price {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    text-align: left;
  }

  .page-shell .detail-cart-controls {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 97px;
    min-height: 97px;
    max-height: 97px;
  }

  .page-shell .detail-cart-actions {
    height: 97px;
    min-height: 97px;
    max-height: 97px;
  }

  .page-shell .detail-go-cart-btn {
    top: 53px;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    transform: none;
  }

  .page-shell [data-detail-add-form] {
    top: 53px;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .page-shell .detail-buy-btn {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .page-shell .detail-quantity-field {
    top: 0;
    left: 118px;
  }

  .page-shell .detail-quantity-confirm {
    top: 0;
    left: 161px;
  }

  .page-shell .detail-cart-swatches {
    top: 13px;
    left: 209px;
    right: auto;
  }

  .page-shell .detail-cart-controls.is-in-cart .detail-cart-swatches {
    top: 13px;
    left: 209px;
    right: auto;
  }

  .page-shell .detail-cart-controls:not(.is-in-cart) .detail-cart-swatches {
    right: 0;
    left: auto;
  }
}

.page-shell .checkout-frame {
  display: block;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.page-shell .checkout-frame .checkout-form {
  display: block;
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.page-shell .checkout-frame .checkout-form > * + * {
  margin-top: 20px;
}

.page-shell .checkout-frame .checkout-fields-two {
  display: block;
}

.page-shell .checkout-frame .checkout-section[hidden],
.page-shell .checkout-frame .checkout-summary[hidden],
.page-shell .checkout-frame .checkout-submit[hidden],
.page-shell .checkout-frame [data-delivery-panel][hidden] {
  display: none !important;
}

.page-shell .checkout-frame .checkout-marketplace-picker {
  display: block;
}

.page-shell .checkout-frame .checkout-delivery-suggestions {
  max-height: 220px;
  overflow-y: auto;
}

.page-shell .checkout-frame .checkout-delivery-suggestion {
  display: block;
  min-height: 0;
  padding: 12px 14px;
  text-align: left;
  white-space: normal;
}

.page-shell .checkout-frame .checkout-delivery-suggestion > * {
  display: block;
}

.page-shell .checkout-frame .checkout-delivery-suggestion > * + * {
  margin-top: 6px;
}

.page-shell .checkout-frame .checkout-delivery-suggestion-title {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-shell .checkout-frame .checkout-delivery-suggestion-line {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.page-shell .checkout-frame .checkout-delivery-suggestion-label {
  display: inline-block;
}

.page-shell .checkout-frame .checkout-delivery-suggestion-value {
  display: inline-block;
  margin-left: 14px;
  color: var(--text);
}

.page-shell .checkout-frame .checkout-delivery-suggestion:hover .checkout-delivery-suggestion-title,
.page-shell .checkout-frame .checkout-delivery-suggestion:focus-visible .checkout-delivery-suggestion-title,
.page-shell .checkout-frame .checkout-delivery-suggestion.is-selected .checkout-delivery-suggestion-title,
.page-shell .checkout-frame .checkout-delivery-suggestion:hover .checkout-delivery-suggestion-value,
.page-shell .checkout-frame .checkout-delivery-suggestion:focus-visible .checkout-delivery-suggestion-value,
.page-shell .checkout-frame .checkout-delivery-suggestion.is-selected .checkout-delivery-suggestion-value {
  color: #ffffff;
}

.page-shell .checkout-frame .checkout-delivery-suggestion:hover .checkout-delivery-suggestion-line,
.page-shell .checkout-frame .checkout-delivery-suggestion:focus-visible .checkout-delivery-suggestion-line,
.page-shell .checkout-frame .checkout-delivery-suggestion.is-selected .checkout-delivery-suggestion-line {
  color: rgba(255, 255, 255, 0.72);
}

.page-shell .checkout-frame .checkout-pickup-suggestions {
  max-height: 300px;
  overflow-y: auto;
}

.page-shell .checkout-frame .checkout-pickup-suggestion {
  display: block;
  min-height: 0;
  padding: 9px 12px;
  text-align: left;
  white-space: normal;
}

.page-shell .checkout-frame .checkout-pickup-suggestion > * {
  display: block;
}

.page-shell .checkout-frame .checkout-pickup-suggestion > * + * {
  margin-top: 3px;
}

.page-shell .checkout-frame .checkout-pickup-suggestion-code {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.page-shell .checkout-frame .checkout-pickup-suggestion-title {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-shell .checkout-frame .checkout-pickup-suggestion-address,
.page-shell .checkout-frame .checkout-pickup-suggestion-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.page-shell .checkout-frame .checkout-pickup-suggestion:hover .checkout-pickup-suggestion-code,
.page-shell .checkout-frame .checkout-pickup-suggestion:hover .checkout-pickup-suggestion-address,
.page-shell .checkout-frame .checkout-pickup-suggestion:hover .checkout-pickup-suggestion-meta,
.page-shell .checkout-frame .checkout-pickup-suggestion:focus-visible .checkout-pickup-suggestion-code,
.page-shell .checkout-frame .checkout-pickup-suggestion:focus-visible .checkout-pickup-suggestion-address,
.page-shell .checkout-frame .checkout-pickup-suggestion:focus-visible .checkout-pickup-suggestion-meta,
.page-shell .checkout-frame .checkout-pickup-suggestion.is-active .checkout-pickup-suggestion-code,
.page-shell .checkout-frame .checkout-pickup-suggestion.is-active .checkout-pickup-suggestion-address,
.page-shell .checkout-frame .checkout-pickup-suggestion.is-active .checkout-pickup-suggestion-meta {
  color: rgba(255, 255, 255, 0.72);
}

.page-shell .checkout-frame .checkout-pickup-suggestion:hover .checkout-pickup-suggestion-title,
.page-shell .checkout-frame .checkout-pickup-suggestion:focus-visible .checkout-pickup-suggestion-title,
.page-shell .checkout-frame .checkout-pickup-suggestion.is-active .checkout-pickup-suggestion-title {
  color: #ffffff;
}

.page-shell .checkout-success-frame {
  display: block;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.page-shell .checkout-success-shell {
  display: block;
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.page-shell .checkout-success-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 360px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  box-sizing: border-box;
  border-radius: 8px;
}

.page-shell .checkout-success-card > * + * {
  margin-top: 15px;
}

.page-shell .checkout-success-meta {
  margin-top: auto;
  margin-bottom: auto;
}

.page-shell .checkout-success-meta > * + * {
  margin-top: 15px;
}

.page-shell .checkout-success-row {
  display: block;
}

.page-shell .checkout-success-row > * + * {
  margin-top: 6px;
}

.page-shell .checkout-success-row strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
}

.page-shell .checkout-success-tracking-number {
  font-size: 16px !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-shell .checkout-success-track-btn {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border-radius: 8px;
}

@media (max-width: 430px) {
  .workspace {
    padding-top: 10px;
    padding-right: 4px;
    padding-bottom: 12px;
    padding-left: 4px;
  }

  .page-shell .checkout-frame {
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    border-radius: 22px;
  }

  .page-shell .checkout-frame .checkout-section {
    padding-top: 14px;
    padding-right: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
  }

  .page-shell .checkout-success-frame {
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    border-radius: 22px;
  }

  .page-shell .checkout-success-card {
    min-height: 320px;
    padding-top: 14px;
    padding-right: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
  }

  .page-shell .checkout-success-row strong {
    font-size: 18px;
  }

  .page-shell .checkout-success-tracking-number {
    font-size: 13px !important;
  }

  .tracking-frame {
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
  }

  .tracking-card {
    padding-top: 14px;
    padding-right: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
  }

  .tracking-row strong {
    font-size: 16px;
  }

  .tracking-cdek-line {
    display: block;
  }

  .tracking-cdek-btn {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
    margin-left: 0;
  }

  .tracking-item {
    display: block;
  }

  .tracking-item > * + * {
    margin-top: 6px;
    margin-left: 0;
  }

  .tracking-item span {
    display: block;
    white-space: normal;
  }
}
