.product-page {
  min-height: 100vh;
  background: #fff;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 72px;
  padding: 0 var(--page-edge);
  border-bottom: 1px solid #e3e3e3;
  color: #96969a;
  font-size: 12px;
  font-weight: 600;
}

.product-breadcrumbs a {
  color: #55555a;
  text-decoration: none;
}

.product-breadcrumbs a:hover,
.product-breadcrumbs a:focus-visible {
  color: #111;
}

.product-breadcrumbs span:last-child {
  max-width: 54ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, 0.75fr);
  gap: 64px;
  align-items: start;
  padding: 52px var(--page-edge) 112px;
}

.product-gallery {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.product-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}

.product-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.001);
  transition: opacity 160ms ease, transform 180ms ease;
}

.product-main-image img.is-changing {
  opacity: 0.25;
  transform: scale(0.992);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 52px;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  transform: translateY(-50%);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
}

.gallery-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-nav-prev {
  left: 14px;
}

.gallery-nav-next {
  right: 14px;
}

.gallery-nav[hidden],
.gallery-counter[hidden] {
  display: none;
}

.gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-width: 54px;
  padding: 8px 10px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 1px;
  background: #f3f3f3;
}

.gallery-thumb::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after,
.gallery-thumb.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  position: sticky;
  top: 98px;
  min-width: 0;
}

.product-summary__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 24px;
  margin-bottom: 16px;
  color: #77777c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-stock {
  position: relative;
  padding-left: 14px;
  color: #347a46;
}

.product-stock::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.product-stock.is-unavailable {
  color: #a24a45;
}

.product-summary h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display-font);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.13;
}

.product-price {
  margin-top: 24px;
}

.price-stack-large {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.price-stack-large .current-price {
  color: #111;
  font-size: 28px;
}

.price-stack-large .old-price {
  color: #929296;
  font-size: 16px;
}

.price-stack-large .discount-pill {
  min-height: 25px;
  padding: 0 8px;
  border-radius: 1px;
  background: var(--accent);
  color: #111;
  font-size: 11px;
  line-height: 25px;
}

.product-description {
  max-width: 680px;
  margin: 22px 0 0;
  color: #55555a;
  font-size: 14px;
  line-height: 1.7;
}

.product-color {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: 16px 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.product-color span {
  color: #818186;
  font-size: 12px;
  font-weight: 600;
}

.product-color strong {
  color: #111;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.product-sizes {
  margin-top: 26px;
}

.product-sizes__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-sizes__head > span {
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.product-sizes__head button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid #999;
  background: transparent;
  color: #66666b;
  font-size: 12px;
  font-weight: 600;
}

.product-sizes__head button:hover,
.product-sizes__head button:focus-visible {
  border-color: #111;
  color: #111;
}

.product-sizes__head svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

#productSizes:not(.is-component-list) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

#productSizes.is-component-list {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid #dedede;
}

.size-component {
  display: grid;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #dedede;
}

.size-component__head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
}

.size-component__head strong {
  overflow-wrap: anywhere;
  color: #242429;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.size-component__index {
  color: #85858a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.size-component__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 64px;
}

.size-component__no-size {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #6f6f74;
  font-size: 12px;
}

.size-button {
  position: relative;
  min-width: 52px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #d4d4d4;
  border-radius: 1px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.size-button:hover:not(:disabled),
.size-button:focus-visible:not(:disabled) {
  border-color: #111;
}

.size-button.is-selected {
  border-color: #111;
  background: #111;
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--accent);
}

.size-button.size-unavailable {
  overflow: hidden;
  border-color: #e4e4e4;
  background: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
}

.size-button.size-unavailable::after {
  position: absolute;
  right: 7px;
  left: 7px;
  top: 50%;
  height: 1px;
  background: #aaa;
  content: "";
  transform: rotate(-24deg);
}

.size-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: #75757a;
  font-size: 12px;
}

.size-status.is-error {
  color: #a23b35;
}

.purchase-panel {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 48px 40px;
  min-height: 54px;
  border: 1px solid #d8d8d8;
}

.quantity-control button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #fff;
  color: #111;
}

.quantity-control button:hover:not(:disabled),
.quantity-control button:focus-visible:not(:disabled) {
  background: #f1f1f1;
}

.quantity-control button:disabled {
  color: #c6c6c6;
  cursor: default;
}

.quantity-control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.quantity-control span {
  display: grid;
  place-items: center;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 1px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.add-to-cart:hover,
.add-to-cart:focus-visible {
  background: var(--accent);
  color: #111;
}

.add-to-cart svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.add-to-cart.is-added {
  border-color: #2f6e40;
  background: #2f6e40;
  color: #fff;
}

.delivery-progress {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: #f6f6f6;
}

.delivery-progress__copy {
  display: grid;
  gap: 3px;
}

.delivery-progress__copy strong {
  color: #111;
  font-size: 12px;
}

.delivery-progress__copy span {
  color: #77777c;
  font-size: 11px;
}

.delivery-progress__track {
  height: 4px;
  overflow: hidden;
  background: #dedede;
}

.delivery-progress__track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 320ms ease;
}

.product-benefits {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid #e3e3e3;
}

.product-benefits > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #e3e3e3;
  color: #515156;
  font-size: 12px;
}

.product-benefits svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #111;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.product-accordions {
  margin-top: 20px;
  border-top: 1px solid #dcdcdc;
}

.product-accordions details {
  border-bottom: 1px solid #dcdcdc;
}

.product-accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  list-style: none;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary span {
  color: #777;
  font-size: 20px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.product-accordions details[open] summary span {
  transform: rotate(45deg);
}

.product-facts {
  display: grid;
  gap: 0;
  padding-bottom: 18px;
}

.product-fact {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid #ededed;
  font-size: 12px;
  line-height: 1.45;
}

.product-fact span {
  color: #8a8a8f;
}

.product-fact strong {
  color: #333338;
  font-weight: 600;
}

.product-facts-empty {
  margin: 0;
  padding-bottom: 6px;
  color: #77777c;
  font-size: 12px;
  line-height: 1.55;
}

.accordion-copy {
  padding: 0 0 20px;
  color: #65656a;
  font-size: 12px;
  line-height: 1.6;
}

.accordion-copy p {
  margin: 0 0 10px;
}

.accordion-copy a {
  color: #111;
  font-weight: 700;
  text-underline-offset: 3px;
}

.related-products {
  padding: 88px var(--page-edge) 104px;
  border-top: 1px solid #dedede;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading > div {
  display: grid;
  gap: 9px;
}

.section-heading > div > span {
  color: #88888d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 36px;
  font-weight: 500;
}

.section-heading > a {
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  display: grid;
  min-width: 0;
  color: #111;
  text-decoration: none;
}

.related-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}

.related-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.related-card:hover img,
.related-card:focus-visible img {
  transform: scale(1.025);
}

.related-card__copy {
  display: grid;
  gap: 7px;
  padding-top: 12px;
}

.related-card__copy > span {
  color: #8a8a8f;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.related-card h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: #333338;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-card .current-price {
  font-size: 15px;
}

.related-card .old-price {
  font-size: 11px;
}

.product-reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  padding: 96px var(--page-edge);
  background: #111;
  color: #fff;
}

.product-reviews__intro {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
}

.product-reviews__intro > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-reviews__intro h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.product-reviews__intro p {
  max-width: 400px;
  margin: 0;
  color: #a6a6a6;
  font-size: 13px;
  line-height: 1.6;
}

.product-reviews__intro button {
  min-height: 48px;
  margin-top: 6px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 1px;
  background: var(--accent);
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.product-reviews__intro button:hover,
.product-reviews__intro button:focus-visible {
  background: #fff;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #303030;
}

.reviews-empty {
  grid-column: 1 / -1;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 36px;
  background: #171717;
}

.reviews-empty__eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews-empty strong {
  color: #fff;
  font-size: 19px;
}

.reviews-empty > p {
  max-width: 640px;
  margin: 0;
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
}

.reviews-empty__prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #303030;
}

.reviews-empty__prompts span {
  color: #8f8f93;
  font-size: 12px;
  line-height: 1.55;
}

.reviews-empty__prompts b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 28px;
  background: #171717;
}

.review-card__rating {
  color: var(--accent);
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 0;
  color: #e5e5e5;
  font-size: 14px;
  line-height: 1.65;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  color: #898989;
  font-size: 11px;
}

.mobile-purchase {
  display: none;
}

.product-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(3px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border-bottom: 1px solid #dedede;
}

.dialog-head > div {
  display: grid;
  gap: 6px;
}

.dialog-head > div > span {
  color: #818186;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.dialog-head h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 500;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #dcdcdc;
  border-radius: 1px;
  background: #fff;
  color: #111;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--accent);
}

.dialog-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.size-guide-dialog {
  width: min(920px, calc(100vw - 32px));
}

.size-guide-tabs {
  display: flex;
  gap: 8px;
  padding: 22px 28px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.size-guide-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dcdcdc;
  border-radius: 1px;
  background: #f5f5f3;
  color: #5e5e63;
  font-size: 12px;
  font-weight: 700;
}

.size-guide-tab:hover,
.size-guide-tab:focus-visible {
  border-color: #111;
  color: #111;
}

.size-guide-tab[aria-selected="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--accent);
}

.size-guide-content {
  min-height: 320px;
  padding: 18px 28px 28px;
}

.size-guide-panel {
  display: grid;
  gap: 10px;
}

.size-guide-panel[hidden] {
  display: none;
}

.size-guide-unit {
  margin: 0;
  color: #6c6c71;
  font-size: 11px;
  line-height: 1.5;
}

.size-guide-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #d9d9d6;
  background: #fff;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.size-guide-table-wrap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.size-guide-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-variant-numeric: tabular-nums;
}

.size-guide-table th,
.size-guide-table td {
  min-width: 72px;
  padding: 15px 14px;
  border-right: 1px solid #dededb;
  border-bottom: 1px solid #dededb;
  color: #151515;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.size-guide-table tr > :last-child {
  border-right: 0;
}

.size-guide-table tbody tr:last-child > * {
  border-bottom: 0;
}

.size-guide-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.size-guide-table thead th:first-child {
  left: 0;
  z-index: 3;
  width: 190px;
  min-width: 190px;
  text-align: left;
}

.size-guide-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 190px;
  min-width: 190px;
  background: #f3f3f0;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  white-space: normal;
}

.size-guide-table tbody tr:nth-child(even) td {
  background: #fafaf8;
}

.size-guide-empty {
  display: grid;
  align-content: center;
  min-height: 250px;
  padding: 32px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.size-guide-empty strong {
  color: #111;
  font-size: 17px;
}

.size-guide-empty p {
  margin: 8px 0 0;
  color: #707075;
  font-size: 13px;
  line-height: 1.55;
}

.review-dialog form {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
}

.review-dialog .dialog-head {
  margin-bottom: 0;
}

.review-form__intro,
.review-dialog form > label,
.review-form__row,
.review-rating,
.review-form__status,
.review-submit {
  margin-right: 28px;
  margin-left: 28px;
}

.review-form__intro {
  margin-top: 0;
  margin-bottom: 0;
  color: #66666b;
  font-size: 13px;
  line-height: 1.55;
}

.review-dialog label {
  display: grid;
  gap: 7px;
  color: #55555a;
  font-size: 11px;
  font-weight: 700;
}

.review-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-dialog input,
.review-dialog textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 14px;
  resize: vertical;
}

.review-rating {
  padding: 0;
  border: 0;
}

.review-rating legend {
  margin-bottom: 8px;
  color: #55555a;
  font-size: 11px;
  font-weight: 700;
}

.review-rating > div {
  display: flex;
  gap: 7px;
}

.review-rating label {
  position: relative;
}

.review-rating input {
  position: absolute;
  opacity: 0;
}

.review-rating span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 42px;
  border: 1px solid #d6d6d6;
  color: #111;
  cursor: pointer;
}

.review-rating input:checked + span {
  border-color: #111;
  background: var(--accent);
}

.review-form__status {
  min-height: 18px;
  color: #666;
  font-size: 12px;
}

.review-form__status.is-error {
  color: #a23b35;
}

.review-form__status.is-success {
  color: #347a46;
}

.review-submit {
  min-height: 50px;
  border: 1px solid #111;
  border-radius: 1px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.review-submit:hover,
.review-submit:focus-visible {
  background: var(--accent);
  color: #111;
}

.product-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 560px;
  padding: 72px 0;
}

.product-empty h1,
.product-empty p {
  margin: 0;
}

.product-empty a {
  min-height: 48px;
  padding: 0 18px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  line-height: 48px;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 40px;
  }

  .product-summary h1 {
    font-size: 32px;
  }

  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 30px;
  }

  .product-gallery,
  .product-summary {
    position: static;
  }

  .product-summary {
    max-width: 720px;
  }

  .product-reviews {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  body:has(.mobile-purchase:not([hidden])) {
    padding-bottom: 76px;
  }

  .product-breadcrumbs {
    min-height: 54px;
    padding: 0 var(--page-edge);
  }

  .product-breadcrumbs span:last-child {
    display: none;
  }

  .product-detail {
    gap: 24px;
    padding: 0 0 64px;
  }

  .product-main-image {
    aspect-ratio: 1 / 1.04;
  }

  .gallery-nav {
    width: 42px;
    height: 46px;
  }

  .gallery-nav-prev {
    left: 8px;
  }

  .gallery-nav-next {
    right: 8px;
  }

  .product-thumbs {
    display: flex;
    gap: 7px;
    padding: 0 var(--page-edge);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .product-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    flex: 0 0 68px;
  }

  .product-summary {
    padding: 0 var(--page-edge);
  }

  .product-summary__meta {
    margin-bottom: 12px;
  }

  .product-summary h1 {
    font-size: 26px;
    line-height: 1.16;
  }

  .product-price {
    margin-top: 18px;
  }

  .price-stack-large .current-price {
    font-size: 23px;
  }

  .product-description {
    margin-top: 17px;
    font-size: 13px;
  }

  .product-color {
    margin-top: 20px;
  }

  .purchase-panel {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .quantity-control {
    grid-template-columns: 36px 44px 36px;
  }

  .add-to-cart {
    padding: 0 14px;
    font-size: 11px;
  }

  .add-to-cart svg {
    display: none;
  }

  .related-products {
    padding: 62px var(--page-edge) 72px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading > a {
    display: none;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 10px;
  }

  .related-card h3 {
    min-height: 38px;
    font-size: 11px;
  }

  .product-reviews {
    gap: 30px;
    padding: 64px var(--page-edge);
  }

  .product-reviews__intro h2 {
    font-size: 28px;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .reviews-empty {
    min-height: 180px;
    padding: 24px;
  }

  .reviews-empty__prompts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-purchase {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: minmax(90px, 0.65fr) minmax(180px, 1.35fr);
    gap: 10px;
    min-height: 76px;
    padding: 10px var(--page-edge);
    border-top: 1px solid #d6d6d6;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-purchase[hidden],
  .cart-is-open .mobile-purchase,
  .search-is-open .mobile-purchase {
    display: none;
  }

  .mobile-purchase > div {
    display: grid;
    align-content: center;
  }

  .mobile-purchase .price-stack-large {
    display: grid;
    gap: 0;
  }

  .mobile-purchase .current-price {
    font-size: 17px;
  }

  .mobile-purchase .old-price,
  .mobile-purchase .discount-pill {
    display: none;
  }

  .mobile-purchase button {
    border: 1px solid #111;
    border-radius: 1px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .product-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 20px);
    margin: auto 0 0;
  }

  .dialog-head {
    padding: 20px var(--page-edge);
  }

  .size-guide-tabs,
  .size-guide-content {
    padding-right: var(--page-edge);
    padding-left: var(--page-edge);
  }

  .size-component__head {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .size-component__options {
    padding-left: 58px;
  }

  .size-guide-dialog {
    max-height: calc(100svh - 12px);
  }

  .size-guide-content {
    padding-bottom: 22px;
  }

  .size-guide-table {
    min-width: 650px;
  }

  .size-guide-table th,
  .size-guide-table td {
    padding: 13px 12px;
  }

  .size-guide-table thead th:first-child,
  .size-guide-table tbody th {
    width: 148px;
    min-width: 148px;
  }

  .review-form__intro,
  .review-dialog form > label,
  .review-form__row,
  .review-rating,
  .review-form__status,
  .review-submit {
    margin-right: var(--page-edge);
    margin-left: var(--page-edge);
  }

  .review-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-main-image img,
  .delivery-progress__track span,
  .gallery-thumb::after,
  .related-card__image img {
    transition: none;
  }
}