.inner-page {
  background: var(--ivory);
  color: var(--ink);
}

.inner-page .site-header {
  position: relative;
  top: 0;
  height: 88px;
  background: var(--canvas);
  color: var(--white);
}

.inner-page .site-header.is-fixed {
  position: fixed;
  height: 72px;
}

.inner-page .brand-logo--light,
.inner-page .site-header.is-fixed .brand-logo--light {
  opacity: 1;
}

.inner-page .brand-logo--dark,
.inner-page .site-header.is-fixed .brand-logo--dark {
  opacity: 0;
}

.inner-main {
  overflow: hidden;
}

.page-hero {
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  padding-block: 80px 70px;
  background: var(--canvas);
  color: var(--white);
}

.inner-page .page-hero {
  background-color: var(--canvas);
  background-image: none;
}

.inner-page .page-hero > img {
  display: none;
}

.page-hero--light {
  background: var(--ivory);
  color: var(--navy);
}

.inner-page .page-hero--light {
  background-color: var(--ivory);
}

.page-hero--media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.page-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,21,54,.88), rgba(6,21,54,.2)), linear-gradient(0deg, rgba(6,21,54,.7), transparent 58%);
}

.page-hero--media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media .page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__inner {
  width: var(--shell);
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: currentColor;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .15em;
  opacity: .68;
}

.breadcrumbs a:hover {
  opacity: .7;
}

.page-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .19em;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font: 500 clamp(48px, 5.5vw, 82px)/.92 var(--serif);
  letter-spacing: -.035em;
}

.page-hero p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: currentColor;
  line-height: 1.75;
  opacity: .72;
}

.page-section {
  padding-block: 82px;
}

.page-section--blue {
  background: var(--canvas);
  color: var(--white);
}

.page-section--sand {
  background: #eee8df;
}

.compact-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.compact-heading h2 {
  margin: 0;
  color: inherit;
  font: 500 clamp(32px, 3.4vw, 50px)/1 var(--serif);
  letter-spacing: -.025em;
}

.compact-heading p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: inherit;
  opacity: .68;
}

.archive-toolbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding-block: 15px;
  border-block: 1px solid rgba(10,36,99,.18);
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-chip {
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(10,36,99,.2);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .12em;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--navy);
  color: var(--white);
}

.archive-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #626a77;
  font-size: 10px;
}

.archive-sort select,
.field select,
.field input,
.field textarea {
  border: 1px solid rgba(10,36,99,.2);
  border-radius: 0;
  background: rgba(255,255,255,.42);
  color: var(--ink);
}

.archive-sort select {
  padding: 9px 32px 9px 11px;
}

.archive-sort select,
.field select {
  appearance: none;
  min-height: 44px;
  padding: 11px 44px 11px 14px;
  border-color: rgba(10,36,99,.24);
  background-color: #f4f0e9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%230a2463' stroke-width='1.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 11px 7px;
  color: var(--navy);
  font: 500 10px/1.2 var(--sans);
  letter-spacing: .035em;
  cursor: pointer;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}

.archive-sort select:hover,
.archive-sort select:focus,
.field select:hover,
.field select:focus {
  border-color: var(--gold);
  background-color: #faf8f4;
  outline: 0;
}

.archive-sort option,
.field select option {
  background: #faf8f4;
  color: var(--navy);
}

.archive-grid {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
}

.archive-grid .product-visual {
  aspect-ratio: 1 / .92;
}

.archive-grid .product-info h3,
.inner-page .product-info h3,
.inner-page .product-info .product-price {
  color: var(--navy);
}

.inner-page .product-info p,
.inner-page .swatches small {
  color: #707783;
}

.category-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.category-panel {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  color: var(--white);
}

.category-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.category-panel:hover img {
  transform: scale(1.035);
  filter: brightness(.82);
}

.category-panel div {
  position: absolute;
  inset: auto 0 0;
  padding: 55px 24px 22px;
  background: linear-gradient(transparent, rgba(6,21,54,.95));
}

.category-panel h2 {
  margin: 0;
  font: 500 28px var(--serif);
}

.category-panel p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 10px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: clamp(45px, 6vw, 96px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #eee8df;
  position: relative;
}

.product-gallery__main img,
.product-gallery__main video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .2s var(--ease), transform .45s var(--ease);
}

.product-gallery__main [hidden] {
  display: none;
}

.product-gallery__play {
  position: absolute;
  z-index: 1;
  inset: 0;
  inline-size: clamp(56px, 7vw, 76px);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: rgba(6, 21, 54, .82);
  color: var(--white);
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.product-gallery__play:hover,
.product-gallery__play:focus-visible {
  background: var(--navy-deep);
  outline: 0;
  transform: scale(1.06);
}

.product-gallery__play span {
  margin-left: 3px;
  font-size: 18px;
  line-height: 1;
}

.product-gallery__main img.is-changing,
.product-gallery__main video.is-changing {
  opacity: .55;
  transform: scale(.99);
}

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

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #eee8df;
  cursor: pointer;
  transition: border-color .25s var(--ease), opacity .25s var(--ease);
}

.product-gallery__thumb img,
.product-gallery__thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: var(--gold);
  outline: 0;
}

.product-gallery__thumb:not(.is-active) {
  opacity: .74;
}

.product-gallery__thumb:hover img,
.product-gallery__thumb:hover video,
.product-gallery__thumb:focus-visible img,
.product-gallery__thumb:focus-visible video {
  transform: scale(1.035);
}

.product-gallery__thumb--video {
  position: relative;
}

.product-gallery__thumb--video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 21, 54, .82);
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
}

.product-summary {
  position: sticky;
  top: 105px;
}

.product-summary .breadcrumbs {
  color: #69717d;
}

.product-summary h1 {
  margin: 0;
  color: var(--navy);
  font: 500 clamp(38px, 4vw, 58px)/.96 var(--serif);
}

.product-type {
  margin: 0 0 8px;
  color: #717986;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .15em;
}

.single-price {
  margin: 18px 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.product-lead {
  color: #606976;
  line-height: 1.8;
}

.option-group {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(10,36,99,.18);
}

.option-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
}

.option-label a {
  color: #68717d;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.size-options input {
  position: absolute;
  opacity: 0;
}

.size-options label {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10,36,99,.2);
  color: var(--navy);
  cursor: pointer;
}

.size-options input:checked + label,
.size-options label:hover {
  background: var(--navy);
  color: var(--white);
}

.product-buy {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  cursor: pointer;
}

.product-buy:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--canvas);
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: rgba(10,36,99,.16);
}

.product-meta div {
  padding: 14px 10px;
  background: var(--ivory);
  text-align: center;
}

.product-meta strong {
  display: block;
  color: var(--navy);
  font: 500 15px var(--serif);
}

.product-meta span {
  color: #727a85;
  font-size: 8px;
}

.details-list {
  margin-top: 28px;
  border-top: 1px solid rgba(10,36,99,.18);
}

.details-list details {
  border-bottom: 1px solid rgba(10,36,99,.18);
}

.details-list summary {
  padding: 17px 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.details-list p {
  margin: 0;
  padding: 0 0 20px;
  color: #656e7a;
  font-size: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}

.split-layout--reverse .split-media {
  order: 2;
}

.split-media {
  min-height: 500px;
  overflow: hidden;
  background: var(--surface);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.split-copy h2 {
  max-width: 600px;
  margin: 0;
  color: inherit;
  font: 500 clamp(34px, 4vw, 58px)/.98 var(--serif);
}

.split-copy p {
  max-width: 600px;
  color: inherit;
  line-height: 1.85;
  opacity: .7;
}

.value-grid,
.service-card-grid,
.store-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card,
.service-card,
.store-card,
.journal-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(10,36,99,.16);
}

.page-section--blue .value-card,
.page-section--blue .service-card {
  border-color: rgba(255,255,255,.16);
}

.value-card span {
  color: var(--gold);
  font: 500 18px var(--serif);
}

.value-card h3,
.service-card h2,
.store-card h2,
.journal-card h2 {
  margin: 24px 0 10px;
  color: inherit;
  font: 500 24px/1.05 var(--serif);
}

.value-card p,
.service-card p,
.store-card p,
.journal-card p {
  margin: 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.7;
  opacity: .68;
}

.journal-card,
.store-card {
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,.22);
}

.journal-card img,
.store-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.journal-card div,
.store-card div {
  padding: 25px;
}

.journal-card small,
.store-card small {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .14em;
}

.journal-card h2,
.store-card h2 {
  margin-top: 12px;
}

.article-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--canvas);
  color: var(--white);
}

.article-feature img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.article-feature div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 90px);
}

.article-feature h2 {
  margin: 0;
  font: 500 clamp(32px, 3.5vw, 50px)/1 var(--serif);
}

.article-feature p {
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

.article-feature a,
.journal-card a,
.store-card a {
  align-self: flex-start;
  margin-top: 22px;
}

.content-narrow {
  width: min(820px, var(--shell));
  margin-inline: auto;
}

.prose h2 {
  margin: 55px 0 16px;
  color: var(--navy);
  font: 500 30px var(--serif);
}

.prose h3 {
  margin: 30px 0 10px;
  color: var(--navy);
  font: 500 20px var(--serif);
}

.prose p,
.prose li {
  color: #5e6774;
  line-height: 1.85;
}

.prose ul,
.prose ol {
  padding-left: 20px;
}

.prose table,
.size-table,
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.prose th,
.prose td,
.size-table th,
.size-table td,
.cart-table th,
.cart-table td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(10,36,99,.17);
  text-align: left;
}

.prose th,
.size-table th,
.cart-table th {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .13em;
}

td label{
  margin-right: 10px;
}

.accordion-page {
  border-top: 1px solid rgba(10,36,99,.24);
}

.accordion-page .accordion-item {
  border-color: rgba(10,36,99,.22);
}

.accordion-page .accordion-item h2 {
  margin: 0;
}

.accordion-page .accordion-item button {
  color: var(--navy);
}

.accordion-page .accordion-item i::before,
.accordion-page .accordion-item i::after {
  background: var(--navy);
}

.accordion-page .accordion-panel {
  max-width: 850px;
}

.accordion-page .accordion-panel p {
  color: #4f5968;
}

.accordion-page .accordion-panel a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.form-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .13em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  outline: 0;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.form-submit {
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--canvas);
}

.contact-aside,
.order-summary {
  padding: 32px;
  background: #eee8df;
}

.contact-aside h2,
.order-summary h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font: 500 26px var(--serif);
}

.contact-aside p {
  color: #626b77;
}

.contact-aside > a[href^="mailto:"] {
  display: block;
  margin-top: 9px;
  color: var(--navy);
}

.contact-aside__action {
  margin-top: 24px;
}

.cart-product {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
}

.cart-product img {
  width: 90px;
  height: 90px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eee8df;
}

.cart-product strong {
  display: block;
  color: var(--navy);
  font: 500 18px var(--serif);
}

.cart-product small {
  color: #717986;
}

.quantity-input {
  width: 64px;
  padding: 8px;
  border: 1px solid rgba(10,36,99,.2);
  background: transparent;
  color: var(--ink);
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(10,36,99,.15);
  color: #606976;
}

.order-total {
  color: var(--navy);
  font-weight: 600;
}

.order-summary .form-submit {
  width: 100%;
  margin-top: 20px;
}

.search-form {
  max-width: 850px;
  display: flex;
  border-bottom: 1px solid rgba(10,36,99,.36);
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: 400 clamp(24px, 3vw, 38px) var(--serif);
}

.search-form button {
  padding: 16px 0 16px 25px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .14em;
}

.empty-state {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  color: var(--navy);
  font: 500 34px var(--serif);
}

.not-found {
  min-height: calc(100svh - 120px);
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background: var(--canvas);
  color: var(--white);
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--gold);
  font: 500 clamp(100px, 18vw, 220px)/.75 var(--serif);
}

.not-found h1 {
  margin: 35px 0 10px;
  font: 500 40px var(--serif);
}

.not-found p {
  max-width: 520px;
  color: rgba(255,255,255,.66);
}

.not-found .button {
  margin-top: 25px;
}

@media (max-width: 1000px) {
  .archive-grid,
  .value-grid,
  .service-card-grid,
  .store-grid,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-summary {
    position: static;
  }
}

@media (max-width: 900px) {
  .inner-page .site-header,
  .inner-page .site-header.is-fixed {
    height: 72px;
  }

  .inner-page .menu-open .site-header {
    top: 0;
  }

  .split-layout,
  .article-feature {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .split-media {
    order: 0;
  }

  .split-media {
    min-height: 380px;
  }

  .article-feature img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .inner-page .site-header,
  .inner-page .site-header.is-fixed {
    top: 0;
    height: 66px;
  }

  .page-hero {
    min-height: 310px;
    padding-block: 65px 50px;
  }

  .page-hero--media {
    min-height: 420px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-section {
    padding-block: 64px;
  }

  .archive-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-grid,
  .category-intro-grid,
  .value-grid,
  .service-card-grid,
  .store-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    gap: 6px;
    margin-top: 6px;
  }

  .size-options {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .split-media {
    min-height: 300px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .cart-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table tr {
    padding-block: 18px;
    border-bottom: 1px solid rgba(10,36,99,.18);
  }

  .cart-table td {
    padding: 7px 0;
    border: 0;
  }

  .cart-product {
    grid-template-columns: 72px 1fr;
  }

  .cart-product img {
    width: 72px;
    height: 72px;
  }

  .contact-aside,
  .order-summary {
    padding: 24px;
  }
}

/* WordPress and WooCommerce integration layers. */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  width: min(100% - 40px, 1400px);
  margin: 24px auto;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  padding: 16px 18px;
  border: 1px solid rgba(6, 21, 54, .18);
  background: var(--ivory);
  color: var(--navy-deep);
  list-style: none;
}

.single-price .amount,
.product-price .amount,
.order-line .amount,
.cart-table .amount { color: inherit; }

.belzano-variation-select[hidden] { display: none !important; }
.woocommerce-variation-description p { margin: 12px 0; }
.woocommerce-variation-price { margin: 12px 0; color: var(--navy-deep); font-weight: 600; }
.reset_variations { display: inline-block; margin-top: 10px; font-size: 11px; }
.single_add_to_cart_button.disabled { opacity: .52; cursor: not-allowed; }
.color-choice i { background: var(--swatch-color, #4b2f26); }

.product-purchase .quantity { display: block; }
.product-purchase .qty {
  width: 100%;
  height: 57px;
  border: 1px solid rgba(6, 21, 54, .22);
  background: rgba(255, 255, 255, .18);
  color: var(--navy-deep);
  text-align: center;
  font-weight: 600;
}

.woocommerce-checkout .form-row { margin: 0 0 18px; }
.woocommerce-checkout .form-row label { display: block; margin-bottom: 8px; }
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea { width: 100%; }
.woocommerce-checkout .select2-container { width: 100% !important; }
.woocommerce-checkout .select2-selection { min-height: 48px; padding: 9px 12px; border-color: rgba(6, 21, 54, .2); border-radius: 0; }
.wc_payment_methods { padding: 0; margin: 24px 0; list-style: none; }
.wc_payment_method { padding: 14px 0; border-top: 1px solid rgba(6, 21, 54, .14); }
.payment_box { padding: 10px 0 0 24px; color: rgba(6, 21, 54, .7); }
.order-shipping { padding: 16px 0; border-top: 1px solid rgba(6, 21, 54, .14); }
.order-shipping > span { display: block; margin-bottom: 10px; font-weight: 600; }
.shipping-methods { display: grid; gap: 8px; }
.shipping-methods label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.place-order .form-submit { width: 100%; }
.cart_totals .checkout-button { display: flex; }
.cart-table .quantity .qty { width: 72px; min-height: 44px; text-align: center; }
.table-scroll { overflow-x: auto; }

/* Native WooCommerce controls, normalized to the approved Belzano UI. */
.archive-filters .filter-chip {
  appearance: none;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(10, 36, 99, .24);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font: 600 8px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.archive-filters .filter-chip:hover,
.archive-filters .filter-chip:focus-visible,
.archive-filters .filter-chip.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  outline: 0;
}

.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-cart-form .qty {
  appearance: none;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(6, 21, 54, .22);
  border-radius: 0;
  background: #faf8f4;
  color: var(--navy-deep);
  -webkit-text-fill-color: var(--navy-deep);
  caret-color: var(--navy-deep);
  box-shadow: none;
  outline: 0;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.woocommerce-checkout .form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.woocommerce-checkout .form-row .input-text::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
  color: rgba(6, 21, 54, .42);
  opacity: 1;
}

.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-cart-form .qty:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--gold);
}

.woocommerce-checkout .form-row .input-text:-webkit-autofill,
.woocommerce-checkout .form-row .input-text:-webkit-autofill:hover,
.woocommerce-checkout .form-row .input-text:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--navy-deep);
  box-shadow: 0 0 0 1000px #faf8f4 inset;
  transition: background-color 9999s ease-out;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  height: 50px;
  padding: 10px 42px 10px 14px;
  border: 1px solid rgba(6, 21, 54, .22);
  border-radius: 0;
  background: #faf8f4;
  color: var(--navy-deep);
}

.woocommerce-checkout .select2-container .select2-selection__rendered {
  padding: 0;
  color: var(--navy-deep);
  line-height: 28px;
}

.woocommerce-checkout .select2-container .select2-selection__arrow {
  top: 12px;
  right: 12px;
}

.woocommerce-checkout .form-row.woocommerce-invalid .input-text,
.woocommerce-checkout .form-row.woocommerce-invalid .select2-selection {
  border-color: #9a4d36;
}

.cart_totals .checkout-button,
.woocommerce-checkout #place_order,
.woocommerce-cart-form button[name="update_cart"] {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--navy);
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  font: 600 9px/1.2 var(--sans);
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.cart_totals .checkout-button:hover,
.cart_totals .checkout-button:focus-visible,
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:focus-visible,
.woocommerce-cart-form button[name="update_cart"]:hover,
.woocommerce-cart-form button[name="update_cart"]:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
  outline: 0;
}

.woocommerce-cart-form button[name="update_cart"]:disabled,
.woocommerce-checkout #place_order:disabled {
  opacity: .52;
  cursor: not-allowed;
}

.woocommerce-cart-form button[name="update_cart"] {
  width: auto;
}

.woocommerce-cart-form.is-updating,
.cart_totals.is-updating {
  pointer-events: none;
}

/* Native number steppers use a black OS skin; the approved UI uses a plain field. */
.qty,
.field input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty::-webkit-inner-spin-button,
.qty::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.quantity--stepped {
  display: grid !important;
  grid-template-columns: 32px minmax(44px, 1fr) 32px;
  align-items: stretch;
  width: max-content;
  border: 1px solid rgba(6, 21, 54, .22);
  background: #faf8f4;
}

.quantity--stepped .qty {
  width: 54px !important;
  min-width: 0;
  min-height: 44px;
  padding-inline: 4px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.qty-step {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-deep);
  font: 500 18px/1 var(--sans);
  cursor: pointer;
}

.qty-step:hover,
.qty-step:focus-visible {
  background: var(--navy-deep);
  color: var(--white);
  outline: 0;
}

.product-purchase .quantity--stepped {
  grid-template-columns: 22px minmax(28px, 1fr) 22px;
  width: 100%;
}

.product-purchase .quantity--stepped .qty {
  width: 100% !important;
  height: 55px;
}

input,
textarea,
select,
option,
.select2-container {
  color-scheme: light;
}

.select2-container .select2-dropdown {
  border-color: rgba(6, 21, 54, .22);
  border-radius: 0;
  background: #faf8f4;
  color: var(--navy-deep);
}

.select2-container .select2-search--dropdown .select2-search__field {
  border: 1px solid rgba(6, 21, 54, .22) !important;
  background: #faf8f4 !important;
  color: var(--navy-deep) !important;
  -webkit-text-fill-color: var(--navy-deep) !important;
  caret-color: var(--navy-deep);
  box-shadow: none !important;
}

.select2-container .select2-results__option {
  background: #faf8f4;
  color: var(--navy-deep);
}

.select2-container .select2-results__option[aria-selected="true"] {
  background: #eee8df;
  color: var(--navy-deep);
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background: var(--navy-deep);
  color: var(--white);
}

/* Checkout validation is presented as a fixed notice, never as a new grid row. */
.woocommerce-checkout .checkout-inline-error-message {
  display: none !important;
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  position: fixed;
  z-index: 1200;
  top: 104px;
  left: 50%;
  width: min(620px, calc(100% - 32px));
  margin: 0;
  transform: translateX(-50%);
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error {
  width: 100%;
  margin: 0;
  padding: 14px 18px;
  border-color: rgba(154, 77, 54, .4);
  background: #faf8f4;
  box-shadow: 0 14px 36px rgba(6, 21, 54, .14);
}

/* Keep typed and browser-autofilled values in the approved navy-on-ivory palette. */
.field input,
.field textarea,
.field select {
  background-color: #faf8f4;
  color: var(--navy-deep);
  -webkit-text-fill-color: var(--navy-deep);
  caret-color: var(--navy-deep);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill,
.field textarea:-webkit-autofill:hover,
.field textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--navy-deep);
  box-shadow: 0 0 0 1000px #faf8f4 inset;
  transition: background-color 9999s ease-out;
}

@media (max-width: 640px) {
  .woocommerce-checkout .woocommerce-NoticeGroup-checkout {
    top: 78px;
  }
}

@media (max-width: 1000px) {
  .order-received-overview__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .order-received-overview__grid { grid-template-columns: 1fr; }
  .order-received-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; }
}

/* Savoir-faire editorial page */
.craft-page {
  background: #f7f2e9;
  color: var(--navy-deep);
}

.craft-chapter {
  position: relative;
  padding-block: clamp(76px, 8vw, 124px);
}

.craft-chapter .craft-index {
  position: absolute;
  z-index: 0;
  color: rgba(176, 139, 74, .09);
  font: 400 clamp(138px, 16vw, 250px)/.7 var(--serif);
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
}

.craft-breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(45px, 6vw, 88px);
  color: var(--navy-deep);
}

.craft-heading {
  position: relative;
  min-height: clamp(150px, 15vw, 220px);
  display: flex;
  align-items: center;
}

.craft-heading .craft-index {
  top: 0;
  left: 0;
}

.craft-heading__content {
  position: relative;
  z-index: 1;
  margin-left: 19%;
}

.craft-kicker {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.craft-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.craft-heading h1,
.craft-heading h2,
.craft-material__copy h2,
.craft-comfort__copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font: 500 clamp(42px, 4.4vw, 68px)/.96 var(--serif);
  letter-spacing: -.035em;
}

.craft-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid rgba(6, 21, 54, .16);
  list-style: none;
}

.craft-step {
  min-width: 0;
  border-left: 1px solid rgba(6, 21, 54, .16);
}

.craft-step:last-child {
  border-right: 1px solid rgba(6, 21, 54, .16);
}

.craft-step__media {
  position: relative;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  background: #2d1d14;
}

.craft-step__media img {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 400%;
  max-width: none;
  height: 100%;
}

.craft-step:nth-child(2) .craft-step__media img {
  transform: translateX(-25%);
}

.craft-step:nth-child(3) .craft-step__media img {
  transform: translateX(-50%);
}

.craft-step:nth-child(4) .craft-step__media img {
  transform: translateX(-75%);
}

.craft-step__caption {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
}

.craft-step__caption span {
  color: var(--gold);
  font: 600 12px/1 var(--serif);
}

.craft-step__caption h2,
.craft-step__caption h3 {
  margin: 0;
  color: var(--navy-deep);
  font: 600 10px/1.3 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.craft-chapter--material {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.craft-material {
  display: grid;
  grid-template-columns: minmax(245px, .65fr) minmax(0, 1.55fr);
  gap: clamp(45px, 6vw, 95px);
  align-items: end;
}

.craft-material__copy {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.craft-material__copy .craft-index {
  top: 20px;
  left: -15px;
  color: rgba(255, 255, 255, .065);
}

.craft-material__content {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.craft-material__copy h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(38px, 3.5vw, 55px);
}

.craft-material__copy p:not(.craft-kicker) {
  margin: 0 0 19px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.75;
}

.craft-steps--material {
  border-color: rgba(255, 255, 255, .12);
}

.craft-steps--material .craft-step {
  border-color: rgba(255, 255, 255, .12);
}

.craft-steps--material .craft-step__caption {
  min-height: 98px;
}

.craft-steps--material .craft-step__caption h3 {
  color: var(--white);
}

.craft-chapter--comfort {
  background: #f7f2e9;
}

.craft-comfort__heading {
  position: relative;
  min-height: clamp(105px, 13vw, 175px);
  display: flex;
  align-items: center;
}

.craft-comfort__heading .craft-index {
  top: 0;
  left: 0;
}

.craft-comfort__heading .craft-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 0 21%;
}

.craft-comfort__media {
  position: relative;
  aspect-ratio: 12 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.craft-comfort__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
}

.craft-comfort__details {
  display: grid;
  grid-template-columns: minmax(270px, .8fr) minmax(0, 1.65fr);
  gap: clamp(48px, 7vw, 110px);
  padding: clamp(46px, 6vw, 78px) 2.5% 0;
}

.craft-comfort__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 3.5vw, 54px);
}

.craft-comfort__copy p {
  max-width: 390px;
  margin: 0;
  color: rgba(6, 21, 54, .67);
  font-size: 13px;
  line-height: 1.75;
}

.craft-comfort__copy .button {
  margin-top: 28px;
}

.craft-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(6, 21, 54, .16);
  list-style: none;
}

.craft-benefits li {
  padding: 18px clamp(22px, 3vw, 43px);
  border-right: 1px solid rgba(6, 21, 54, .16);
}

.craft-benefits h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font: 600 10px/1.3 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.craft-benefits p {
  margin: 0;
  color: rgba(6, 21, 54, .61);
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .craft-material {
    grid-template-columns: 1fr;
  }

  .craft-material__copy {
    min-height: 360px;
  }

  .craft-material__content {
    max-width: 570px;
    margin-left: 18%;
  }

  .craft-comfort__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .craft-chapter {
    padding-block: 68px;
  }

  .craft-breadcrumbs {
    margin-bottom: 35px;
  }

  .craft-heading {
    min-height: 195px;
    align-items: flex-end;
    padding-bottom: 30px;
  }

  .craft-heading .craft-index,
  .craft-comfort__heading .craft-index {
    top: 5px;
  }

  .craft-heading__content,
  .craft-material__content {
    margin-left: 0;
  }

  .craft-heading h1,
  .craft-heading h2,
  .craft-material__copy h2,
  .craft-comfort__copy h2 {
    font-size: 39px;
  }

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

  .craft-step:nth-child(3) {
    border-left: 0;
  }

  .craft-step:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 21, 54, .16);
  }

  .craft-step__caption {
    min-height: 84px;
    gap: 10px;
  }

  .craft-material__copy {
    min-height: 410px;
    align-items: flex-end;
    padding-bottom: 18px;
  }

  .craft-material__copy .craft-index {
    top: 5px;
    left: 0;
  }

  .craft-steps--material .craft-step:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, .12);
  }

  .craft-comfort__heading {
    min-height: 145px;
    align-items: flex-end;
    padding-bottom: 22px;
  }

  .craft-comfort__heading .craft-kicker {
    margin-left: 0;
  }

  .craft-comfort__media {
    aspect-ratio: 4 / 3;
  }

  .craft-comfort__media img {
    object-position: 47% center;
  }

  .craft-comfort__details {
    gap: 45px;
    padding-inline: 0;
  }

  .craft-benefits {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(6, 21, 54, .16);
  }

  .craft-benefits li {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 21, 54, .16);
  }

  .craft-benefits h3 {
    margin: 0 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .craft-page [data-reveal] {
    transition: none;
  }
}

/* Notre histoire editorial page */
.history-page {
  background: var(--ivory);
  color: var(--navy-deep);
}

.history-origin,
.history-wardrobe {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.history-origin {
  padding-block: clamp(66px, 7vw, 108px);
}

.history-breadcrumbs {
  margin-bottom: clamp(45px, 6vw, 82px);
  color: var(--white);
}

.history-origin__layout {
  display: grid;
  grid-template-columns: minmax(310px, .8fr) minmax(0, 1.25fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.history-origin__copy {
  position: relative;
  z-index: 1;
}

.history-kicker {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .23em;
  line-height: 1.2;
  text-transform: uppercase;
}

.history-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.history-origin h1,
.history-origin h2 {
  margin: 0;
  color: var(--white);
  font: 500 clamp(43px, 4.3vw, 66px)/1.02 var(--serif);
  letter-spacing: -.035em;
}

.history-origin__rule {
  width: 50%;
  height: 1px;
  margin: 38px 0 34px;
  background: rgba(176, 139, 74, .72);
}

.history-origin__copy > p:not(.history-kicker) {
  max-width: 455px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.78;
}

.history-origin__visuals {
  min-width: 0;
  height: min(63vw, 670px);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(100px, 1fr);
  gap: clamp(12px, 1.6vw, 25px);
}

.history-origin__portrait,
.history-origin__leather {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #2d1d14;
}

.history-origin__portrait img,
.history-origin__leather img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-origin__portrait img {
  object-position: center;
}

.history-origin__leather img {
  object-position: center;
}

.history-values {
  padding-block: clamp(74px, 8vw, 118px);
  background: #f7f2e9;
}

.history-values__media {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.history-values__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-values__heading {
  padding: clamp(42px, 5vw, 66px) 20px 32px;
  text-align: center;
}

.history-values__heading h2,
.history-wardrobe__heading h2 {
  margin: 0;
  font: 500 clamp(40px, 4vw, 60px)/1 var(--serif);
  letter-spacing: -.03em;
}

.history-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
  border-left: 1px solid rgba(6, 21, 54, .16);
}

.history-values__grid article {
  padding: 12px clamp(25px, 4vw, 58px) 6px;
  border-right: 1px solid rgba(6, 21, 54, .16);
  text-align: center;
}

.history-values__grid h3 {
  margin: 0 0 19px;
  color: var(--navy-deep);
  font: 600 10px/1.3 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.history-values__grid p {
  max-width: 270px;
  margin: 0 auto;
  color: rgba(6, 21, 54, .63);
  font-size: 12px;
  line-height: 1.72;
}

.history-wardrobe {
  padding-block: clamp(82px, 8vw, 122px);
}

.history-wardrobe__heading {
  max-width: 910px;
  margin-inline: auto;
  text-align: center;
}

.history-wardrobe__heading .history-kicker {
  justify-content: center;
}

.history-wardrobe__heading h2 {
  color: var(--white);
  font-size: clamp(39px, 3.8vw, 57px);
}

.history-wardrobe__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: clamp(50px, 6vw, 84px);
}

.history-look {
  min-width: 0;
  display: block;
  text-align: center;
}

.history-look:nth-child(3) {
  transform: translateY(-18px);
}

.history-look figure {
  position: relative;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.history-look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.history-look h3 {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .88);
  font: 500 18px/1.2 var(--serif);
  transition: color .3s ease;
}

.history-look:hover img,
.history-look:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.history-look:hover h3,
.history-look:focus-visible h3 {
  color: var(--gold);
}

.history-look:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 7px;
}

.history-wardrobe__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(44px, 5vw, 68px);
}

.history-wardrobe__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(176, 139, 74, .7);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.history-wardrobe__link span {
  font-size: 17px;
  line-height: 1;
  transition: transform .3s var(--ease);
}

.history-wardrobe__link:hover span,
.history-wardrobe__link:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 1000px) {
  .history-origin__layout {
    grid-template-columns: 1fr;
  }

  .history-origin__copy {
    max-width: 650px;
  }

  .history-origin__rule {
    width: 50%;
  }

  .history-origin__visuals {
    height: min(90vw, 650px);
  }

  .history-wardrobe__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 38px;
  }

  .history-look:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 700px) {
  .history-origin,
  .history-values,
  .history-wardrobe {
    padding-block: 68px;
  }

  .history-breadcrumbs {
    margin-bottom: 45px;
  }

  .history-origin h1,
  .history-origin h2,
  .history-values__heading h2,
  .history-wardrobe__heading h2 {
    font-size: 39px;
  }

  .history-origin__visuals {
    height: 490px;
    grid-template-columns: minmax(0, 3fr) minmax(72px, 1fr);
  }

  .history-values__heading {
    padding-inline: 0;
  }

  .history-values__grid {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(6, 21, 54, .16);
  }

  .history-values__grid article {
    padding: 28px 15px;
    border-bottom: 1px solid rgba(6, 21, 54, .16);
  }

  .history-values__grid h3 {
    margin-bottom: 12px;
  }

  .history-wardrobe__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .history-look:last-child {
    width: calc(50% - 6px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .history-look h3 {
    margin-top: 12px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .history-look img,
  .history-wardrobe__link span {
    transition: none;
  }
}

/* Single product editorial template */
.product-page {
  background: #f7f2e9;
  color: var(--navy-deep);
}

.product-intro {
  background: #f7f2e9;
}

.product-page .product-layout {
  min-height: calc(100svh - 124px);
  display: grid;
  grid-template-columns: minmax(0, 57.5%) minmax(390px, 42.5%);
  gap: 0;
  align-items: start;
}

.product-page .product-gallery {
  position: relative;
  min-width: 0;
  min-height: calc(100svh - 124px);
  display: grid;
  place-items: start center;
  padding-top: clamp(50px, 5vw, 82px);
  background: transparent;
}

.product-page .product-gallery__main {
  width: min(calc(100% - 48px), 500px);
  height: auto;
  min-height: 0;
  aspect-ratio: var(--gallery-aspect-ratio, 3 / 4);
  background: transparent;
}

.product-page .product-gallery__main img,
.product-page .product-gallery__main video {
  object-fit: contain;
}

.product-page .product-gallery__thumbs {
  position: absolute;
  z-index: 2;
  top: clamp(50px, 5vw, 82px);
  left: clamp(20px, 2.8vw, 48px);
  width: clamp(108px, 9vw, 132px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  transform: none;
}

.product-page .product-gallery__thumb {
  aspect-ratio: 1 / 1;
  border-color: rgba(6, 21, 54, .18);
  background: transparent;
}

.product-page .product-gallery__thumb.is-active {
  border-color: var(--gold);
}

.product-page .product-summary {
  position: static;
  width: 100%;
  max-width: 670px;
  align-self: start;
  padding: clamp(50px, 5vw, 82px) clamp(42px, 5.2vw, 86px);
}

.product-page .product-summary .breadcrumbs {
  margin-bottom: 31px;
  color: rgba(6, 21, 54, .62);
}

.product-page .product-summary h1 {
  color: var(--navy-deep);
  font-size: clamp(43px, 4.2vw, 62px);
}

.product-page .product-type {
  margin-bottom: 10px;
  color: rgba(6, 21, 54, .6);
  font-weight: 600;
  letter-spacing: .18em;
}

.product-page .single-price {
  margin: 20px 0 21px;
  color: var(--navy-deep);
  font-size: 18px;
  letter-spacing: .03em;
}

.product-page .product-lead {
  max-width: 540px;
  margin: 0;
  color: rgba(6, 21, 54, .7);
  font-size: 13px;
  line-height: 1.68;
}

.product-page .option-group {
  margin-top: 24px;
  padding-top: 20px;
  border-top-color: rgba(6, 21, 54, .17);
}

.product-page .option-label {
  margin-bottom: 14px;
  color: var(--navy-deep);
  font-size: 8px;
  letter-spacing: .17em;
}

.product-page .option-label a {
  color: rgba(6, 21, 54, .65);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
}

.product-page .size-options label {
  min-height: 44px;
  border-color: rgba(6, 21, 54, .22);
  background: rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 600;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.product-page .product-buy {
  min-height: 57px;
  margin-top: 0;
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.product-page .product-buy:hover,
.product-page .product-buy:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.product-purchase {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.product-quantity {
  position: relative;
  display: block;
}

.product-quantity span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.product-quantity input {
  width: 100%;
  height: 57px;
  padding: 0 8px;
  border: 1px solid rgba(6, 21, 54, .22);
  background: rgba(255, 255, 255, .18);
  color: var(--navy-deep);
  text-align: center;
  font-weight: 600;
}

.product-quantity input:focus-visible,
.product-whatsapp:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.product-whatsapp {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 9px;
  border: 1px solid var(--navy-deep);
  background: transparent;
  color: var(--navy-deep);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.product-whatsapp img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(24%) saturate(4097%) hue-rotate(192deg) brightness(80%) contrast(104%);
}

.product-whatsapp:hover,
.product-whatsapp:focus-visible {
  background: var(--navy-deep);
  color: var(--white);
}

.product-whatsapp:hover img,
.product-whatsapp:focus-visible img {
  filter: brightness(0) invert(1);
}

.product-page .product-meta {
  gap: 0;
  margin-top: 27px;
  background: transparent;
  border-inline: 1px solid rgba(6, 21, 54, .16);
}

.product-page .product-meta div {
  padding: 8px 10px 10px;
  background: transparent;
  border-right: 1px solid rgba(6, 21, 54, .16);
}

.product-page .product-meta div:last-child {
  border-right: 0;
}

.product-page .product-meta strong {
  color: var(--navy-deep);
  font-size: 14px;
}

.product-page .product-meta span {
  color: rgba(6, 21, 54, .6);
}

.product-page .details-list {
  margin-top: 27px;
}

.product-page .details-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  list-style: none;
  text-transform: uppercase;
}

.product-page .details-list summary::-webkit-details-marker {
  display: none;
}

.product-page .details-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.product-page .details-list details[open] summary::after {
  content: "−";
}

.product-page .details-list p {
  padding-bottom: 16px;
  color: rgba(6, 21, 54, .65);
  line-height: 1.7;
}

.product-story {
  padding-block: clamp(76px, 8vw, 116px);
  background: var(--navy-deep);
  color: var(--white);
}

.product-story__layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
  gap: clamp(50px, 7vw, 108px);
  align-items: center;
  padding-bottom: clamp(44px, 5vw, 70px);
  border-bottom: 1px solid rgba(176, 139, 74, .7);
}

.product-story__copy {
  max-width: 430px;
}

.product-story__kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.product-story__copy h2 {
  margin: 0 0 28px;
  color: var(--white);
  font: 500 clamp(38px, 3.4vw, 53px)/1 var(--serif);
  letter-spacing: -.025em;
}

.product-story__copy > p:not(.product-story__kicker) {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.75;
}

.product-story__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(176, 139, 74, .72);
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.product-story__link span {
  transition: transform .3s var(--ease);
}

.product-story__link:hover span,
.product-story__link:focus-visible span {
  transform: translate(3px, -2px);
}

.product-story__visuals {
  min-width: 0;
  height: min(48vw, 540px);
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(105px, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
}

.product-story__visuals figure {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.product-story__visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-story__main img {
  object-position: center 62%;
}

.product-story__detail img {
  object-position: center;
}

.product-page .products-section {
  padding-block: clamp(70px, 7vw, 105px);
}

.product-page .products-section .compact-heading {
  margin-bottom: 34px;
}

.product-page .products-section .compact-heading h2 {
  font-size: clamp(37px, 3.3vw, 49px);
}

.product-page .products-section .product-visual {
  background: #ebe2d5;
}

/* Order received / WooCommerce thank-you template */
.order-received-page {
  background: #f7f2e9;
  color: var(--navy-deep);
}

.order-received-hero {
  padding: clamp(74px, 9vw, 126px) 0 clamp(66px, 8vw, 110px);
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.order-received-hero__inner {
  max-width: 760px;
}

.order-received-hero__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(176, 139, 74, .85);
  border-radius: 50%;
  color: var(--gold);
  font-size: 26px;
}

.order-received-hero .page-kicker {
  margin-bottom: 17px;
  color: var(--gold);
}

.order-received-hero h1 {
  max-width: 680px;
  margin: 0 auto;
  color: var(--white);
  font: 500 clamp(45px, 5vw, 70px)/.98 var(--serif);
  letter-spacing: -.03em;
}

.order-received-hero p:last-child {
  max-width: 590px;
  margin: 23px auto 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.order-received-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.order-received-content {
  display: grid;
  gap: 38px;
}

.order-received-overview,
.order-received-details,
.order-received-aside {
  border: 1px solid rgba(6, 21, 54, .14);
}

.order-received-overview {
  padding: clamp(25px, 3vw, 38px);
}

.order-received-overview h2,
.order-received-details h2,
.order-received-aside h2 {
  margin: 0;
  color: var(--navy-deep);
  font: 500 clamp(28px, 3vw, 36px)/1 var(--serif);
}

.order-received-overview dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 29px 0 0;
  border-top: 1px solid rgba(6, 21, 54, .14);
}

.order-received-overview dl div {
  min-width: 0;
  padding: 18px 16px 0 0;
}

.order-received-overview dl div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(6, 21, 54, .14);
}

.order-received-overview dt,
.order-received-item p,
.order-received-aside h3 {
  margin: 0;
  color: rgba(6, 21, 54, .62);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.order-received-overview dd {
  margin: 9px 0 0;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.order-received-details {
  padding: clamp(25px, 3vw, 38px);
}

.order-received-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
}

.order-received-heading .eyebrow {
  margin: 0 0 9px;
}

.order-received-heading > p {
  max-width: 245px;
  margin: 0;
  color: rgba(6, 21, 54, .62);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.order-received-items {
  margin-top: 28px;
  border-top: 1px solid rgba(6, 21, 54, .14);
}

.order-received-item,
.order-received-totals div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.order-received-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(6, 21, 54, .14);
}

.order-received-item h3 {
  margin: 7px 0 0;
  color: var(--navy-deep);
  font: 500 23px var(--serif);
}

.order-received-item strong,
.order-received-totals strong {
  color: var(--navy-deep);
  font-size: 14px;
}

.order-received-totals {
  margin-top: 19px;
}

.order-received-totals div {
  padding: 9px 0;
  color: rgba(6, 21, 54, .66);
  font-size: 13px;
}

.order-received-totals__total {
  margin-top: 8px;
  padding-top: 18px !important;
  border-top: 1px solid rgba(6, 21, 54, .2);
  color: var(--navy-deep) !important;
  font-size: 15px !important;
  font-weight: 600;
}

.order-received-totals__total strong {
  font-size: 17px;
}

.order-received-aside {
  padding: clamp(27px, 3.2vw, 40px);
  background: #eee8df;
}

.order-received-aside .eyebrow {
  margin: 0 0 16px;
}

.order-received-aside > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(6, 21, 54, .66);
  line-height: 1.68;
}

.order-received-aside hr {
  margin: 27px 0 24px;
  border: 0;
  border-top: 1px solid rgba(6, 21, 54, .16);
}

.order-received-aside h3 {
  color: var(--navy-deep);
}

.order-received-aside .form-submit {
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: 29px;
}

@media (max-width: 1000px) {
  .product-page .product-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-page .product-gallery {
    min-height: 0;
    padding: 16px 16px 0;
  }

  .product-page .product-gallery__main {
    width: min(100%, 580px);
  }

  .product-page .product-gallery__thumbs {
    position: static;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    transform: none;
  }

  .product-page .product-summary {
    width: min(100% - 48px, 760px);
    max-width: none;
    margin-inline: auto;
    padding: 64px 0 76px;
  }

  .product-story__layout {
    grid-template-columns: 1fr;
  }

  .product-story__copy {
    max-width: 600px;
  }

  .product-story__visuals {
    height: min(78vw, 580px);
  }
}

@media (max-width: 640px) {
  .product-page .product-gallery {
    padding: 8px 8px 0;
  }

  .product-page .product-gallery__thumbs {
    gap: 6px;
    margin-top: 6px;
  }

  .product-page .product-summary {
    width: calc(100% - 32px);
    padding-block: 54px 66px;
  }

  .product-page .product-summary h1 {
    font-size: 41px;
  }

  .product-page .size-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-page .product-meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-page .product-meta strong {
    font-size: 12px;
  }

  .product-story {
    padding-block: 68px;
  }

  .product-story__copy h2 {
    font-size: 38px;
  }

  .product-story__visuals {
    height: 430px;
    grid-template-columns: minmax(0, 3fr) minmax(75px, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-story__link span {
    transition: none;
  }
}

/* Checkout utility fields */
.checkout .belzano-hidden-field {
  display: none;
}

.checkout .woocommerce-shipping-fields {
  display: none;
}

.checkout #ship-to-different-address {
  display: none;
}

/* Contact channels */
.contact-channels-section {
  padding: var(--section-space) 0 0;
}

.contact-channels {
  padding: clamp(34px, 5vw, 64px);
  background: var(--ivory);
  border: 1px solid rgba(6, 21, 54, .16);
  color: var(--navy-deep);
}

.contact-channels__heading {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.contact-channels .eyebrow {
  color: var(--gold);
}

.contact-channels h2 {
  color: var(--navy-deep);
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(6, 21, 54, .16);
  border-left: 1px solid rgba(6, 21, 54, .16);
}

.contact-channel {
  min-height: 180px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-right: 1px solid rgba(6, 21, 54, .16);
  border-bottom: 1px solid rgba(6, 21, 54, .16);
  color: var(--navy-deep);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.contact-channel:hover,
.contact-channel:focus-visible {
  background: var(--sand);
  color: var(--navy-deep);
}

.contact-channel__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 500 21px/1 var(--serif);
}

.contact-channel__icon img {
  width: 18px;
  height: 18px;
  filter: none;
}

.contact-channel:hover .contact-channel__icon img,
.contact-channel:focus-visible .contact-channel__icon img {
  filter: none;
}

.contact-channel__label {
  margin-top: auto;
  color: var(--gold);
  text-transform: uppercase;
  font: 500 9px var(--sans);
  letter-spacing: .15em;
}

.contact-channel:hover .contact-channel__label,
.contact-channel:focus-visible .contact-channel__label {
  color: currentColor;
}

.contact-channel strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font: 400 18px/1.2 var(--serif);
}

/* Fluent Forms: Contact page only */
.belzano-contact-form .fluentform {
  margin: 0;
}

.belzano-contact-form .ff-t-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.belzano-contact-form .ff-t-cell,
.belzano-contact-form .ff-el-group {
  margin: 0 0 20px;
}

.belzano-contact-form .ff-el-input--label label {
  color: var(--ink);
  font: 500 13px var(--sans);
}

.belzano-contact-form .ff-el-form-control,
.belzano-contact-form textarea.ff-el-form-control {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(6, 21, 54, .2);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font: 400 14px var(--sans);
}

.belzano-contact-form textarea.ff-el-form-control {
  min-height: 150px;
  resize: vertical;
}

.belzano-contact-form .ff-el-form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(176, 139, 74, .16);
}

.belzano-contact-form .ff-el-form-control::placeholder {
  color: rgba(6, 21, 54, .5);
}

.belzano-contact-form .ff_submit_btn_wrapper {
  margin: 8px 0 0;
}

.belzano-contact-form .ff-btn.ff-btn-submit {
  width: auto;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--navy-deep) !important;
  border-radius: 0;
  background: var(--navy-deep) !important;
  color: var(--white) !important;
  text-transform: uppercase;
  font: 600 10px var(--sans);
  letter-spacing: .16em;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.belzano-contact-form .ff-btn.ff-btn-submit:hover,
.belzano-contact-form .ff-btn.ff-btn-submit:focus-visible {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.belzano-contact-form .text-danger,
.belzano-contact-form .error.text-danger {
  color: #a23a2b;
  font-size: 12px;
}

@media (max-width: 800px) {
  .contact-channels__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .contact-channels { padding: 30px 20px; }
  .contact-channels__grid { grid-template-columns: 1fr; }
  .contact-channel { min-height: 145px; }
  .belzano-contact-form .ff-t-container { grid-template-columns: 1fr; gap: 0; }
}

/* WhatsApp order flow */
.whatsapp-order-hero {
  padding: clamp(72px, 8vw, 112px) 0 clamp(42px, 5vw, 68px);
  background: var(--ivory);
}

.whatsapp-order-hero h1 {
  max-width: 760px;
  margin: 16px 0 12px;
  color: var(--navy-deep);
  font: 500 clamp(44px, 5vw, 72px)/.98 var(--serif);
}

.whatsapp-order-hero > .shell > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(6, 21, 54, .68);
  line-height: 1.7;
}

.whatsapp-order-section {
  padding: 0 0 clamp(80px, 10vw, 140px);
  background: var(--ivory);
}

.whatsapp-order-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.whatsapp-order-summary,
.whatsapp-order-form {
  padding: clamp(24px, 3.2vw, 46px);
  border: 1px solid rgba(6, 21, 54, .14);
  background: rgba(255, 255, 255, .27);
}

.whatsapp-order-summary h2,
.whatsapp-order-form h2 {
  margin: 5px 0 0;
  color: var(--navy-deep);
  font: 500 clamp(28px, 3vw, 38px)/1.08 var(--serif);
}

.whatsapp-product {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
}

.whatsapp-product > img {
  width: 118px;
  height: 118px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e7ddd0;
}

.whatsapp-product h3 {
  margin: 2px 0 4px;
  color: var(--navy-deep);
  font: 500 23px/1.15 var(--serif);
}

.whatsapp-product > div > p {
  margin: 0 0 12px;
  color: rgba(6, 21, 54, .58);
  font-size: 11px;
}

.whatsapp-product dl,
.whatsapp-product dl div {
  margin: 0;
}

.whatsapp-product dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: rgba(6, 21, 54, .68);
  font-size: 11px;
}

.whatsapp-product dd {
  margin: 0;
  color: var(--navy-deep);
  font-weight: 600;
}

.whatsapp-product dl .whatsapp-product__total {
  margin-top: 4px;
  padding-top: 13px;
  border-top: 1px solid rgba(6, 21, 54, .15);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
}

.whatsapp-service {
  margin: 32px 0 25px;
  padding: 25px;
  border-left: 3px solid var(--gold);
  background: rgba(6, 21, 54, .045);
}

.whatsapp-service__kicker {
  margin: 0;
  color: var(--gold-deep, #9b762d);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
}

.whatsapp-service h3 {
  margin: 4px 0 18px;
  color: var(--navy-deep);
  font: 500 24px var(--serif);
}

.whatsapp-service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(6, 21, 54, .12);
}

.whatsapp-service__grid div {
  padding: 14px;
  border-right: 1px solid rgba(6, 21, 54, .1);
  border-bottom: 1px solid rgba(6, 21, 54, .1);
}

.whatsapp-service__grid div:nth-child(2n) { border-right: 0; }
.whatsapp-service__grid div:nth-last-child(-n + 2) { border-bottom: 0; }

.whatsapp-service__grid strong,
.whatsapp-service__grid span {
  display: block;
}

.whatsapp-service__grid strong {
  color: var(--navy-deep);
  font-size: 10px;
}

.whatsapp-service__grid span {
  margin-top: 3px;
  color: rgba(6, 21, 54, .58);
  font-size: 9px;
}

.whatsapp-order-form .form-grid {
  margin-top: 30px;
}

.whatsapp-order-form .field label span {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.whatsapp-submit {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  border: 1px solid var(--navy-deep);
  background: var(--navy-deep);
  color: var(--white);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.whatsapp-submit img {
  filter: brightness(0) invert(1);
}

.whatsapp-submit:hover,
.whatsapp-submit:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.whatsapp-submit:hover img,
.whatsapp-submit:focus-visible img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(24%) saturate(4097%) hue-rotate(192deg) brightness(80%) contrast(104%);
}

.whatsapp-form-note,
.whatsapp-form-status {
  margin: 13px 0 0;
  color: rgba(6, 21, 54, .58);
  text-align: center;
  font-size: 9px;
  line-height: 1.6;
}

.whatsapp-form-status {
  padding: 11px 13px;
  border: 1px solid rgba(151, 45, 36, .25);
  background: rgba(151, 45, 36, .06);
  color: #7f2923;
  text-align: left;
}

@media (max-width: 1000px) {
  .whatsapp-order-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .whatsapp-order-hero { padding-block: 60px 38px; }
  .whatsapp-order-hero h1 { font-size: 42px; }
  .whatsapp-order-summary,
  .whatsapp-order-form { padding: 24px 18px; }
  .whatsapp-product { grid-template-columns: 88px minmax(0, 1fr); gap: 15px; }
  .whatsapp-product > img { width: 88px; height: 88px; }
  .whatsapp-service { padding: 20px 16px; }
  .whatsapp-service__grid { grid-template-columns: 1fr; }
  .whatsapp-service__grid div { border-right: 0; border-bottom: 1px solid rgba(6, 21, 54, .1); }
  .whatsapp-service__grid div:nth-last-child(2) { border-bottom: 1px solid rgba(6, 21, 54, .1); }
  .whatsapp-order-form .form-grid { grid-template-columns: 1fr; }
  .whatsapp-order-form .field { grid-column: 1; }
  .product-purchase { grid-template-columns: 72px minmax(0, 1fr); }
}

/* Pre-conversion interaction and order-template safeguards. */
.size-options input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.size-options.has-error label {
  border-color: #9a4d36;
}

.search-empty {
  margin: 34px 0 0;
  color: rgba(6, 21, 54, .68);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .order-received-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-received-aside {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .order-received-hero {
    padding-block: 64px 58px;
  }

  .order-received-hero__mark {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    font-size: 23px;
  }

  .order-received-hero h1 {
    font-size: clamp(39px, 11vw, 48px);
  }

  .order-received-overview,
  .order-received-details,
  .order-received-aside {
    padding: 24px;
  }

  .order-received-overview dl {
    display: block;
    margin-top: 23px;
  }

  .order-received-overview dl div,
  .order-received-overview dl div + div {
    padding: 15px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(6, 21, 54, .14);
  }

  .order-received-overview dl div:last-child {
    border-bottom: 0;
  }

  .order-received-heading {
    display: block;
  }

  .order-received-heading > p {
    max-width: none;
    margin-top: 18px;
    text-align: left;
  }

  .order-received-item {
    align-items: flex-start;
  }

  .order-received-item h3 {
    font-size: 21px;
  }

  .order-received-item strong {
    white-space: nowrap;
  }

  .cart-table td[data-label] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cart-table td[data-label]::before {
    content: attr(data-label);
    color: rgba(6, 21, 54, .62);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
}
