@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --page-width: 1200px;
  --brand-red: #c6171d;
  --brand-red-dark: #b11118;
  --text-main: #212529;
  --text-soft: #6f7882;
  --line: #e4e7eb;
  --surface-soft: #fafafa;
  --surface-muted: #f4f6f8;
  --topbar: #393939;
  --footer: #090a0b;
  --green: #0aa844;
  --blue: #0f8fff;
  --heart: #7f8790;
  --shadow: 0 8px 22px rgba(25, 32, 41, 0.08);
  --accent: #1a56db;
  --font-body: "Inter", Arial, sans-serif;
  --radius: 6px;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

input,
select {
  outline: 0;
}

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

.container {
  width: min(var(--page-width), calc(100vw - 48px));
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

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

.site-announcement {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}

.flash-stack {
  display: grid;
  gap: 12px;
  padding-top: 20px;
}

.flash-message {
  padding: 14px 18px;
  border: 1px solid #d7dde4;
  background: #fff;
  color: #2b3440;
  box-shadow: var(--shadow);
}

.flash-message--success {
  border-color: #bde4c8;
  background: #f3fbf5;
}

.topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.topbar__inner,
.topbar__left,
.topbar__right,
.contact-item,
.header-actions,
.header-link,
.site-nav__inner,
.nav-list,
.gsa-badge,
.filter-panel__title,
.toolbar,
.toolbar__left,
.toolbar__right,
.view-toggle,
.title-price,
.rating-row,
.product-inline-meta,
.rating-pack,
.cta-row,
.qty-box,
.secondary-actions,
.pagination,
.pagination__controls,
.footer-bottom,
.meta-tags,
.detail-heading,
.detail-rating,
.detail-link-row,
.detail-tabs,
.detail-price-banner,
.detail-purchase,
.cart-card__header,
.cart-summary__row,
.cart-item__controls,
.cart-item__actions,
.cart-shipping-note {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  min-height: 54px;
}

.topbar__left,
.topbar__right {
  gap: 18px;
}

.contact-item,
.header-link {
  gap: 10px;
}

.divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.5);
}

.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid #d9dfe5;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.header-actions {
  gap: 28px;
  color: #3e454d;
  font-size: 16px;
  flex: 0 0 auto;
}

.header-search {
  flex: 1 1 520px;
  max-width: 620px;
  display: flex;
  align-items: stretch;
  min-height: 48px;
  margin: 0 28px;
  border: 1px solid #cfd6de;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: #20272f;
  background: transparent;
}

.header-search input::placeholder {
  color: #7d8792;
}

.header-search button {
  width: 52px;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  color: #fff;
}

.topbar__auth-form {
  display: contents;
}

.topbar__auth-button {
  color: inherit;
  font: inherit;
}

.brand-logo {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
}

.header-link strong {
  font-weight: 700;
}

.header-link i,
.shop-tab i,
.filter-panel__title i,
.shipping i,
.btn i,
.newsletter-form i,
.cart-shipping-note i,
.favorite-badge i,
.cart-icon-btn i {
  flex: 0 0 auto;
}

.site-nav {
  background: var(--surface-soft);
  border-bottom: 1px solid #eef0f3;
}

.site-nav__inner {
  justify-content: space-between;
  min-height: 58px;
  gap: 24px;
}

.nav-list {
  flex-wrap: wrap;
  gap: 0;
}

.nav-list > a,
.nav-list > .nav-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  color: #23282d;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 20;
  min-width: 210px;
  display: none;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #23282d;
  font-size: 14px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
}

.shop-tab {
  min-width: 170px;
  background: var(--brand-red);
  color: #fff !important;
  justify-content: flex-start !important;
  gap: 10px;
}

.gsa-badge {
  gap: 10px;
  flex: 0 0 auto;
}

.gsa-box {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #0c5fa8;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.gsa-copy {
  display: grid;
  gap: 2px;
}

.gsa-copy strong {
  font-size: 13px;
  font-weight: 700;
}

.gsa-copy span {
  font-size: 10px;
}

.catalog {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 28px;
  padding-top: 50px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #6b7680;
  font-size: 14px;
  letter-spacing: 0.01em;
}

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

.filter-panel__title {
  min-height: 54px;
  padding: 0 18px;
  gap: 10px;
  background: #22262b;
  color: #fff;
  font-size: 18px;
}

.filter-group {
  border-top: 1px solid var(--line);
}

.filter-row {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12px;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  color: #626d77;
  font-size: 15px;
  line-height: 1.25;
  background: #fff;
  cursor: pointer;
}

.filter-row::-webkit-details-marker {
  display: none;
}

.filter-group[open] .filter-row .chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.filter-content {
  display: grid;
  gap: 14px;
  padding: 2px 16px 18px;
  background: #fff;
}

.filter-input,
.check-row {
  display: grid;
  gap: 8px;
  color: #59636d;
  font-size: 13px;
  line-height: 1.35;
  min-width: 0;
}

.filter-input input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d5dbe2;
  background: #fff;
  color: #2e3741;
}

.check-row {
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.filter-actions {
  padding: 16px;
  border-top: 1px solid var(--line);
}

.catalog-content {
  min-width: 0;
}

.toolbar {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.toolbar__left {
  gap: 18px;
}

.view-toggle {
  gap: 10px;
}

.toggle {
  width: 50px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dbe2;
  border-radius: var(--radius);
  background: #fff;
  color: #6a737c;
}

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

.results-text {
  color: #4c5660;
  font-size: 14px;
}

.toolbar__right {
  gap: 16px;
}

.select-block {
  display: grid;
  gap: 10px;
  color: #707983;
  font-size: 14px;
}

.select-pill {
  min-width: 144px;
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #ced5dc;
  border-radius: 999px;
  background: #fff;
  color: #707983;
}

.select-pill--small {
  min-width: 105px;
}

.select-native {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #707983 50%),
    linear-gradient(135deg, #707983 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 16px,
    calc(100% - 16px) 16px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.product-card,
.detail-card,
.detail-specs,
.cart-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.product-media-link {
  display: block;
}

.product-image,
.detail-main-image,
.detail-thumb-image,
.cart-item__image {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: grid;
  place-items: center;
}

.product-image {
  height: 260px;
  margin: 10px 10px 0;
  border-radius: var(--radius);
}

.favorite-card-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #6f7781;
  display: grid;
  place-items: center;
  border: 1px solid #e6eaee;
}

.favorite-card-btn--active {
  color: var(--brand-red);
}

.detail-main-image {
  height: 520px;
}

.detail-thumb-image {
  width: 100%;
  height: 138px;
}

.cart-item__image {
  width: 254px;
  height: 212px;
}

.product-photo,
.detail-photo,
.detail-thumb-image,
.cart-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.product-image--fallback {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, #eef2f5, #dbe1e8);
}

.product-image::before,
.product-image::after,
.detail-main-image::before,
.detail-main-image::after,
.detail-thumb-image::before,
.detail-thumb-image::after,
.cart-item__image::before,
.cart-item__image::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-image--repairer,
.detail-main-image.product-image--repairer,
.detail-thumb-image.product-image--repairer,
.cart-item__image.product-image--repairer {
  background:
    linear-gradient(180deg, rgba(29, 36, 42, 0.15), rgba(255, 255, 255, 0.15)),
    linear-gradient(90deg, #b8b7b0 0 22%, #d8d9d5 22% 78%, #c6c6c0 78% 100%);
}

.product-image--repairer::before,
.detail-main-image.product-image--repairer::before,
.detail-thumb-image.product-image--repairer::before,
.cart-item__image.product-image--repairer::before {
  inset: auto 14% 0 48%;
  height: 58%;
  border-radius: 70px 70px 0 0;
  background: linear-gradient(180deg, #31485d 0, #1e3140 100%);
}

.product-image--repairer::after,
.detail-main-image.product-image--repairer::after,
.detail-thumb-image.product-image--repairer::after,
.cart-item__image.product-image--repairer::after {
  inset: 12% auto auto 4%;
  width: 22%;
  height: 84%;
  border-radius: 50px;
  background: radial-gradient(circle at 50% 84%, #2d3238 0 26px, #5c6770 27px 40px, transparent 41px),
    linear-gradient(90deg, #696f75 0 18px, transparent 18px);
}

.product-image--military,
.product-image--military-alt,
.detail-main-image.product-image--military,
.detail-main-image.product-image--military-alt,
.detail-thumb-image.product-image--military,
.detail-thumb-image.product-image--military-alt,
.cart-item__image.product-image--military,
.cart-item__image.product-image--military-alt {
  background:
    radial-gradient(circle at 18% 82%, #4b3629 0 12px, transparent 13px),
    radial-gradient(circle at 28% 88%, #6b6e6e 0 22px, transparent 23px),
    linear-gradient(138deg, #6f7150 0 20%, #393926 20% 38%, #83734d 38% 55%, #2f3a2a 55% 74%, #61553d 74% 100%);
}

.product-image--military::before,
.product-image--military-alt::before,
.detail-main-image.product-image--military::before,
.detail-main-image.product-image--military-alt::before,
.detail-thumb-image.product-image--military::before,
.detail-thumb-image.product-image--military-alt::before,
.cart-item__image.product-image--military::before,
.cart-item__image.product-image--military-alt::before {
  inset: 10% 10% auto 20%;
  height: 8%;
  background: linear-gradient(90deg, #1d2329, #313840);
  transform: rotate(-18deg);
  transform-origin: left center;
}

.product-image--military::after,
.product-image--military-alt::after,
.detail-main-image.product-image--military::after,
.detail-main-image.product-image--military-alt::after,
.detail-thumb-image.product-image--military::after,
.detail-thumb-image.product-image--military-alt::after,
.cart-item__image.product-image--military::after,
.cart-item__image.product-image--military-alt::after {
  inset: 28% 18% 10% 26%;
  background:
    repeating-linear-gradient(90deg, #c6aa72 0 6px, #6e5d3b 6px 12px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  border: 6px solid rgba(31, 36, 42, 0.42);
  transform: rotate(14deg);
}

.product-image--jacket,
.detail-main-image.product-image--jacket,
.detail-thumb-image.product-image--jacket,
.cart-item__image.product-image--jacket {
  background:
    linear-gradient(180deg, #d7dadd 0 60%, #e7eaed 60% 82%, #cdc6bb 82% 100%);
}

.product-image--jacket::before,
.detail-main-image.product-image--jacket::before,
.detail-thumb-image.product-image--jacket::before,
.cart-item__image.product-image--jacket::before {
  inset: auto 26% 0 26%;
  height: 42%;
  background:
    linear-gradient(90deg, #9c2f21 0 18%, transparent 18% 82%, #9c2f21 82% 100%),
    linear-gradient(90deg, transparent 0 25%, #f2c628 25% 75%, transparent 75% 100%),
    linear-gradient(180deg, #223748 0 100%);
  clip-path: polygon(26% 0, 74% 0, 86% 38%, 100% 100%, 0 100%, 14% 38%);
}

.product-image--wheel,
.detail-main-image.product-image--wheel,
.detail-thumb-image.product-image--wheel,
.cart-item__image.product-image--wheel {
  background:
    linear-gradient(180deg, #efe6d0 0 30%, #cfb78f 30% 52%, #dfc69d 52% 100%);
}

.product-image--wheel::before,
.detail-main-image.product-image--wheel::before,
.detail-thumb-image.product-image--wheel::before,
.cart-item__image.product-image--wheel::before {
  inset: 10% 34% auto 34%;
  height: 68%;
  background:
    radial-gradient(circle at 50% 18%, #9aa8b4 0 18px, transparent 19px),
    radial-gradient(circle at 24% 88%, #8d9193 0 26px, #1f2328 27px 38px, transparent 39px),
    radial-gradient(circle at 76% 88%, #8d9193 0 26px, #1f2328 27px 38px, transparent 39px),
    linear-gradient(180deg, #c9d4dd 0, #8f9aa4 100%);
}

.product-image--wheel::after,
.detail-main-image.product-image--wheel::after,
.detail-thumb-image.product-image--wheel::after,
.cart-item__image.product-image--wheel::after {
  inset: 22% 26% auto 26%;
  height: 36%;
  background:
    radial-gradient(circle at 50% 0, transparent 0 28px, #a7b2bc 29px 40px, transparent 41px),
    radial-gradient(circle at 16% 18%, #d8e0e6 0 16px, #8c99a5 17px 20px, transparent 21px),
    radial-gradient(circle at 84% 18%, #d8e0e6 0 16px, #8c99a5 17px 20px, transparent 21px),
    radial-gradient(circle at 50% 50%, #d8e0e6 0 16px, #8c99a5 17px 20px, transparent 21px);
}

.product-image--toolkit,
.detail-main-image.product-image--toolkit,
.detail-thumb-image.product-image--toolkit,
.cart-item__image.product-image--toolkit {
  background:
    linear-gradient(135deg, #694e3e 0 18%, #222629 18% 100%);
}

.product-image--toolkit::before,
.detail-main-image.product-image--toolkit::before,
.detail-thumb-image.product-image--toolkit::before,
.cart-item__image.product-image--toolkit::before {
  inset: 8% 10% 18% 10%;
  background:
    repeating-linear-gradient(90deg, #646f76 0 10px, transparent 10px 24px),
    repeating-linear-gradient(180deg, #7d868c 0 8px, transparent 8px 26px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 8px solid #40464b;
  border-radius: 2px;
}

.product-image--toolkit::after,
.detail-main-image.product-image--toolkit::after,
.detail-thumb-image.product-image--toolkit::after,
.cart-item__image.product-image--toolkit::after {
  inset: 48% 16% 8% 16%;
  background:
    repeating-linear-gradient(90deg, #929da6 0 8px, transparent 8px 16px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-width: 56px;
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.badge--stock {
  background: var(--green);
}

.badge--sale {
  background: var(--blue);
}

.badge--promo {
  background: var(--brand-red);
}

.product-meta {
  display: grid;
  flex: 1;
  align-content: start;
  padding: 18px 14px 16px;
}

.title-price {
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.title-price h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #15181c;
  white-space: nowrap;
}

.price-label {
  display: block;
  margin-bottom: 2px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-sale-note {
  margin: -4px 0 10px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.old-price {
  margin-right: 8px;
  color: #a6a6a6;
  font-size: 14px;
  text-decoration: line-through;
  font-weight: 400;
}

.vendor-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.subtext {
  margin: 0 0 14px;
  color: #33383e;
  font-size: 14px;
  line-height: 1.4;
}

.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px;
  border-radius: 999px;
  background: #2e3338;
  vertical-align: middle;
}

.product-inline-meta {
  justify-content: space-between;
  gap: 10px 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: #4f5963;
  font-size: 14px;
}

.rating-pack {
  gap: 4px;
}

.product-data-list {
  margin: 0 0 16px;
  display: grid;
  gap: 7px;
  color: #4f5963;
  font-size: 13px;
}

.product-data-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
}

.product-data-list dt {
  color: #7a838d;
  font-weight: 600;
}

.product-data-list dd {
  margin: 0;
  min-width: 0;
  color: #252d36;
  overflow-wrap: anywhere;
}

.inline-sku {
  color: #69737d;
  font-size: 13px;
  white-space: nowrap;
}

.stars {
  color: #f7bb00;
  font-size: 18px;
  line-height: 1;
}

.shipping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #727b84;
}

.cta-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.qty {
  display: grid;
  gap: 8px;
  color: #3f4650;
  font-size: 14px;
}

.qty-box {
  border: 1px solid #d8dde3;
  border-radius: var(--radius);
  min-height: 46px;
  overflow: hidden;
}

.qty-box button,
.qty-box strong {
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
}

.qty-box button {
  color: #20252a;
  font-size: 28px;
  line-height: 1;
}

.qty-box strong {
  font-size: 16px;
  font-weight: 500;
}

.qty-box--detail {
  min-width: 126px;
  justify-content: space-between;
}

.qty-box--detail strong {
  width: auto;
  min-width: 32px;
  font-size: 18px;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  min-width: 0;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:not(.btn--wide) {
  width: auto;
  flex: 0 0 auto;
}

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

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

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn--ghost {
  border-color: #cdd4db;
  color: #4d5660;
  background: #fff;
}

.btn--ghost:hover {
  border-color: #cdd4db;
  color: #4d5660;
  background: #fff;
}

.btn--small {
  min-height: 38px;
  padding: 0 14px;
}

.btn--wide {
  width: 100%;
  min-height: 48px;
}

.btn--checkout {
  min-height: 124px;
  font-size: 27px;
  font-weight: 400;
}

.btn--success {
  background: #148a3b;
  border-color: #148a3b;
  color: #fff;
}

.btn--success:hover {
  background: #148a3b;
  border-color: #148a3b;
  color: #fff;
}

.btn--ghost.btn--success {
  background: #148a3b;
  border-color: #148a3b;
  color: #fff;
}

.btn--ghost.btn--success:hover {
  background: #148a3b;
  border-color: #148a3b;
  color: #fff;
}

.secondary-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 10px;
}

.secondary-actions .btn {
  min-width: 0;
  width: 100%;
  padding: 0 10px;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px dashed #d5dbe2;
  color: #606974;
  font-size: 16px;
}

.empty-state--error {
  padding: 24px;
  text-align: center;
  line-height: 1.5;
}

.pagination {
  justify-content: space-between;
  gap: 24px;
  padding: 60px 0 94px;
}

.auth-page {
  display: grid;
  place-items: center;
  padding: 42px 16px 92px;
  background: linear-gradient(180deg, #f4f4f4 0, #f9f9f9 100%);
}

.auth-card {
  width: min(100%, 560px);
  padding: 42px 48px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(34, 41, 48, 0.12);
}

.auth-card--wide {
  width: min(100%, 820px);
}

.auth-heading {
  text-align: center;
  margin-bottom: 28px;
}

.auth-heading h1 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 700;
  color: #1a2741;
}

.auth-heading p {
  margin: 0;
  color: #5b6775;
  font-size: 16px;
}

.auth-heading a,
.checkbox-line a {
  font-weight: 700;
  color: #152a4a;
}

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

.auth-form--signup {
  gap: 16px;
}

.auth-form--inline {
  margin-top: 18px;
  justify-items: center;
}

.auth-link-button,
.auth-secondary-link a {
  color: #152a4a;
  font-weight: 700;
}

.auth-secondary-link {
  margin: 0;
  text-align: center;
}

.auth-input--otp {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

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

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

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

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

.field-group label {
  color: #55606d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.required-mark {
  color: var(--brand-red);
}

.auth-input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d5dbe2;
  border-radius: var(--radius);
  background: #fff;
}

textarea.auth-input {
  padding: 12px 14px;
  line-height: 1.5;
}

.password-shell {
  position: relative;
}

.password-shell .auth-input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  display: grid;
  place-items: center;
  color: #5f6872;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #323a43;
  font-size: 14px;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-errors,
.field-error {
  color: #c6171d;
  font-size: 13px;
  line-height: 1.5;
}

.form-errors {
  padding: 12px 14px;
  border: 1px solid #efc5c7;
  background: #fff4f4;
}

.form-errors p,
.field-error {
  margin: 0;
}

.auth-submit {
  min-height: 42px;
  font-size: 18px;
  font-weight: 700;
}

.pagination__controls {
  gap: 12px;
  margin-left: auto;
  flex-wrap: wrap;
}

.page-arrow,
.page-number,
.page-ellipsis {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #181d21;
  padding: 0 8px;
}

.page-arrow,
.page-number {
  border: 0;
  background: transparent;
}

.page-arrow {
  font-size: 34px;
  color: #29323a;
}

.page-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}

.page-number--active {
  background: #344650;
  color: #fff;
  border-radius: 999px;
}

.page-number:hover:not(.page-number--active),
.page-arrow:hover:not([disabled]) {
  color: var(--brand-red);
}

.product-page,
.cart-page {
  padding-top: 50px;
  padding-bottom: 50px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 34px;
  padding: 34px;
  margin-bottom: 42px;
}

.detail-gallery {
  display: grid;
  gap: 18px;
}

.favorite-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #24292f;
  border: 1px solid #e2e6eb;
}

.favorite-badge--active {
  color: var(--brand-red);
  border-color: #f2c7cb;
}

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

.detail-thumb {
  padding: 0;
  border: 1px solid #e1e5ea;
  background: #fff;
}

.detail-thumb--active {
  border-color: #c8ced6;
}

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

.detail-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.detail-category {
  margin-bottom: 8px;
  color: #4a5560;
  font-size: 17px;
}

.detail-heading h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.detail-sale-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  min-height: 30px;
  padding: 0 12px;
  background: #fdebec;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-rating {
  gap: 4px;
  padding-top: 44px;
  white-space: nowrap;
}

.stock-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 15px;
}

.stock-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
}

.detail-link-row {
  justify-content: flex-end;
  gap: 8px;
  margin-top: -4px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e7ec;
  color: #444d56;
}

.detail-link-row a {
  text-decoration: underline;
}

.detail-arrow {
  font-size: 28px;
  line-height: 1;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e7ec;
}

.detail-meta-grid div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.detail-meta-grid span {
  color: #38424b;
}

.detail-meta-grid strong {
  color: #191d22;
  font-weight: 500;
  text-align: right;
}

.detail-price-banner {
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px;
  background: var(--surface-muted);
}

.detail-price-banner__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.detail-price-banner__price strong {
  color: var(--brand-red);
  font-size: 26px;
  font-weight: 700;
}

.detail-price-banner__saving {
  color: #606974;
  font-size: 14px;
}

.detail-purchase {
  justify-content: space-between;
  gap: 20px;
}

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

.detail-purchase > div {
  display: grid;
  gap: 10px;
  color: #6b7480;
  font-size: 15px;
}

.detail-purchase strong {
  color: #161a1f;
  font-size: 20px;
  font-weight: 700;
}

.detail-description {
  margin: 0;
  color: #5f6872;
  font-size: 15px;
  line-height: 1.6;
}

.detail-specs {
  padding: 34px;
}

.detail-tabs {
  gap: 12px;
  margin-bottom: 34px;
}

.detail-tab {
  min-height: 28px;
  padding: 0 16px;
  border-radius: 3px;
  color: #2e343b;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
}

.detail-tab--active {
  background: #f6d3d7;
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel--active {
  display: block;
}

.detail-specs h2 {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 700;
}

.spec-table {
  border: 1px solid #e3e8ec;
}

.spec-table__head,
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.spec-table__head {
  background: #eef2f5;
  padding: 18px 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
}

.spec-row {
  padding: 22px 20px;
  border-top: 1px solid #edf1f5;
  color: #313841;
  font-size: 15px;
}

.spec-row--empty {
  color: #69737d;
}

.detail-description-panel {
  color: #38424c;
  font-size: 15px;
  line-height: 1.7;
}

.detail-description-panel p {
  margin: 0 0 14px;
}

.product-page {
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.72), rgba(255, 255, 255, 0) 320px);
}

.product-page .breadcrumbs {
  color: #6d7782;
  font-size: 14px;
  margin-bottom: 18px;
}

.detail-card {
  border: 1px solid #eef1f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(33, 37, 41, 0.08);
}

.detail-gallery--showcase {
  align-content: start;
}

.detail-main-image--showcase {
  min-height: 560px;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f8fafc 0%, #fff 42%, #f1f4f7 100%);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.detail-main-image--showcase .detail-photo {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 34px;
  mix-blend-mode: multiply;
}

.detail-photo-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: #7a8490;
  font-size: 15px;
}

.detail-thumbs--gallery {
  display: flex;
  grid-template-columns: none;
  justify-content: start;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.detail-thumbs--gallery::-webkit-scrollbar {
  display: none;
}

.detail-thumb-scroller {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}

.detail-thumb-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #d7dde4;
  border-radius: 50%;
  background: #fff;
  color: #2f3740;
  box-shadow: 0 8px 18px rgba(20, 26, 32, 0.08);
}

.detail-thumb-arrow:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.detail-thumbs--gallery .detail-thumb {
  flex: 0 0 108px;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.detail-thumbs--gallery .detail-thumb:hover,
.detail-thumbs--gallery .detail-thumb--active {
  border-color: var(--brand-red);
  box-shadow: 0 10px 22px rgba(198, 23, 29, 0.13);
  transform: translateY(-1px);
}

.detail-thumbs--gallery .detail-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.detail-info {
  gap: 18px;
}

.detail-category {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0f3f6;
  color: #44505c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-heading h1 {
  max-width: 680px;
  margin-top: 12px;
  color: #101418;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.detail-summary {
  max-width: 720px;
  color: #5c6672;
  font-size: 15px;
  line-height: 1.65;
}

.detail-summary p {
  margin: 0;
}

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

.detail-fact {
  min-height: 82px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e7ebef;
  border-radius: 6px;
  background: #fbfcfd;
}

.detail-fact span {
  color: #74808c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-fact strong {
  color: #18202a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.detail-price-banner {
  display: grid;
  grid-template-columns: minmax(130px, auto) 1fr;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #edf0f3;
  background: linear-gradient(135deg, #fff7f7 0%, #f5f7fa 100%);
}

.detail-price-banner__price strong {
  font-size: 34px;
}

.detail-price-banner__saving {
  line-height: 1.5;
}

.detail-purchase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  background: #fff;
}

.detail-purchase > div:last-child {
  justify-items: end;
}

.detail-actions .btn,
#detailBuyNow {
  min-height: 48px;
  border-radius: 6px;
}

.detail-specs {
  border: 1px solid #eef1f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 37, 41, 0.06);
}

.detail-specs h2 {
  font-size: 24px;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
}

.overview-copy,
.overview-spec-card {
  min-width: 0;
}

.overview-copy h3,
.overview-spec-card h3 {
  margin: 0 0 16px;
  color: #151a20;
  font-size: 16px;
  font-weight: 800;
}

.overview-copy {
  color: #3f4a55;
  line-height: 1.75;
}

.overview-copy p:last-child {
  margin-bottom: 0;
}

.overview-spec-card {
  padding: 22px;
  border: 1px solid #e7ebef;
  border-radius: 8px;
  background: #fbfcfd;
}

.overview-spec-list {
  display: grid;
  gap: 0;
}

.overview-spec-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #e8edf2;
}

.overview-spec-list div:first-child {
  border-top: 0;
}

.overview-spec-list span {
  color: #737f8c;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.overview-spec-list strong {
  color: #1d252e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.quick-view-modal[hidden] {
  display: none;
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quick-view-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 26, 0.58);
}

.quick-view-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 20, 26, 0.28);
}

.quick-view-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dfe4ea;
  color: #252d36;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 34px;
}

.quick-view-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid #eef1f4;
  background: #fff;
}

.quick-view-photo {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.quick-view-copy h2 {
  margin: 8px 44px 12px 0;
  color: #181d22;
  font-size: 28px;
  line-height: 1.25;
}

.quick-view-price {
  margin-bottom: 18px;
}

.product-data-list--modal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin-bottom: 18px;
}

.product-data-list--modal div {
  grid-template-columns: 128px minmax(0, 1fr);
}

.quick-view-description {
  max-height: 150px;
  overflow: auto;
  color: #4f5963;
  font-size: 14px;
  line-height: 1.6;
}

.quick-view-actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.cart-edit,
.order-summary,
.favorites-panel {
  background: #fff;
  border: 1px solid #d7dde4;
}

.cart-edit__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #dbe1e7;
}

.cart-step {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.cart-edit__header h1 {
  margin: 0;
  color: #093c83;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cart-collapse {
  margin-left: auto;
  color: #204f8d;
  font-size: 18px;
}

.cart-edit__items {
  padding: 24px 18px 0;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 130px 150px 130px 54px;
  gap: 18px;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid #dbe1e7;
}

.cart-row__product {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.cart-row__image,
.summary-item__image,
.favorite-item__image {
  border: 1px solid #d8dde4;
  background: #fff;
}

.cart-row__image {
  width: 80px;
  height: 80px;
}

.cart-row__copy h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.cart-row__copy p,
.summary-item__copy p {
  margin: 0;
  color: #5f6770;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-row__price,
.cart-row__total {
  font-size: 14px;
  font-weight: 600;
  color: #11161a;
}

.cart-row__qty {
  display: flex;
  justify-content: center;
}

.qty-pill {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: 122px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #d6dce3;
  border-radius: 999px;
}

.qty-pill button {
  font-size: 24px;
  color: #637081;
}

.qty-pill strong {
  font-size: 18px;
  font-weight: 500;
}

.cart-row__actions {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.cart-mini-btn {
  color: #607080;
  font-size: 18px;
}

.cart-mini-btn--active {
  color: var(--brand-red);
}

.cart-edit__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 26px 18px 18px;
}

.cart-edit__continue {
  min-height: 54px;
  flex: none;
}

.cart-edit__next {
  min-height: 54px;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  position: relative;
}

.cart-edit__next-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 100%;
  display: grid;
  place-items: center;
  border-left: 4px solid rgba(255,255,255,0.9);
}

.order-summary {
  padding: 16px 14px 14px;
}

.order-summary h2 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 400;
}

.order-summary__head,
.summary-item,
.order-summary__totals div,
.order-summary__grand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 72px;
  gap: 14px;
  align-items: start;
}

.order-summary__head {
  padding: 10px 0;
  border-bottom: 1px solid #dbe1e7;
  color: #5b6570;
  font-size: 12px;
}

.order-summary__items {
  border-bottom: 1px solid #dbe1e7;
}

.summary-item {
  padding: 10px 0 14px;
  border-bottom: 1px solid #edf1f5;
  font-size: 12px;
}

.summary-item:last-child {
  border-bottom: 0;
}

.summary-item__product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
}

.summary-item__image {
  width: 58px;
  height: 34px;
}

.summary-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.summary-item__copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

.order-summary__totals {
  padding: 14px 0 12px;
  border-bottom: 1px solid #dbe1e7;
}

.order-summary__totals div {
  padding: 4px 0;
  grid-template-columns: minmax(0, 1fr) 1fr;
}

.order-summary__totals strong,
.order-summary__grand strong {
  justify-self: end;
  font-weight: 500;
}

.order-summary__grand {
  padding-top: 16px;
  grid-template-columns: minmax(0, 1fr) 1fr;
  font-size: 15px;
  font-weight: 700;
}

.favorites-page {
  padding-top: 50px;
  padding-bottom: 92px;
}

.checkout-page {
  padding: 42px 0 94px;
  background: #eeeeef;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: 34px;
  align-items: start;
}

.checkout-panel,
.checkout-summary,
.checkout-assurance {
  background: #fff;
  border: 1px solid #dde3ea;
}

.checkout-heading {
  min-height: 150px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid #dfe4ea;
}

.checkout-heading h1,
.checkout-review__hero h1,
.confirmation-hero h1 {
  margin: 0 0 18px;
  color: #2b3440;
  font-size: 30px;
  font-weight: 600;
}

.checkout-heading p,
.checkout-review__hero p,
.confirmation-hero p,
.review-card p {
  margin: 0;
  color: #20262d;
  font-size: 15px;
  line-height: 1.6;
}

.checkout-heading a,
.checkout-terms a,
.review-card__head a {
  color: var(--brand-red);
  font-weight: 600;
}

.checkout-section {
  padding: 24px;
  border-bottom: 1px solid #dfe4ea;
}

.checkout-section h2,
.review-card__head h2 {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #252e38;
  font-size: 18px;
  font-weight: 600;
}

.checkout-section h2 span,
.review-card__head h2 span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1f252c;
  color: #fff;
  font-size: 13px;
}

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

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

.checkout-grid label,
.checkout-card-number {
  display: grid;
  gap: 8px;
  color: #222930;
  font-size: 13px;
}

.checkout-input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #cfd7df;
  border-radius: 6px;
  background: #fff;
  color: #303841;
}

.checkout-input:focus {
  border-color: #9aa6b2;
  box-shadow: 0 0 0 3px rgba(34, 41, 48, 0.08);
}

.stripe-card-element {
  min-height: 48px;
  padding: 14px 16px;
}

.cybersource-microform-field {
  min-height: 48px;
  padding: 14px 16px;
}

.field-error {
  color: #b42318;
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.payment-card-entry {
  border: 1px solid #d9e1ea;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.payment-card-entry__head {
  align-items: center;
  border-bottom: 1px solid #edf1f5;
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
}

.payment-card-entry__head span {
  align-items: center;
  background: #f4f6f8;
  color: #172338;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.payment-card-entry__head h3 {
  color: #172338;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.payment-card-entry__head p {
  color: #667085;
  margin: 0;
}

.payment-card-entry .auth-input,
.payment-card-entry .stripe-card-element {
  background: #fff;
  border-color: #cfd8e3;
  min-height: 46px;
}

.payment-card-entry__error {
  margin: 0;
}

.checkout-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #1e242b;
  font-size: 13px;
}

.checkout-check-input,
.checkout-choice-input {
  accent-color: var(--brand-red);
}

.checkout-radio-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #d4dbe2;
  border-radius: 6px;
}

.checkout-radio-list label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 180px 80px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #d4dbe2;
  color: #28313b;
  font-size: 13px;
}

.checkout-radio-list label:last-child {
  border-bottom: 0;
}

.checkout-radio-list small {
  color: #6b7580;
}

.checkout-radio-list strong {
  justify-self: end;
  color: #08a94f;
  font-weight: 500;
}

.checkout-payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.checkout-payment-tabs label {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid #d6dde4;
  color: #181d22;
  font-size: 18px;
  font-weight: 600;
}

.checkout-payment-tabs label:has(input:checked) {
  border-color: var(--brand-red);
  background: #fff3f3;
}

.checkout-test-card {
  margin-bottom: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #d6dde4;
  background: #f7f9fb;
}

.checkout-test-card div {
  display: grid;
  gap: 4px;
}

.checkout-test-card strong {
  color: #1f2933;
  font-size: 14px;
}

.checkout-test-card span {
  color: #5c6670;
  font-size: 13px;
}

.checkout-test-card button {
  min-height: 38px;
  padding: 0 14px;
  flex: 0 0 auto;
  background: #1f2933;
  color: #fff;
  font-weight: 600;
}

.checkout-test-card button:hover {
  background: #1f2933;
  color: #fff;
}

.checkout-payment-tabs i {
  font-size: 24px;
}

.checkout-saved-cards {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.checkout-saved-card {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #d6dde4;
  border-radius: 8px;
  background: #fff;
  color: #232b33;
  cursor: pointer;
}

.checkout-saved-card:has(input:checked) {
  border-color: var(--brand-red);
  background: #fff5f5;
  box-shadow: 0 8px 18px rgba(198, 23, 31, 0.08);
}

.checkout-saved-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-red);
}

.checkout-saved-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #e0e6ed;
  border-radius: 999px;
  color: #334155;
  background: #f7f9fb;
}

.checkout-saved-card__body {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.checkout-saved-card__body strong {
  color: #172338;
  font-size: 15px;
  line-height: 1.25;
  text-transform: capitalize;
}

.checkout-saved-card__body small {
  color: #637083;
  font-size: 13px;
  line-height: 1.35;
}

.checkout-saved-card em {
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef6f1;
  color: #28724f;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.checkout-card-number {
  margin-bottom: 18px;
}

.checkout-saved-address {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
  color: #38424c;
  font-size: 14px;
  font-weight: 600;
}

.checkout-submit,
.checkout-place-order,
.checkout-promo button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
}

.checkout-submit:hover,
.checkout-place-order:hover,
.checkout-promo button:hover {
  background: var(--brand-red);
  color: #fff;
}

.checkout-submit {
  width: 100%;
  margin-top: 18px;
}

.checkout-secure,
.checkout-terms {
  margin: 16px 0 0;
  text-align: center;
  color: #38424c;
  font-size: 13px;
}

.checkout-secure-screen {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 9999;
}

.checkout-secure-screen[hidden] {
  display: none;
}

.checkout-secure-screen__panel {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d9e1ea;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(22, 31, 41, 0.16);
  color: #222930;
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 360px;
  padding: 30px;
  text-align: center;
  width: min(100%, 360px);
}

.checkout-secure-screen__icon {
  align-items: center;
  background: #eef5f1;
  border-radius: 999px;
  color: #28724f;
  display: inline-flex;
  font-size: 22px;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.checkout-secure-screen__icon--approved {
  background: #edf8f1;
  color: #1f7a45;
}

.checkout-secure-screen__icon--rejected {
  background: #fff1f0;
  color: #b42318;
}

.checkout-secure-screen__panel strong {
  font-size: 18px;
}

.checkout-secure-screen__panel span {
  color: #55606b;
  font-size: 14px;
  line-height: 1.5;
}

.checkout-secure-steps {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.checkout-secure-steps__item {
  align-items: center;
  color: #7b8791;
  display: grid;
  gap: 10px;
  grid-template-columns: 26px 1fr;
  font-size: 13px;
}

.checkout-secure-steps__item i {
  align-items: center;
  border: 1px solid #d9e1ea;
  border-radius: 999px;
  display: inline-flex;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.checkout-secure-steps__item--active {
  color: #222930;
}

.checkout-secure-steps__item--active i {
  animation: checkout-secure-pulse 1.1s ease-in-out infinite;
  border-color: #28724f;
  color: #28724f;
}

.checkout-secure-steps__item--done {
  color: #28724f;
}

.checkout-secure-steps__item--done i {
  background: #eef5f1;
  border-color: #28724f;
}

.checkout-secure-steps__item--rejected {
  color: #b42318;
}

.checkout-secure-steps__item--rejected i {
  border-color: #f3b8b3;
}

@keyframes checkout-secure-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(40, 114, 79, 0.22);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(40, 114, 79, 0);
  }
}

.checkout-is-processing {
  overflow: hidden;
}

.confirmation-hero--failed {
  align-items: center;
  text-align: center;
}

.checkout-failed-icon {
  align-items: center;
  background: #fff1f0;
  border-radius: 999px;
  color: #b42318;
  display: inline-flex;
  font-size: 28px;
  height: 68px;
  justify-content: center;
  margin-bottom: 12px;
  width: 68px;
}

.checkout-side {
  display: grid;
  gap: 22px;
}

.checkout-summary {
  padding: 18px 14px;
}

.checkout-summary h2 {
  margin: 0 0 18px;
  color: #252d36;
  font-size: 17px;
  font-weight: 400;
}

.checkout-summary__head,
.checkout-summary-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px 82px;
  gap: 12px;
  align-items: start;
}

.checkout-summary__head {
  padding-bottom: 12px;
  border-bottom: 1px solid #dbe1e7;
  font-size: 12px;
}

.checkout-summary-item {
  padding: 14px 0;
  border-bottom: 1px solid #edf1f5;
  font-size: 13px;
}

.checkout-summary-item__product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
}

.checkout-summary-item__image {
  width: 56px;
  height: 44px;
  border: 1px solid #d8dde4;
  background: #fff;
}

.checkout-summary-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-summary-item p {
  margin: 6px 0 0;
  color: #7a828a;
}

.checkout-promo {
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #dbe1e7;
}

.checkout-promo label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid #cfd7df;
  border-radius: 6px;
  color: #737d87;
}

.checkout-promo input {
  min-width: 0;
  width: 100%;
  border: 0;
}

.checkout-summary__totals {
  display: grid;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #dbe1e7;
}

.checkout-summary__totals div,
.checkout-summary__grand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.checkout-summary__grand {
  padding-top: 18px;
  font-weight: 700;
}

.checkout-place-order {
  width: 100%;
  margin-top: 18px;
}

.checkout-assurance {
  display: grid;
  gap: 28px;
  padding: 28px 24px;
}

.checkout-assurance div,
.confirmation-actions,
.next-steps__list div,
.delivery-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.checkout-assurance span,
.next-steps__list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  flex: 0 0 auto;
}

.checkout-assurance p {
  margin: 0;
  display: grid;
  gap: 8px;
}

.checkout-assurance small,
.next-steps small,
.confirmation-track small {
  color: #5f6872;
  line-height: 1.45;
}

.checkout-ad {
  min-height: 144px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  background:
    linear-gradient(110deg, rgba(0,0,0,0.92) 0 58%, rgba(0,0,0,0.3) 58% 100%),
    radial-gradient(circle at 80% 50%, #a8adb1 0 20%, #292d31 21% 48%, #0f1113 49% 100%);
  color: #fff;
}

.checkout-ad strong {
  color: var(--brand-red);
  font-size: 30px;
  line-height: 0.95;
}

.checkout-ad span {
  max-width: 230px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.checkout-alert,
.errorlist {
  margin: 0;
  padding: 10px 12px;
  color: #9c1117;
  background: #fff1f2;
  border: 1px solid #ffc8cc;
  font-size: 13px;
  list-style: none;
}

.checkout-review__hero,
.confirmation-hero {
  padding: 30px 28px 44px;
  border-bottom: 1px solid #dfe4ea;
}

.checkout-review__hero a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #252d36;
}

.review-card {
  padding: 26px 28px;
  border-bottom: 1px solid #dfe4ea;
}

.review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.review-card p + p {
  margin-top: 10px;
  color: #4c5661;
}

.review-card--compact {
  min-height: 112px;
}

.review-card strong {
  color: #08a94f;
}

.review-card span {
  margin-left: 22px;
}

.confirmation-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 36px 28px;
  border-bottom: 1px solid #dfe4ea;
}

.confirmation-track__step {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.confirmation-track__step span,
.delivery-card > span {
  grid-row: span 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #cad3dc;
  border-radius: 999px;
  color: #7b858f;
}

.confirmation-track__step--done span,
.delivery-card > span,
.next-steps__list div:first-child span {
  border-color: #0bb85c;
  color: #0bb85c;
  background: #fff;
}

.confirmation-track__step--done strong {
  color: #0bb85c;
}

.next-steps {
  padding: 34px 28px;
  border-bottom: 1px solid #dfe4ea;
}

.next-steps h2 {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 600;
}

.next-steps__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  align-items: center;
}

.next-steps__list {
  display: grid;
  gap: 18px;
}

.next-steps p,
.delivery-card p {
  margin: 0;
  display: grid;
  gap: 6px;
}

.delivery-card p {
  color: #0bb85c;
}

.confirmation-actions {
  flex-wrap: wrap;
  padding: 24px 28px;
}

.confirmation-actions .btn {
  min-width: 190px;
}

.confirmation-actions p {
  margin: 0 0 0 auto;
  max-width: 260px;
  color: #56616c;
  font-size: 13px;
  line-height: 1.5;
}

.account-page,
.legal-page {
  padding: 56px 0 92px;
  background: linear-gradient(180deg, #f3f4f6 0, #fafafb 100%);
}

.account-heading {
  margin-bottom: 24px;
}

.account-heading h1,
.legal-panel h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #172338;
}

.account-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.account-sidebar,
.account-panel,
.legal-panel {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.account-sidebar {
  padding: 14px 0;
}

.account-nav {
  display: grid;
}

.account-nav__link {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #566171;
  border-left: 3px solid transparent;
}

.account-nav__link + .account-nav__link {
  border-top: 1px solid #edf1f5;
}

.account-nav__link--active,
.account-nav__link:hover {
  color: #172338;
  background: #faf5f5;
  border-left-color: var(--brand-red);
}

.account-panel,
.legal-panel {
  padding: 34px 36px;
}

.account-panel__header,
.account-list-block__header,
.account-card__title-row,
.account-card__actions,
.account-actions {
  display: flex;
  align-items: center;
}

.account-panel__header,
.account-list-block__header,
.account-card__title-row,
.account-actions {
  justify-content: space-between;
}

.account-panel__header {
  gap: 20px;
  margin-bottom: 28px;
}

.account-panel__header h2,
.account-list-block__header h3 {
  margin: 0 0 8px;
  color: #172338;
  font-weight: 700;
}

.account-panel__header h2 {
  font-size: 30px;
}

.account-list-block__header h3 {
  font-size: 22px;
}

.account-panel__header p,
.account-list-block__header p,
.account-card__title-row p,
.account-card__body p,
.purchase-table td p,
.legal-copy p,
.legal-copy li {
  margin: 0;
  color: #5e6876;
  line-height: 1.6;
}

.account-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.account-address-groups,
.account-list-block {
  display: grid;
  gap: 18px;
}

.account-address-groups {
  gap: 28px;
}

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

.account-card {
  padding: 22px;
  border: 1px solid #dde3ea;
  display: grid;
  gap: 16px;
}

.account-card h4 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: #172338;
}

.account-card__title-row {
  align-items: flex-start;
  gap: 16px;
}

.account-card__body {
  display: grid;
  gap: 4px;
}

.account-card__actions {
  gap: 12px;
  flex-wrap: wrap;
}

.account-card__actions form {
  display: contents;
}

.account-badge,
.purchase-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-badge {
  background: #eef6f0;
  color: #0f7d35;
}

.purchase-table-shell {
  overflow-x: auto;
  border: 1px solid #dde3ea;
}

.purchase-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.purchase-table th,
.purchase-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #e7ecf1;
  vertical-align: top;
  text-align: left;
}

.purchase-table th {
  background: #f5f7fa;
  color: #596474;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-table td {
  color: #1f2732;
  font-size: 14px;
}

.purchase-items {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 0;
  color: #5e6876;
}

.purchase-status--pending {
  background: #fff5df;
  color: #8b6400;
}

.purchase-status--processing {
  background: #e8f0ff;
  color: #124fbb;
}

.purchase-status--shipped {
  background: #e8f8ef;
  color: #11713b;
}

.purchase-status--completed {
  background: #edf8ea;
  color: #0f7d35;
}

.purchase-status--cancelled {
  background: #fdebec;
  color: #ae2430;
}

.legal-panel {
  max-width: 960px;
  margin: 0 auto;
}

.legal-copy {
  display: grid;
  gap: 16px;
  color: #22303d;
  font-size: 15px;
  line-height: 1.7;
}

.legal-copy h2,
.legal-copy h3 {
  margin: 8px 0 0;
  color: #172338;
  font-weight: 700;
}

.legal-copy ul,
.legal-copy ol {
  margin: 0;
  padding-left: 22px;
}

.contact-page {
  background: #f2f2f2;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  box-shadow: var(--shadow);
}

.contact-info,
.contact-form-panel {
  padding: 36px 40px 42px;
}

.contact-info {
  background: #fff;
}

.contact-form-panel {
  background: #f3f3f3;
}

.contact-eyebrow {
  margin: 0 0 8px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info h1,
.contact-form-panel h2 {
  margin: 0;
  color: #03070b;
  font-weight: 700;
}

.contact-info h1 {
  font-size: 42px;
  line-height: 1.12;
}

.contact-copy {
  max-width: 520px;
  margin-top: 20px;
  color: #545d66;
  font-size: 20px;
  line-height: 1.5;
}

.contact-copy p {
  margin: 0;
}

.contact-methods {
  display: grid;
  gap: 26px;
  margin-top: 50px;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-method__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
}

.contact-method p {
  margin: 0;
  display: grid;
  gap: 4px;
  color: #02070b;
  line-height: 1.35;
}

.contact-method strong {
  font-weight: 700;
}

.contact-form-panel h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

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

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

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

.contact-input {
  width: 100%;
  min-height: 58px;
  padding: 0 12px;
  border: 1px solid #d4dbe2;
  border-radius: 5px;
  background: #fff;
  color: #2b3239;
}

.contact-input--textarea {
  min-height: 100px;
  padding-top: 18px;
  resize: vertical;
}

.contact-submit {
  width: 182px;
  min-height: 58px;
  font-weight: 700;
  text-transform: uppercase;
}

.vendor-panel {
  display: grid;
  gap: 28px;
}

.ops-page {
  min-height: 100vh;
  background: #f4f7fb;
}

.ops-shell {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  min-height: 100vh;
}

.ops-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 20px 12px;
  background: #fff;
  color: #172338;
  border-right: 1px solid #e4e9ef;
  box-shadow: 10px 0 26px rgba(23, 35, 56, 0.04);
}

.ops-brand {
  display: grid;
  gap: 4px;
  padding: 12px 14px 18px;
  border-bottom: 1px solid #edf1f5;
  color: #172338;
}

.ops-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  font-weight: 800;
}

.ops-brand strong {
  font-size: 18px;
  font-weight: 700;
}

.ops-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.ops-nav__link {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: #4b5563;
  border-left: 3px solid transparent;
}

.ops-nav__link:hover,
.ops-nav__link--active {
  color: #172338;
  background: #fbf3f4;
  border-left-color: var(--brand-red);
}

.ops-main {
  min-width: 0;
  width: 100%;
  max-width: 1440px;
  padding: 26px clamp(18px, 2.5vw, 34px) 42px;
  margin: 0 auto;
}

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

.ops-kicker {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-header h1 {
  margin: 4px 0 0;
  color: #172338;
  font-size: 32px;
  font-weight: 700;
}

.ops-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ops-panel,
.ops-card,
.ops-metric-card {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(23, 35, 56, 0.04);
}

.ops-panel {
  display: grid;
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ops-page-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #e1e7ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 35, 56, 0.04);
}

.ops-page-intro p {
  margin: 0;
  color: #596474;
  line-height: 1.45;
}

.ops-period-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.ops-period-filter label {
  color: #596474;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-period-filter .auth-input {
  min-height: 40px;
  min-width: 132px;
}

.ops-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.ops-metric-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-metric-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 20px;
}

.ops-metric-card span {
  color: #657181;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-metric-card strong {
  color: #172338;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.ops-metric-card small {
  color: #6b7480;
  line-height: 1.35;
}

.ops-metric-card--accent {
  background: #172338;
}

.ops-metric-card--accent span,
.ops-metric-card--accent small,
.ops-metric-card--accent strong {
  color: #fff;
}

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

.ops-grid-one,
.vendor-grid-one {
  display: grid;
  gap: 18px;
}

.ops-grid-two--wide-left {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.ops-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

.ops-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ops-card__header h3 {
  margin: 0 0 6px;
  color: #172338;
  font-size: 18px;
  font-weight: 700;
}

.ops-card__header p {
  margin: 0;
  color: #66707c;
  font-size: 13px;
  line-height: 1.45;
}

.ops-card__header a {
  color: var(--brand-red);
  font-weight: 700;
  white-space: nowrap;
}

.ops-filter {
  min-width: 160px;
}

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

.ops-message-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e3e9ef;
  background: #fbfcfd;
}

.ops-message-card > div {
  display: grid;
  gap: 4px;
}

.ops-message-card strong {
  color: #172338;
  font-size: 16px;
}

.ops-message-card a,
.ops-message-card time {
  color: #657181;
  font-size: 13px;
}

.ops-message-card p {
  margin: 0;
  color: #344150;
  line-height: 1.55;
}

.ops-message-card form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.vendor-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.vendor-kpi-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.vendor-kpi-card {
  padding: 22px;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  background: #fff;
}

.vendor-kpi-card--wide {
  grid-column: span 2;
}

.vendor-kpi-card span {
  color: #5e6876;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vendor-kpi-card strong {
  color: #172338;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

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

.vendor-grid-two--form {
  align-items: start;
}

.vendor-table-shell {
  overflow-x: auto;
  border: 1px solid #e1e7ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 35, 56, 0.04);
  scrollbar-width: thin;
}

.vendor-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.ops-page .vendor-table {
  min-width: 0;
  table-layout: fixed;
}

.vendor-table--ops {
  min-width: 760px;
}

.vendor-table--analytics {
  min-width: 0;
  table-layout: fixed;
}

.vendor-table th,
.vendor-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e7ecf1;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.vendor-table th {
  background: #f5f7fa;
  color: #596474;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vendor-table tr:last-child td {
  border-bottom: 0;
}

.vendor-table--analytics th:nth-child(n + 3),
.vendor-table--analytics td:nth-child(n + 3) {
  width: 18%;
  text-align: right;
  white-space: nowrap;
}

.vendor-table--analytics th:first-child,
.vendor-table--analytics td:first-child {
  width: 46%;
}

.vendor-table--analytics th:nth-child(2),
.vendor-table--analytics td:nth-child(2) {
  width: 24%;
}

.vendor-table__main {
  display: block;
  max-width: 100%;
  line-height: 1.25;
}

.vendor-table__sub,
.vendor-muted {
  color: #6a7482;
  font-size: 12px;
}

.vendor-row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vendor-row-actions form {
  display: contents;
}

.vendor-row-actions .btn,
.ops-page .toolbar__right .btn,
.ops-page .account-actions .btn {
  min-height: 38px;
  padding: 0 14px;
}

.ops-page .account-panel__header {
  gap: 14px;
  margin-bottom: 0;
}

.ops-page .account-panel__header:empty {
  display: none;
}

.ops-page .account-list-block {
  padding: 18px;
  border: 1px solid #e1e7ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 35, 56, 0.04);
}

.ops-page .account-list-block__header h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.ops-page .auth-form {
  gap: 16px;
}

.ops-page .account-actions {
  justify-content: flex-start;
  gap: 10px;
}

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

.vendor-activity-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e7ecf1;
  flex-wrap: wrap;
}

.vendor-activity-list--full li {
  grid-template-columns: minmax(0, 1fr);
}

.vendor-group-block {
  display: grid;
  gap: 12px;
}

.vendor-group-block h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #172338;
}

.product-form-section {
  padding: 20px;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  background: #fff;
}

.html-editor-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.html-editor-toolbar .btn {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.product-image-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dde3ea;
  background: #fff;
}

.product-image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #e7ecf1;
}

.product-image-remove {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d5660;
  font-size: 14px;
}

.ck-editor__editable_inline {
  min-height: 280px;
}

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

.site-settings-main {
  min-width: 0;
}

.auth-input--color {
  min-height: 44px;
  padding: 4px;
}

.json-builder,
.builder-list,
.builder-children {
  display: grid;
  gap: 10px;
}

.builder-row,
.builder-child {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e0e6ed;
  background: #fff;
}

.builder-row {
  grid-template-columns: 24px minmax(0, 1fr) minmax(0, 1fr) auto auto auto;
  align-items: center;
}

.builder-child {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  margin-left: 34px;
}

.builder-handle {
  color: #7a8490;
}

.builder-children {
  grid-column: 1 / -1;
}

.site-settings-preview {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #dfe5ec;
  box-shadow: var(--shadow);
}

.site-preview-topbar {
  padding: 8px 10px;
  color: #fff;
  background: var(--topbar);
  font-size: 12px;
  text-align: center;
}

.site-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e4e9ef;
}

.site-preview-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
}

.site-preview-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-preview-header strong,
.site-preview-header small {
  display: block;
}

.site-preview-header small {
  color: var(--text-soft);
}

.site-preview-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.site-preview-nav a {
  padding: 7px 10px;
  background: var(--surface-soft);
  color: var(--text-main);
  font-size: 12px;
}

.favorites-panel {
  padding: 24px;
}

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

.favorites-panel__header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.favorites-panel__header p {
  margin: 0;
  color: #66707a;
  font-size: 14px;
}

.favorites-grid {
  display: grid;
  gap: 16px;
}

.favorite-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #e2e7ec;
}

.favorite-item__image {
  width: 120px;
  height: 120px;
}

.favorite-item__content h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.favorite-item__content p {
  margin: 0 0 12px;
  color: #66707a;
  font-size: 14px;
}

.favorite-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: #66707a;
  font-size: 13px;
}

.favorite-item__meta strong {
  color: #161a1f;
  font-size: 18px;
}

.favorite-item__actions {
  display: flex;
  gap: 12px;
}

.site-footer {
  background: var(--footer);
  color: #fff;
}

.site-footer__inner {
  padding: 56px 0 38px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 42px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.footer-column h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-column--newsletter p {
  max-width: 390px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  width: min(370px, 100%);
  margin-top: 14px;
  background: #242424;
  border-radius: var(--radius);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 70px;
  padding: 0 30px;
  color: #fff;
  border: 0;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-form button {
  width: 60px;
  min-height: 60px;
  margin: 10px;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  border-radius: var(--radius);
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.footer-bottom {
  gap: 24px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.icon--phone,
.icon--mail,
.icon--star,
.icon--cart,
.icon--menu,
.icon--filter,
.icon--truck,
.icon--send,
.icon--eye,
.icon--flash,
.icon--cart-small,
.icon--grid,
.icon--list,
.icon--heart-outline,
.icon--heart-filled,
.icon--trash {
  width: 18px;
  height: 18px;
}

.icon--phone::before {
  content: "☎";
  position: absolute;
  inset: -1px 0 0;
  font-size: 18px;
}

.icon--mail::before {
  content: "✉";
  position: absolute;
  inset: -2px 0 0;
  font-size: 16px;
}

.icon--star::before {
  content: "★";
  position: absolute;
  inset: -1px 0 0;
  font-size: 18px;
  color: #adb5bd;
}

.icon--cart::before,
.icon--cart-small::before {
  content: "🛒";
  position: absolute;
  inset: -2px 0 0;
  font-size: 16px;
}

.icon--menu::before {
  content: "≡";
  position: absolute;
  inset: -4px 0 0;
  font-size: 22px;
}

.icon--filter::before {
  content: "≣";
  position: absolute;
  inset: -2px 0 0;
  font-size: 20px;
}

.icon--truck::before {
  content: "🚚";
  position: absolute;
  inset: -2px 0 0;
  font-size: 14px;
}

.icon--flash::before {
  content: "ϟ";
  position: absolute;
  inset: -2px 0 0;
  font-size: 16px;
}

.icon--eye::before {
  content: "◉";
  position: absolute;
  inset: -2px 0 0;
  font-size: 14px;
}

.icon--send::before {
  content: "✈";
  position: absolute;
  inset: -2px 0 0;
  font-size: 16px;
}

.icon--heart-outline::before {
  content: "♡";
  position: absolute;
  inset: -6px 0 0;
  font-size: 32px;
  color: var(--text-main);
}

.icon--heart-filled::before {
  content: "♥";
  position: absolute;
  inset: -3px 0 0;
  font-size: 22px;
  color: var(--heart);
}

.icon--trash::before {
  content: "🗑";
  position: absolute;
  inset: -2px 0 0;
  font-size: 20px;
}

.icon--grid::before {
  content: "";
  position: absolute;
  inset: 2px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 0 / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 0 / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 50% / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 50% / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 100% / 5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 100% / 5px 5px no-repeat;
}

.icon--list::before {
  content: "";
  position: absolute;
  inset: 2px 1px;
  background:
    linear-gradient(currentColor, currentColor) 0 2px / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 8px / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 14px / 16px 2px no-repeat,
    radial-gradient(circle, currentColor 0 1px, transparent 2px) 0 0 / 2px 6px repeat-y;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

@media (max-width: 1220px) {
  .catalog {
    grid-template-columns: 1fr;
  }

  .filters {
    max-width: 320px;
  }

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

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

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

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

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

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

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

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

  .ops-sidebar {
    position: static;
    height: auto;
  }

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

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

  .ops-page-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-grid-two,
  .ops-grid-two--wide-left {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--page-width), calc(100vw - 32px));
  }

  .topbar__inner,
  .site-header__main,
  .site-nav__inner,
  .toolbar,
  .pagination,
  .footer-bottom,
  .detail-heading,
  .detail-price-banner,
  .detail-purchase,
  .cart-edit__header,
  .favorites-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__inner,
  .site-header__main,
  .site-nav__inner {
    padding: 16px 0;
  }

  .header-search {
    width: 100%;
    max-width: none;
    flex-basis: auto;
    margin: 0;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-list {
    width: 100%;
  }

  .nav-list > a {
    padding: 14px 16px;
    min-height: auto;
  }

  .shop-tab {
    min-width: 0;
  }

  .toolbar__right {
    width: 100%;
    flex-wrap: wrap;
  }

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

  .vendor-grid-two {
    grid-template-columns: 1fr;
  }

  .ops-main {
    padding: 18px;
  }

  .ops-header,
  .ops-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-panel {
    padding: 16px;
  }

  .ops-nav {
    grid-template-columns: 1fr;
  }

  .ops-message-card form {
    align-items: stretch;
    flex-direction: column;
  }

  .account-heading h1,
  .legal-panel h1 {
    font-size: 34px;
  }

  .account-panel,
  .legal-panel {
    padding: 24px;
  }

  .account-panel__header,
  .account-list-block__header,
  .account-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-nav__link {
    min-height: 48px;
  }

  .vendor-kpi-card--wide {
    grid-column: span 1;
  }

  .select-block {
    width: 100%;
  }

  .product-grid,
  .detail-thumbs,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .detail-main-image--showcase {
    min-height: 360px;
  }

  .detail-main-image--showcase .detail-photo {
    max-height: 360px;
    padding: 20px;
  }

  .detail-thumbs--gallery {
    display: flex;
  }

  .detail-thumbs--gallery .detail-thumb {
    flex-basis: 84px;
  }

  .detail-thumb-scroller {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .detail-thumb-arrow {
    width: 34px;
    height: 34px;
  }

  .detail-fact-grid,
  .overview-grid,
  .detail-price-banner,
  .detail-purchase {
    grid-template-columns: 1fr;
  }

  .detail-purchase > div:last-child {
    justify-items: start;
  }

  .overview-spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .auth-grid,
  .auth-grid--triple {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .secondary-actions {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .detail-card,
  .detail-specs,
  .cart-edit,
  .order-summary,
  .favorites-panel {
    padding: 22px;
  }

  .checkout-heading,
  .review-card__head,
  .confirmation-actions,
  .checkout-test-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-test-card button {
    width: 100%;
  }

  .checkout-grid,
  .checkout-grid--triple,
  .checkout-payment-tabs,
  .checkout-saved-card,
  .checkout-radio-list label,
  .checkout-summary__head,
  .checkout-summary-item,
  .checkout-promo,
  .quick-view-grid,
  .quick-view-actions,
  .contact-shell,
  .contact-form__grid,
  .next-steps__grid,
  .confirmation-track {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-panel {
    padding: 28px 24px;
  }

  .contact-info h1 {
    font-size: 34px;
  }

  .contact-copy {
    font-size: 17px;
  }

  .contact-methods {
    margin-top: 34px;
  }

  .product-data-list--modal {
    grid-template-columns: 1fr;
  }

  .checkout-radio-list strong,
  .checkout-saved-card em,
  .confirmation-actions p {
    justify-self: start;
    margin-left: 0;
  }

  .cart-edit__actions,
  .favorite-item__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .cart-row__product,
  .favorite-item {
    grid-template-columns: 1fr;
  }

  .order-summary__head,
  .summary-item,
  .order-summary__totals div,
  .order-summary__grand {
    grid-template-columns: 1fr;
  }
}
