/* ==========================================================================
   AUREL — Inner Pages (Collection, Product, Cart, Checkout, Static)
   ========================================================================== */

/* Page Banner */
.page-banner {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-banner--sm { height: 220px; }
.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.85) 100%);
}
.page-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.page-banner__content h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a:hover { color: var(--color-primary); }

/* ── Collection Coming Soon ── */
.coming-soon {
  position: relative;
  background: var(--color-background);
}

.coming-soon__hero {
  position: absolute;
  inset: 0 0 auto;
  height: min(72vh, 640px);
  overflow: hidden;
}

.coming-soon__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.85);
}

.coming-soon__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 15, 26, 0.35) 0%, rgba(10, 15, 26, 0.72) 55%, var(--color-background) 100%);
}

.coming-soon__hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.coming-soon__main {
  position: relative;
  z-index: 2;
  padding-top: clamp(8rem, 18vw, 12rem);
  padding-bottom: 2rem;
}

.coming-soon__card {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 15, 26, 0.08);
  border-radius: var(--radius-lg, 12px);
  box-shadow:
    0 4px 24px rgba(10, 15, 26, 0.06),
    0 24px 64px rgba(10, 15, 26, 0.08);
  backdrop-filter: blur(12px);
}

.coming-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(184, 150, 90, 0.12);
  border: 1px solid rgba(184, 150, 90, 0.35);
  border-radius: 999px;
}

.coming-soon__badge-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.coming-soon__eyebrow {
  margin-bottom: 0.5rem;
}

.coming-soon__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--color-text);
  text-transform: none;
}

.coming-soon__divider {
  width: 3rem;
  height: 2px;
  margin: 1.25rem auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.coming-soon__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 32rem;
  margin-inline: auto;
}

.coming-soon__perks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(10, 15, 26, 0.08);
  text-align: left;
}

.coming-soon__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.coming-soon__perk-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.5rem;
  color: var(--color-primary);
}

.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.coming-soon__actions .btn {
  min-width: 10.5rem;
}

.coming-soon__explore {
  background: var(--color-surface, #f8f9fb);
  border-top: 1px solid rgba(10, 15, 26, 0.06);
}

.coming-soon__explore .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.coming-soon__explore .section-header p:last-child {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  max-width: 28rem;
  margin-inline: auto;
}

.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md, 1.25rem);
}

@media (max-width: 992px) {
  .coming-soon__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .coming-soon__grid {
    grid-template-columns: 1fr;
  }
}

.coming-soon__tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md, 8px);
  isolation: isolate;
}

.coming-soon__tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coming-soon__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 15, 26, 0.88) 100%);
  transition: opacity 0.35s ease;
  z-index: 1;
}

.coming-soon__tile-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 2.75rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: #fff;
}

.coming-soon__tile-cta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.coming-soon__tile:hover .coming-soon__tile-img {
  transform: scale(1.06);
}

.coming-soon__tile:hover .coming-soon__tile-cta {
  opacity: 1;
  transform: translateY(0);
}

.coming-soon__notify {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.coming-soon__notify-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--color-secondary, #0a0f1a);
  border-radius: var(--radius-lg, 12px);
  color: var(--color-text-inverse);
}

.coming-soon__notify-inner h2 {
  color: var(--color-text-inverse);
  margin-top: 0.35rem;
}

.coming-soon__notify-inner p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.coming-soon__notify-inner strong {
  color: var(--color-primary);
  font-weight: 500;
}

.coming-soon__notify-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.coming-soon__notify-feedback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  border-radius: var(--radius-sm, 4px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.coming-soon__notify-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.coming-soon__notify-feedback[hidden] {
  display: none;
}

.coming-soon__notify-feedback.newsletter__feedback--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.coming-soon__notify-feedback.newsletter__feedback--error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

.coming-soon__notify-feedback .newsletter__feedback-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.coming-soon__notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.coming-soon__notify-form .newsletter__input,
.coming-soon__notify-input {
  flex: 1 1 12rem;
  min-width: 0;
  min-height: 3rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm, 4px);
  color: #fff;
  line-height: 1.4;
}

.coming-soon__notify-form .newsletter__input::placeholder,
.coming-soon__notify-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.coming-soon__notify-form .newsletter__input:focus,
.coming-soon__notify-input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.coming-soon__notify-form .btn {
  min-height: 3rem;
  padding-inline: 1.5rem;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.coming-soon__notify-form.is-loading .btn {
  opacity: 0.85;
  pointer-events: none;
  cursor: wait;
}

@media (max-width: 768px) {
  .coming-soon__hero {
    height: 50vh;
    min-height: 280px;
  }

  .coming-soon__main {
    padding-top: 6rem;
  }

  .coming-soon__card {
    margin-inline: 0;
  }

  .coming-soon__actions {
    flex-direction: column;
  }

  .coming-soon__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .coming-soon__notify-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coming-soon__notify-form {
    flex-direction: column;
  }

  .coming-soon__notify-form .btn {
    width: 100%;
  }
}

/* Collection / Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.shop-sidebar__head {
  display: none;
}

.shop-sidebar__close {
  display: none;
}

.shop-filter + .shop-filter {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.shop-filter__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
}

.shop-filter__list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.shop-filter__link {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.8125rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), color var(--transition-base);
}

.shop-filter__link:hover {
  background: rgba(10, 15, 26, 0.04);
  color: var(--color-primary);
}

.shop-filter__link.is-active {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 500;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.shop-toolbar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop-toolbar__filter-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.shop-toolbar__count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

.shop-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.shop-select-wrap {
  position: relative;
}

.shop-select-wrap select {
  appearance: none;
  padding: 0.5rem 2rem 0.5rem 0.85rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.8125rem;
  font-family: var(--font-body);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-width: 170px;
}

.shop-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-text-muted);
  border-bottom: 1.5px solid var(--color-text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.shop-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  background: rgba(201, 169, 98, 0.12);
  color: var(--color-secondary);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 999px;
  transition: background var(--transition-base);
}

.shop-tag:hover {
  background: rgba(201, 169, 98, 0.2);
}

.shop-desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  max-width: 640px;
}

.shop-grid {
  gap: var(--gap-lg);
}

#shopProductsWrap.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.shop-pagination {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.shop-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.shop-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.shop-pager__btn:hover:not(.is-disabled) {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(201, 169, 98, 0.08);
}

.shop-pager__btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shop-pager__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.shop-pager__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.shop-pager__page:hover {
  color: var(--color-secondary);
  border-color: var(--color-border);
  background: var(--color-surface);
}

.shop-pager__page.is-active {
  color: var(--color-secondary);
  font-weight: 600;
  border-color: var(--color-primary);
  background: rgba(201, 169, 98, 0.12);
}

.shop-pager__dots {
  padding: 0 0.25rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.shop-sidebar__backdrop {
  display: none;
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shop-toolbar__filter-btn {
    display: inline-flex;
  }

  .shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100%;
    z-index: 1100;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .shop-sidebar.is-open {
    transform: translateX(0);
  }

  .shop-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .shop-sidebar__head h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
  }

  .shop-sidebar__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .shop-sidebar__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(10, 15, 26, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .shop-sidebar__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  body.is-shop-filter-open {
    overflow: hidden;
  }
}

/* Legacy collection classes */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.collection-toolbar__count { font-size: 0.875rem; color: var(--color-text-muted); }
.collection-toolbar__sort { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.collection-toolbar__sort select {
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.875rem;
}
.collection-desc { color: var(--color-text-muted); margin-bottom: 2rem; }

/* Product Detail */
body.page-product {
  overflow-x: clip;
}

body.page-product #main-content {
  overflow-x: clip;
  max-width: 100%;
}

.product-page {
  overflow-x: clip;
  width: 100%;
}

.product-page .container {
  max-width: 100%;
  width: 100%;
}

.product-page .product-detail__form,
.product-page .product-share,
.product-page .product-accordion,
.product-page .product-reviews {
  max-width: 100%;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  min-width: 0;
}
@media (max-width: 768px) {
  .product-detail { grid-template-columns: minmax(0, 1fr); gap: 2rem; }

  .product-detail__info {
    overflow: visible;
    padding-inline: 0.35rem;
  }

  .product-option__values--colors {
    padding-left: 10px;
    padding-right: 6px;
  }
}
.product-detail__gallery,
.product-detail__info {
  min-width: 0;
  max-width: 100%;
}
.product-detail__gallery { position: relative; }
.product-detail__main { position: relative; }
.product-detail__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f0ede6;
  border-radius: var(--radius-md);
  display: block;
}
.product-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  max-width: 100%;
}
.product-detail__thumb {
  position: relative;
  padding: 0;
  border: 1px solid var(--color-border);
  background: #f0ede6;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: border-color var(--transition-base), opacity var(--transition-base);
}
.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail__thumb:hover,
.product-detail__thumb.is-active {
  border-color: var(--color-secondary);
}
.product-detail__thumb.is-active {
  opacity: 1;
}
.product-detail__thumb:not(.is-active) {
  opacity: 0.72;
}
.product-detail__badge { position: absolute; top: 16px; left: 16px; z-index: 2; }
.product-detail__info h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0.5rem 0 1rem;
  color: var(--color-text);
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.product-detail__price { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.product-detail__price-current { font-size: 1.5rem; font-weight: 600; }
.product-detail__price-original { text-decoration: line-through; color: var(--color-text-muted); }
.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.product-detail__meta .is-out-of-stock {
  color: #b45309;
  font-weight: 600;
}
.product-detail__alert {
  margin-bottom: 1.25rem;
}

.product-option { margin-bottom: 1.5rem; }
.product-option > label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-option__values { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; max-width: 100%; }
.product-option__values--sizes { gap: 0.45rem; }
.product-option__chip {
  position: relative;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
  flex-shrink: 0;
}
.product-option__chip.is-active,
.product-option__chip:has(input:checked):not(.is-out-of-stock) {
  border-color: var(--color-secondary);
  border-width: 2px;
  background: #fff;
  color: var(--color-secondary);
  box-shadow: inset 0 0 0 1px #fff;
}

.product-option__chip.is-out-of-stock {
  cursor: not-allowed;
  color: #cbd5e1;
  background: #fff;
  border-color: #e2e8f0;
  overflow: hidden;
}

.product-option__chip.is-out-of-stock::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 0.5px),
    #94a3b8 calc(50% - 0.5px),
    #94a3b8 calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  pointer-events: none;
}

.product-option__chip.is-out-of-stock input {
  pointer-events: none;
}

.product-option__values--colors {
  gap: 1rem;
  align-items: center;
  padding: 6px 8px;
  overflow: visible;
}
.product-color-swatch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.product-color-swatch input { position: absolute; opacity: 0; pointer-events: none; }
.product-color-swatch__dot {
  display: block;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.product-color-swatch.is-active .product-color-swatch__dot,
.product-color-swatch:has(input:checked) .product-color-swatch__dot {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-secondary);
  transform: scale(1.06);
}
.product-color-swatch__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 3;
}
.product-color-swatch__tip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-secondary);
}
.product-color-swatch:hover .product-color-swatch__tip,
.product-color-swatch:focus-within .product-color-swatch__tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.product-option__link { display: inline-block; margin-top: 0.5rem; font-size: 0.8125rem; text-decoration: underline; color: var(--color-text-muted); }

.qty-stepper { display: inline-flex; max-width: 100%; border: 1px solid var(--color-border); }
.qty-stepper__btn {
  width: 40px;
  height: 40px;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.qty-stepper__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.qty-stepper__input {
  width: 50px;
  max-width: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 0.875rem;
}
.qty-stepper__input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.product-detail__cod {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; background: #f0faf4; color: var(--color-success);
  font-size: 0.8125rem; margin-bottom: 1.5rem; border-radius: var(--radius-sm);
}
.product-detail__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.btn--block { width: 100%; }

.product-accordion details { border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.product-accordion summary { font-weight: 600; cursor: pointer; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; }
.product-accordion p, .product-accordion ul { margin-top: 0.75rem; color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.7; }
.product-accordion li { padding: 0.25rem 0; padding-left: 1rem; position: relative; }
.product-accordion li::before { content: '•'; position: absolute; left: 0; color: var(--color-primary); }

.related-products { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--color-border); }
.shop-suggestions { margin-top: 2rem; }
.related-products h2 { text-align: center; margin-bottom: 2rem; font-family: var(--font-heading); }

/* Cart & Checkout */
.cart-count { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .cart-layout, .checkout-layout { grid-template-columns: 1fr; } }

.cart-page .cart-items {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto 40px;
  gap: 1.25rem 1.5rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item.is-removing {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 900px) {
  .cart-item {
    grid-template-columns: 80px 1fr 40px;
    grid-template-areas:
      "media info remove"
      "media qty remove"
      "media total remove";
  }
  .cart-item__media { grid-area: media; }
  .cart-item__info { grid-area: info; }
  .cart-item__qty-wrap { grid-area: qty; }
  .cart-item__line-total { grid-area: total; }
  .cart-item__remove { grid-area: remove; align-self: start; }
}

.cart-item__media { display: block; border-radius: var(--radius-sm); overflow: hidden; }
.cart-item__image { width: 96px; aspect-ratio: 3/4; object-fit: cover; background: #f0ede6; }
.cart-item__info h3 { font-size: 0.9375rem; margin-bottom: 0.35rem; font-weight: 600; }
.cart-item__info h3 a:hover { color: var(--color-primary); }
.cart-item__variant { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 0.25rem; }
.cart-item__unit-price { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }

.cart-item__qty-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.qty-stepper--cart {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-background);
}

.qty-stepper--cart .qty-stepper__btn {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.1rem;
}

.qty-stepper--cart .qty-stepper__input {
  width: 2.75rem;
  min-width: 2.75rem;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-weight: 600;
  background: transparent;
}

.cart-item__line-total { text-align: right; min-width: 110px; }
.cart-item__line-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}
.cart-item__line-total strong { font-size: 1rem; color: var(--color-text); }

.cart-item__remove {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}
.cart-item__remove:hover { color: var(--color-sale); background: rgba(184, 50, 50, 0.08); }

.cart-summary__hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.product-share {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  max-width: 100%;
}

.product-share__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
}

.product-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}

.product-share__copy-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition-base), background var(--transition-base);
}

.product-share__btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.product-share__btn:hover { border-color: var(--color-primary); background: rgba(201, 169, 98, 0.08); }
.product-share__btn--whatsapp:hover { border-color: #25d366; background: rgba(37, 211, 102, 0.1); }

.product-share__feedback {
  display: block;
  margin-top: 0.35rem;
  padding-left: 0.1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-success);
  line-height: 1.2;
}

.product-share__feedback[hidden] {
  display: none !important;
}

.btn.is-processing {
  cursor: wait;
  opacity: 0.85;
}

.product-detail__actions .btn:disabled,
.product-detail__actions .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-summary, .checkout-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.cart-summary h3, .checkout-form h2 { font-size: 1.125rem; margin-bottom: 1.25rem; }

.checkout-alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-alert__message {
  margin: 0;
  flex: 1 1 12rem;
  line-height: 1.5;
}

.checkout-alert__action {
  flex-shrink: 0;
  white-space: nowrap;
}
.cart-summary__row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; }
.cart-summary__total { font-weight: 700; font-size: 1rem; border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.5rem; }

.checkout-item { display: flex; justify-content: space-between; font-size: 0.8125rem; padding: 0.375rem 0; color: var(--color-text-muted); }
.checkout-payment-card {
  margin-bottom: 1rem;
}

.checkout-payment-card__label {
  display: block;
  cursor: default;
}

.checkout-payment-card__label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-payment-card__box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, rgba(240, 250, 244, 0.9) 100%);
  box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.15);
}

.checkout-payment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(34, 139, 84, 0.12);
  color: var(--color-success);
  flex-shrink: 0;
}

.checkout-payment-card__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.checkout-payment-card__copy strong {
  font-size: 0.9rem;
  color: var(--color-text);
}

.checkout-payment-card__copy small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.checkout-payment-card__tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-summary-coupon {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(150, 118, 47, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(212, 183, 106, 0.08) 0%, rgba(255, 255, 255, 0.65) 100%);
}
.checkout-summary-coupon__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.checkout-summary-coupon__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  flex-shrink: 0;
  color: var(--color-secondary);
  background: rgba(212, 183, 106, 0.18);
  border: 1px solid rgba(212, 183, 106, 0.35);
}
.checkout-summary-coupon__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.checkout-summary-coupon__copy strong {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.2;
}
.checkout-summary-coupon__copy span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.checkout-coupon {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}
.checkout-coupon__input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 0.72rem 0.85rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-text);
}
.checkout-coupon__input::placeholder {
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-body, inherit);
  font-size: 0.8125rem;
}
.checkout-coupon__input:focus {
  outline: none;
}
.checkout-coupon:focus-within {
  border-color: rgba(150, 118, 47, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 183, 106, 0.14);
}
.checkout-coupon__apply {
  flex-shrink: 0;
  border: none;
  border-left: 1px solid var(--color-border);
  padding: 0 1rem;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: linear-gradient(180deg, rgba(212, 183, 106, 0.28) 0%, rgba(212, 183, 106, 0.14) 100%);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.checkout-coupon__apply:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.checkout-coupon__apply:disabled {
  opacity: 0.65;
  cursor: wait;
}
.checkout-coupon__message {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  line-height: 1.45;
}
.checkout-coupon__message.is-success {
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
}
.checkout-coupon__message.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.cart-summary__row--discount {
  color: #166534;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.cart-summary__row--discount small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.85;
  margin-top: 0.15rem;
  color: var(--color-text-muted);
}
.cart-summary__total {
  margin-top: 0.35rem;
}

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.checkout-location-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .checkout-location-row__grid {
    grid-template-columns: 1fr;
  }
}
.form-field--full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 0.8125rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-field input, .form-field textarea, .contact-form input, .contact-form textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border);
  font-size: 0.875rem; background: var(--color-surface); transition: border-color var(--transition-base);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--color-primary); }

/* Empty State */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state h2 { margin-bottom: 0.75rem; }
.empty-state p { color: var(--color-text-muted); margin-bottom: 2rem; max-width: 400px; margin-inline: auto; }

/* Thank You */
.thankyou-section { padding-top: 2.5rem; }
.thankyou-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .thankyou-layout { grid-template-columns: 1fr; }
}

.thankyou-success {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
}

.thankyou-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(201, 169, 98, 0.14);
  color: var(--color-secondary);
  border: 2px solid rgba(201, 169, 98, 0.45);
}

.thankyou-success__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.thankyou-success__lead {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.thankyou-order-id {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 98, 0.08);
  border: 1px dashed rgba(201, 169, 98, 0.55);
}

.thankyou-order-id span {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-accent);
}

.thankyou-order-id strong {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
}

.thankyou-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--color-background);
  border: 1px solid var(--color-border);
}

.thankyou-meta__item { display: flex; flex-direction: column; gap: 0.2rem; }
.thankyou-meta__item--full { grid-column: 1 / -1; }
.thankyou-meta__item span {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-accent);
}
.thankyou-meta__item strong { font-size: 0.875rem; font-weight: 500; line-height: 1.5; }

.thankyou-cod {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}
.thankyou-cod p { font-size: 0.8125rem; margin-top: 0.25rem; color: var(--color-text-muted); }

.thankyou-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0;
  list-style: none;
}
@media (max-width: 640px) {
  .thankyou-steps { flex-direction: column; }
}

.thankyou-steps__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: var(--color-background);
}

.thankyou-steps__item.is-active {
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(201, 169, 98, 0.1);
  color: var(--color-secondary);
  font-weight: 600;
}

.thankyou-steps__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}
.thankyou-steps__item.is-active .thankyou-steps__dot { background: var(--color-primary); }

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.thankyou-summary { position: sticky; top: calc(var(--header-height) + 1.5rem); }
.thankyou-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.thankyou-item__image {
  width: 56px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f0ede6;
  border-radius: 2px;
}
.thankyou-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.thankyou-item__info strong { font-size: 0.8125rem; line-height: 1.35; }
.thankyou-item__info span { font-size: 0.75rem; color: var(--color-text-muted); }
.thankyou-item__price { font-size: 0.8125rem; font-weight: 600; white-space: nowrap; }

/* Track Order */
.track-order-page {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.track-order-page__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.track-order-page__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0.5rem 0 0.75rem;
}

.track-order-page__header h2 em {
  font-style: italic;
  color: var(--color-primary);
}

.track-order-page__lead {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.9375rem;
}

.track-order-page__search {
  max-width: 640px;
  margin: 0 auto;
}

.track-order-search-card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(10, 15, 26, 0.06);
}

.track-order-search-card__alert {
  margin-bottom: 1rem;
}

.track-order-form__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.track-order-form__row {
  display: flex;
  gap: 0.65rem;
}

.track-order-form__row input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--color-background);
}

.track-order-form__row input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.track-order-form__row .btn {
  flex-shrink: 0;
  padding-inline: 1.5rem;
}

.track-order-form__hint {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Track Order Dashboard (full width result) */
.track-order-dashboard {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.06) 0%, var(--color-background) 28%);
  border-top: 1px solid var(--color-border);
}

.track-dash__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0f1524 0%, #1a2438 55%, #243047 100%);
  border-radius: var(--radius-md);
  color: #fff;
  box-shadow: 0 20px 50px rgba(10, 15, 26, 0.18);
}

.track-dash__hero--cancelled {
  background: linear-gradient(135deg, #3d1515 0%, #5c2020 50%, #2a1212 100%);
}

.track-dash__hero--delivered {
  background: linear-gradient(135deg, #0f2419 0%, #1a3d2a 55%, #1e4a32 100%);
}

.track-dash__hero-main {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  flex: 1;
  min-width: 0;
}

.track-dash__ring {
  --progress: 0;
  width: clamp(88px, 14vw, 112px);
  height: clamp(88px, 14vw, 112px);
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(
    var(--color-primary) calc(var(--progress) * 1%),
    rgba(255, 255, 255, 0.12) 0
  );
  display: grid;
  place-items: center;
  padding: 5px;
}

.track-dash__ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(15, 21, 36, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.track-dash__ring-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
}

.track-dash__ring-label {
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.track-dash__eyebrow {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.track-dash__status-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.track-dash__order-id {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.25rem;
}

.track-dash__order-id strong {
  color: var(--color-primary);
  letter-spacing: 0.06em;
}

.track-dash__placed {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.75rem;
}

.track-dash__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 42ch;
  line-height: 1.55;
}

.track-dash__note--alert {
  color: #fca5a5;
}

.track-dash__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.track-dash__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.track-dash__hero .account-order-card__status {
  font-size: 0.6875rem;
  padding: 0.45rem 0.9rem;
}

.track-dash__section {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(10, 15, 26, 0.04);
}

.track-dash__section-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.track-dash__section-head h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.2rem;
}

.track-dash__section-head p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

.track-dash__section-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 98, 0.12);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.track-dash__section-icon svg {
  width: 20px;
  height: 20px;
}

.track-dash__cancelled-banner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #991b1b;
  font-size: 0.875rem;
  font-weight: 500;
}

.track-dash__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.track-dash__timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  z-index: 0;
}

.track-dash__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.track-dash__step-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-border);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.track-dash__step-marker svg {
  width: 20px;
  height: 20px;
}

.track-dash__step.is-done .track-dash__step-marker {
  border-color: var(--color-primary);
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-secondary);
}

.track-dash__step.is-current .track-dash__step-marker {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.25);
}

.track-dash__step-body strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.2rem;
  color: var(--color-text);
}

.track-dash__step-body span {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.track-dash__step.is-done .track-dash__step-body strong,
.track-dash__step.is-current .track-dash__step-body strong {
  color: var(--color-secondary);
}

.track-dash__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.track-dash__panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(10, 15, 26, 0.04);
}

.track-dash__panel--wide {
  grid-column: 1 / -1;
}

.track-dash__panel--summary {
  background: linear-gradient(180deg, #fff 0%, rgba(201, 169, 98, 0.05) 100%);
}

.track-dash__products {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.track-dash__product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.track-dash__product:hover {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 6px 20px rgba(10, 15, 26, 0.05);
}

.track-dash__product-media img {
  width: 72px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  background: #f0ede6;
  display: block;
}

.track-dash__product-placeholder {
  width: 72px;
  aspect-ratio: 3/4;
  background: #ebe6dc;
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
}

.track-dash__product-placeholder svg {
  width: 28px;
  height: 28px;
}

.track-dash__product-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

a.track-dash__product-name:hover {
  color: var(--color-primary);
}

.track-dash__product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.track-dash__product-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 0.65rem;
  opacity: 0.5;
}

.track-dash__product-qty {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.track-dash__product-price {
  text-align: right;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.track-dash__product-price strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-secondary);
  margin-top: 0.15rem;
}

.track-dash__details,
.track-dash__summary-rows {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.track-dash__details > div,
.track-dash__summary-rows > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.track-dash__details > div:last-child,
.track-dash__summary-rows > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.track-dash__details--full {
  grid-template-columns: 100px 1fr !important;
}

.track-dash__details dt,
.track-dash__summary-rows dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}

.track-dash__details dd,
.track-dash__summary-rows dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.track-dash__details a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.track-dash__summary-rows--discount dt small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

.track-dash__summary-rows--discount dd {
  color: #b45309;
}

.track-dash__summary-total {
  padding-top: 0.5rem !important;
  margin-top: 0.25rem;
  border-top: 2px solid var(--color-secondary) !important;
  border-bottom: none !important;
}

.track-dash__summary-total dt,
.track-dash__summary-total dd {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.track-dash__cod {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-sm);
}

.track-dash__notes {
  margin: 0;
  padding: 1rem 1.15rem;
  background: var(--color-background);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
}

.track-dash__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

@media (max-width: 900px) {
  .track-dash__timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .track-dash__timeline::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .track-dash__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0 1.25rem 0;
  }

  .track-dash__step-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .track-dash__grid {
    grid-template-columns: 1fr;
  }

  .track-dash__hero {
    flex-direction: column;
    align-items: stretch;
  }

  .track-dash__hero-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .track-order-form__row {
    flex-direction: column;
  }

  .track-order-form__row .btn {
    width: 100%;
  }

  .track-dash__product {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
  }

  .track-dash__product-price {
    grid-column: 2;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .track-dash__details > div,
  .track-dash__summary-rows > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Contact */
.contact-page {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1080px;
  margin-inline: auto;
}

.contact-page__intro {
  max-width: 520px;
}

.contact-page__intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.contact-page__intro h2 em {
  font-style: italic;
  color: var(--color-primary);
}

.contact-page__lead {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

.contact-channels {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-background);
  overflow: hidden;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-channel:last-child {
  border-bottom: none;
}

.contact-channel__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.14);
  color: var(--color-secondary);
}

.contact-channel__icon svg {
  width: 18px;
  height: 18px;
}

.contact-channel__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-channel div > a,
.contact-channel div > span:not(.contact-channel__label) {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-channel a {
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-channel a:hover {
  color: var(--color-primary);
}

.contact-page__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-page__aside {
  width: 100%;
}

.contact-form-card {
  width: 100%;
}

.contact-form-card__head {
  margin-bottom: 1.5rem;
}

.contact-form-card__head h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0.35rem 0 0.5rem;
}

.contact-form-card__head p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-form-card .alert {
  margin-bottom: 1.25rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.contact-form .form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-field__optional {
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: var(--color-background);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.contact-form__count {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .contact-page__intro {
    max-width: none;
    text-align: center;
  }

  .contact-page__quick {
    justify-content: center;
  }

  .contact-channel {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-page__quick {
    flex-direction: column;
  }

  .contact-page__quick .btn {
    width: 100%;
  }
}

/* FAQ */
.faq-page .section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.faq-layout {
  max-width: 820px;
  margin-inline: auto;
}

.faq-group + .faq-group {
  margin-top: 2.5rem;
}

.faq-group__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.faq-accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}

.faq-accordion__item + .faq-accordion__item {
  border-top: 1px solid var(--color-border);
}

.faq-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.faq-accordion__trigger:hover {
  background: rgba(10, 15, 26, 0.02);
  color: var(--color-primary);
}

.faq-accordion__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color var(--transition-base);
}

.faq-accordion__item.is-open .faq-accordion__icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-accordion__item.is-open .faq-accordion__trigger {
  color: var(--color-secondary);
}

.faq-accordion__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.faq-accordion__item.is-open .faq-accordion__panel {
  max-height: 280px;
  opacity: 1;
}

.faq-accordion__panel p {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.faq-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Legacy FAQ */
.faq-item { border-bottom: 1px solid var(--color-border); padding: 1.25rem 0; }
.faq-item summary { font-weight: 600; cursor: pointer; font-size: 0.9375rem; }
.faq-item p { margin-top: 0.75rem; color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.7; }

/* Static Content */
.content-block { max-width: 760px; margin-inline: auto; }
.content-block h2 { font-family: var(--font-heading); margin: 2rem 0 1rem; font-size: 1.5rem; }
.content-block p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1rem; }
.content-list { list-style: disc; padding-left: 1.5rem; color: var(--color-text-muted); line-height: 2; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); text-align: center; }
.value-card h3 { margin-bottom: 0.75rem; font-family: var(--font-heading); }

.size-table-wrap { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.size-table th, .size-table td { padding: 0.75rem 1rem; border: 1px solid var(--color-border); text-align: left; }
.size-table th { background: var(--color-secondary); color: #fff; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem; }
.size-table tbody th[scope="row"] {
  background: rgba(10, 15, 26, 0.04);
  color: var(--color-text);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}

.size-guide-page .size-guide-block {
  margin-bottom: 3.5rem;
  scroll-margin-top: 6rem;
}

.size-guide-page .size-guide-block--highlight {
  padding: 1.5rem;
  border: 1px solid rgba(184, 150, 90, 0.35);
  border-radius: var(--radius-md, 8px);
  background: rgba(184, 150, 90, 0.06);
}

.size-guide-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.size-guide-block__head h2 {
  margin: 0;
}

.size-guide-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-guide-block__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--color-surface, #f4f5f7);
  color: var(--color-text-muted);
}

.size-guide-block__note {
  margin-top: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.size-guide-page__hint {
  margin-bottom: 2rem;
  padding: 0.85rem 1rem;
  background: var(--color-surface, #f4f5f7);
  border-radius: var(--radius-md, 8px);
  color: var(--color-text-muted);
}

.size-guide-page__footer {
  margin-top: 1rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.875rem; }
.alert--success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert--error ul { margin: 0; padding-left: 1.1rem; }

/* Auth pages */
.auth-page {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.auth-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
}

.auth-page__content {
  max-width: 480px;
}

.auth-page__aside {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.auth-page__container--narrow {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.auth-page--account,
.auth-page--recover {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.auth-form__footer--single .btn {
  width: 100%;
}

.auth-card__foot {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: var(--text-small-size);
}

.auth-card__foot a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.auth-card__foot a:hover {
  color: var(--color-primary);
}

.auth-feedback {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  border-radius: var(--radius-sm);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-feedback[hidden] {
  display: none;
}

.auth-feedback--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.auth-feedback--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.auth-form.is-loading .btn {
  opacity: 0.75;
  pointer-events: none;
  cursor: wait;
}

/* Account dashboard */
.account-page {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.account-page__container {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.account-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.75rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(10, 15, 26, 0.06);
}

.account-profile__info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0 0.5rem;
}

.account-profile__email {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.account-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-orders {
  scroll-margin-top: 7rem;
  padding: 1.75rem 2rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(10, 15, 26, 0.06);
}

.account-orders__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.account-orders__head h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0;
}

.account-orders__count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.account-orders__empty {
  text-align: center;
  padding: 2.5rem 1rem;
}

.account-orders__empty p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.account-orders__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-order-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-background);
}

.account-order-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.account-order-card__label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.account-order-card__number {
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
}

.account-order-card__status {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.account-order-card__status--pending { background: #fef3c7; color: #92400e; }
.account-order-card__status--processing { background: #dbeafe; color: #1e40af; }
.account-order-card__status--shipped { background: #e0e7ff; color: #3730a3; }
.account-order-card__status--delivered { background: #d1fae5; color: #065f46; }
.account-order-card__status--cancelled { background: #fee2e2; color: #991b1b; }

.account-order-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.account-order-card__total {
  font-weight: 600;
  color: var(--color-secondary);
}

.account-order-card__items {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.account-order-card__items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.account-order-card__foot {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 640px) {
  .account-profile,
  .account-orders {
    padding: 1.25rem 1.15rem;
  }

  .account-profile {
    flex-direction: column;
    align-items: stretch;
  }

  .account-profile__actions .btn {
    width: 100%;
    text-align: center;
  }
}

.auth-page__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.auth-page__lead {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2rem;
}

.auth-page__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.auth-page__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.auth-page__feature-icon {
  color: var(--color-primary);
  font-size: 0.75rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.auth-page__note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid var(--color-primary);
}

.auth-card {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 1.75rem;
  box-shadow:
    0 2px 6px rgba(10, 15, 26, 0.04),
    0 16px 40px rgba(10, 15, 26, 0.08);
}

.auth-card__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.auth-card__head h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
}

.auth-card__head p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.35rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.auth-tabs__btn {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.auth-tabs__btn.is-active {
  background: var(--color-surface);
  color: var(--color-secondary);
  box-shadow: 0 2px 8px rgba(10, 15, 26, 0.08);
}

.auth-tabs__btn:hover:not(.is-active) {
  color: var(--color-secondary);
}

.auth-panels {
  position: relative;
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

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

.auth-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}

.auth-form__footer--single {
  justify-content: stretch;
}

.auth-form__forgot {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.auth-form__forgot:hover {
  color: var(--color-primary);
}

.auth-form .form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.auth-form .form-field input {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: var(--color-background);
  transition: border-color var(--transition-base);
}

.auth-form .form-field input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 2.85rem;
}

.auth-form .password-field input {
  width: 100%;
  padding: 0.7rem 2.85rem 0.7rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: var(--color-background);
  transition: border-color var(--transition-base);
}

.auth-form .password-field input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.password-field__toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}

.password-field__toggle .password-field__icon {
  position: absolute;
  inset: 0;
  margin: auto;
}

.password-field__toggle .password-field__icon--hide {
  display: none;
}

.password-field__toggle.is-password-visible .password-field__icon--show {
  display: none;
}

.password-field__toggle.is-password-visible .password-field__icon--hide {
  display: block;
}

.password-field__toggle:hover {
  color: var(--color-primary);
  background: rgba(10, 15, 26, 0.04);
}

.password-field__toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.password-field__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.auth-form__remember {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
}

.auth-form__remember input {
  width: 15px;
  height: 15px;
  accent-color: var(--color-primary);
}

.auth-account__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.auth-account__logout {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .auth-page__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 2.5rem;
  }

  .auth-page__content {
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }

  .auth-page__aside {
    justify-content: center;
  }

  .auth-card {
    max-width: 100%;
  }

  .auth-page__lead,
  .auth-page__note {
    margin-inline: auto;
  }

  .auth-page__features {
    align-items: center;
  }

  .auth-page__features li {
    max-width: 360px;
  }

  .auth-page__note {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--color-primary);
    padding-top: 1rem;
  }
}

@media (max-width: 560px) {
  .auth-page {
    padding-block: 2rem;
  }

  .auth-page__grid {
    gap: 2rem;
  }

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

  .auth-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-form__footer .btn {
    width: 100%;
  }

  .auth-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Cart badge */
.site-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.site-header__cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--color-primary); color: var(--color-secondary);
  font-size: 0.625rem; font-weight: 700; min-width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  padding-inline: 3px;
}
.site-header__cart-count.is-hidden { display: none; }

/* Cart Drawer — Shopify style */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  font-size: 0.75rem;
}
.cart-drawer.is-open { pointer-events: auto; }

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  max-width: 300px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -6px 0 24px rgba(10, 15, 26, 0.08);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.cart-drawer__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0.7rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-text);
  text-transform: none;
  margin: 0;
}

.cart-drawer__count {
  margin-top: 0.1rem;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

.cart-drawer__close {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition-base), color var(--transition-base);
}
.cart-drawer__close:hover {
  border-color: var(--color-secondary);
  color: var(--color-text);
}

.cart-drawer__empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.cart-drawer__items {
  padding: 0 1rem;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.55rem 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.cart-drawer__item-media {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  transition: opacity var(--transition-base);
}

.cart-drawer__item-media:hover {
  opacity: 0.85;
}

.cart-drawer__item-image {
  display: block;
  width: 48px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f0ede6;
}

.cart-drawer__item-info {
  min-width: 0;
}

.cart-drawer__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.cart-drawer__item-name {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.cart-drawer__item-name:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.cart-drawer__item-variant {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin: 0 0 0.35rem;
}

.cart-drawer__item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  height: 24px;
}

.cart-drawer__qty-btn {
  width: 24px;
  height: 22px;
  border: none;
  background: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
}

.cart-drawer__qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 0.75rem;
}

.cart-drawer__remove {
  border: none;
  background: none;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  line-height: 1.2;
}
.cart-drawer__remove:hover { color: var(--color-sale); }

.cart-drawer__item-price {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--color-text);
}

.cart-drawer__footer {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(10, 15, 26, 0.06);
  position: relative;
  z-index: 2;
}

.cart-drawer__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  padding: 0.15rem 0;
  color: var(--color-text-muted);
}

.cart-drawer__summary-row span:last-child {
  color: var(--color-text);
  font-weight: 500;
}

.cart-drawer__free {
  font-weight: 600 !important;
  color: var(--color-secondary) !important;
}

.cart-drawer__summary-total {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding-top: 0.45rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--color-border);
}

.cart-drawer__summary-total span:last-child {
  font-size: 0.9375rem;
  font-weight: 500;
}

.cart-drawer__note {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin: 0.4rem 0 0.55rem;
}

.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.cart-drawer__view-cart {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--color-secondary);
  background: rgba(201, 169, 98, 0.18);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), color var(--transition-base);
}

.cart-drawer__view-cart:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.cart-drawer__checkout {
  padding: 0.65rem 0.85rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

.cart-drawer__continue {
  display: block;
  width: 100%;
  border: none;
  background: none;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
}

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

/* Product Reviews */
.product-reviews {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
  min-width: 0;
  max-width: 100%;
}
.product-reviews__head {
  margin-bottom: 2rem;
}
.product-reviews__head h2 {
  margin: .35rem 0 .5rem;
  font-family: var(--font-heading);
}
.product-reviews__summary {
  color: var(--color-text-muted);
  font-size: .875rem;
  margin: 0;
}
.product-reviews__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .product-reviews__layout { grid-template-columns: minmax(0, 1fr); }
  .product-review-form-wrap { position: static; }
}
.product-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
}
.product-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
  flex-wrap: wrap;
}
.product-review-card__head strong {
  display: block;
  font-size: .9375rem;
  margin-bottom: .25rem;
}
.product-review-card__stars {
  color: var(--color-primary);
  font-size: .8125rem;
  letter-spacing: .05em;
}
.product-review-card__head time {
  color: var(--color-text-muted);
  font-size: .75rem;
  white-space: nowrap;
}
.product-review-card__title {
  margin: 0 0 .5rem;
  font-size: .9375rem;
  font-family: var(--font-heading);
}
.product-review-card__comment {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .875rem;
  line-height: 1.7;
  white-space: pre-line;
}
.product-reviews__empty {
  padding: 2rem;
  text-align: center;
  color: var(--color-text-muted);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  background: #faf9f6;
}
.product-review-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  position: sticky;
  top: 6rem;
}
.product-review-form-wrap h3 {
  margin: 0 0 .35rem;
  font-size: 1.0625rem;
  font-family: var(--font-heading);
}
.product-review-form-wrap__hint {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: .8125rem;
  line-height: 1.5;
}
.product-review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-review-rating {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  max-width: 100%;
}

@media (max-width: 768px) {
  .product-page .container {
    padding-inline: max(1rem, var(--section-padding-x));
  }

  .product-detail {
    gap: 1.5rem;
  }

  .product-detail__thumbs {
    gap: 0.5rem;
  }

  .product-share {
    margin-inline: 0;
  }

  .product-detail__info h1 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-detail__price {
    flex-wrap: wrap;
  }

  .product-detail__meta {
    font-size: 0.8125rem;
  }

  .product-share__actions {
    width: 100%;
  }

  .product-share__btn span {
    display: none;
  }

  .product-share__btn {
    padding: 0.55rem 0.65rem;
  }

  .product-color-swatch__tip {
    display: none;
  }

  .product-option__chip {
    min-width: 2.75rem;
    height: 2.75rem;
    font-size: 0.75rem;
  }

  .product-review-rating__option span {
    padding: 0.4rem 0.55rem;
    font-size: 0.6875rem;
  }

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

/* Site toasts */
.site-toast-wrap {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 11050;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}

.site-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 32px rgba(10, 15, 26, 0.14);
  pointer-events: auto;
  animation: siteToastIn 0.35s ease;
}

.site-toast.is-leaving {
  animation: siteToastOut 0.28s ease forwards;
}

.site-toast--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.site-toast--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.site-toast--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.site-toast--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.site-toast__text {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.45;
}

.site-toast__close {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.65;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-toast__close:hover {
  opacity: 1;
}

@keyframes siteToastIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes siteToastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(12px); }
}

@media (max-width: 768px) {
  .site-toast-wrap {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    width: min(360px, calc(100vw - 1.5rem));
  }
}
.product-review-rating__option {
  cursor: pointer;
}
.product-review-rating__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-review-rating__option span {
  display: inline-flex;
  align-items: center;
  padding: .45rem .65rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: .75rem;
  background: #fff;
  transition: all .2s ease;
}
.product-review-rating__option input:checked + span,
.product-review-rating__option:hover span {
  border-color: var(--color-primary);
  background: rgba(212, 183, 106, 0.12);
  color: var(--color-secondary);
}

/* About page stats banner */
.philosophy__stats--banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}

.section--dark .philosophy__stats--banner .stat__number {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
}

.section--dark .philosophy__stats--banner .stat__label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8125rem;
  margin-top: 0.35rem;
}

@media (max-width: 768px) {
  .philosophy__stats--banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Checkout searchable selects */
.search-select {
  position: relative;
}

.search-select__label,
.form-field .search-select__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.search-select__trigger {
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: var(--color-text);
  cursor: pointer;
}

.search-select__trigger.is-placeholder {
  color: var(--color-text-muted);
}

.search-select.is-disabled .search-select__trigger,
.form-field.is-disabled .search-select__trigger {
  opacity: 0.55;
  cursor: not-allowed;
}

.search-select__panel {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(10, 15, 26, 0.12);
  overflow: hidden;
}

.search-select__search {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem 0.85rem;
  font: inherit;
}

.search-select__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 220px;
  overflow: auto;
}

.search-select__option {
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.search-select__option:hover,
.search-select__option.is-selected {
  background: rgba(201, 169, 98, 0.12);
}

.search-select__empty {
  padding: 0.75rem 0.85rem;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

.checkout-remember {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  cursor: pointer;
}

.checkout-remember input {
  margin-top: 0.2rem;
}

.checkout-remember strong {
  display: block;
  margin-bottom: 0.2rem;
}

.checkout-remember small {
  display: block;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.thankyou-orders {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.thankyou-orders h3 {
  margin-bottom: 1rem;
}

.thankyou-orders__list {
  display: grid;
  gap: 0.75rem;
}

.thankyou-orders__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.thankyou-orders__item.is-current {
  border-color: var(--color-primary);
  background: rgba(201, 169, 98, 0.08);
}
