@font-face {
  font-family: "Degular";
  src: url("../fonts/Degular-Light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Degular";
  src: url("../fonts/Degular-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Degular";
  src: url("../fonts/Degular-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

:root {
  --bg-color: #321b0b;
  --text-color: #fbdfcb;
  --accent-red: #fe6e76;
}

/* Global scrollbar styling (Firefox + WebKit) */
html,
body,
* {
  scrollbar-width: thin;
  scrollbar-color: var(--text-color) rgba(251, 223, 203, 0.16);
}

*::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: rgba(251, 223, 203, 0.16);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 999px;
  border: 2px solid var(--bg-color);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-red);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Degular", sans-serif;
  font-weight: 100;
  min-height: 100vh;
}

@supports (padding-top: env(safe-area-inset-top)) {
  html,
  body {
    min-height: 100dvh;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top);
    background-color: var(--bg-color);
    pointer-events: none;
    z-index: 999;
  }
}

html.home-page {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.home-page {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  overscroll-behavior: none;
}

@supports (height: 100dvh) {
  body.home-page {
    height: 100dvh;
    min-height: 100dvh;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.page-transition-enter {
    animation: pageTransitionEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.page-transition-leave {
    opacity: 0;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
    pointer-events: none;
  }
}

@keyframes pageTransitionEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  caret-color: var(--text-color);
}

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

a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  height: 3.75rem;
  z-index: 240;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--text-color);
}

.header.is-fixed-on-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0.5rem 1.25rem;
}

.back-button {
  width: 1.425rem;
  height: 1.425rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  opacity: 1;
  transition: opacity 0.2s;
}

.back-button:hover {
  opacity: 0.7;
}

.back-icon {
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
}

.back-button.hidden {
  visibility: hidden;
}

.back-icon-next {
  transform: rotate(180deg);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo img {
  height: 0.9375rem;
  width: auto;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0;
  width: 1.4375rem;
  height: 1.375rem;
  justify-content: center;
  position: relative;
  z-index: 260;
  opacity: 1;
  transition: opacity 0.2s;
}

.menu-button:hover {
  opacity: 0.7;
}

.menu-button span {
  display: block;
  width: 1.4375rem;
  height: 0.0625rem;
  background-color: var(--text-color);
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.2s ease;
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
  padding-top: 3.75rem;
}

@media (min-width: 1024px) {
  body.menu-open {
    padding-top: 5rem;
  }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  background: rgba(16, 9, 4, 0);
  transition: background-color 0.24s ease;
}

.mobile-menu-panel {
  background-color: var(--bg-color);
  transform: translateY(-102%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  padding-top: 3.75rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  /* min-height: 5.125rem; */
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--text-color);
  color: var(--text-color);
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  color: rgba(251, 223, 203, 0.5);
}

.mobile-menu-link.is-current {
  color: rgba(251, 223, 203, 0.5);
}

@media (min-width: 1024px) {
  .mobile-menu-panel {
    padding-top: 5rem;
  }

  .mobile-menu-link {
    font-size: 1.875rem;
  }
}

.mobile-menu-overlay.is-open {
  pointer-events: auto;
  background: rgba(16, 9, 4, 0.18);
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translateY(0);
}

/* CONTACT PAGE */
.contact-page {
  min-height: 100vh;
}

.contact-container {
  /* min-height: calc(100vh - 3.75rem); */
  padding: 2.8rem 1.875rem 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

/* @media (max-width: 480px) {
  .contact-title {
    font-size: 2.75rem;
    margin-bottom: 4rem;
  }

  .contact-email {
    font-size: 1.8125rem;
  }
} */

.contact-title {
  font-size: 2.75rem;
  font-weight: 100;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2.6rem;
  border-bottom: 1px solid var(--text-color);
}

.contact-email {
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  opacity: 0.9;
  margin-bottom: 1.1rem;
}

.contact-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
}

.contact-social-link {
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.contact-social-icon {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.2s ease;
}

.contact-social-link:hover .contact-social-icon,
.contact-social-link:focus-visible .contact-social-icon {
  opacity: 0.5;
}

.contact-card .order-success-image {
  width: 11rem;
  margin: 1.5rem auto 0;
}

.contact-legal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--text-color);
  text-align: center;
}

.contact-legal-links a {
  font-size: 0.9375rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  /* text-decoration: underline; */
  /* text-underline-offset: 0.125rem; */
}

.contact-legal-links a:hover,
.contact-legal-links a:focus-visible {
  opacity: 0.5;
}

/* LEGAL PAGES */
body.legal-page {
  min-height: 100vh;
}

.legal-container {
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: 2.75rem clamp(1.5rem, 5vw, 2.75rem) 1.5rem;
}

.legal-intro {
  text-align: center;
  padding-top: 0.25rem;
}

.legal-title {
  font-size: 2.75rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-subtitle {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.legal-divider {
  width: 100%;
  margin: 1.125rem 0 1.3rem;
  border-top: 1px solid var(--text-color);
}

.privacy-policy-page .legal-divider {
  margin-top: 0.875rem;
}

.legal-content {
  width: min(100%, 58rem);
  margin: 0 auto;
}

.legal-effective-date {
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  letter-spacing: 0.012em;
  opacity: 0.8;
}

.legal-section + .legal-section {
  margin-top: 1.625rem;
}

.legal-section h2 {
  margin-bottom: 0.1875rem;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.15;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.0313rem;
}

.legal-section p + p {
  margin-top: 0.25rem;
}

.legal-section ul {
  margin-top: 0.875rem;
  padding-left: 1.35rem;
}

.legal-section li + li {
  margin-top: 0.4rem;
}

.legal-section a {
  transition: opacity 0.2s ease;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  opacity: 0.5;
}

.legal-footer {
  width: min(100%, 58rem);
  margin: 1.3rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--text-color);
  text-align: center;
}

.legal-footer-title {
  display: inline-block;
  margin-bottom: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 100;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.legal-footer-title:hover,
.legal-footer-title:focus-visible {
  opacity: 0.5;
}

.legal-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6875rem;
}

.legal-social-link {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.legal-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.legal-social-link:hover img,
.legal-social-link:focus-visible img {
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .contact-container {
    min-height: calc(100vh - 5rem);
    /* padding: 7.5rem 7.5rem; */
    padding-top: 7rem;
  }

  .contact-card {
    max-width: 48rem;
    margin-top: 0;
  }

  .contact-title {
    font-size: 4rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.625rem;
    line-height: 1;
  }

  .contact-email {
    font-size: 1.4375rem;
    margin-bottom: 1.25rem;
  }

  .contact-socials {
    gap: 1.0625rem;
  }

  .contact-social-link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .contact-legal-links {
    padding-top: 1.5rem;
    gap: 0.5rem;
  }

  .contact-legal-links a {
    font-size: 1rem;
    letter-spacing: 0.0358rem;
  }

  .legal-container {
    padding: 4rem clamp(3rem, 8vw, 5rem) 0rem;
  }

  .legal-intro {
    padding-top: 0;
  }

  .legal-title {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .legal-subtitle {
    margin-top: 0.1rem;
    font-size: 0.875rem;
    letter-spacing: 0.0313rem;
  }

  .legal-divider {
    width: min(100%, 54rem);
    margin: 1.5rem auto 1.2rem;
  }

  .privacy-policy-page .legal-divider {
    margin-top: 1.125rem;
  }

  .legal-content,
  .legal-footer {
    width: min(100%, 54rem);
  }

  .legal-effective-date {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .legal-section + .legal-section {
    margin-top: 1.45rem;
  }

  .legal-section h2 {
    margin-bottom: 0.125rem;
    font-size: 1.125rem;
    letter-spacing: 0.045em;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.9375rem;
    line-height: 1.5;
    letter-spacing: 0.0335rem;
  }

  .legal-footer {
    margin-top: 1.5rem;
    padding-top: 1.4375rem;
    padding-bottom: 3.125rem;
  }

  .legal-footer-title {
    margin-bottom: 0.9375rem;
    font-size: 1.4375rem;
    letter-spacing: 0.06rem;
  }

  .legal-socials {
    gap: 0.8125rem;
  }

  .legal-social-link {
    width: 1.625rem;
    height: 1.625rem;
  }
}

/* HOME PAGE */
.home-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 3.75rem);
  background-color: var(--bg-color);
}

body.home-page .home-container {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

@media (min-width: 1024px) {
  .hero-image {
    object-position: 50% 0%;
  }
}

@media (min-width: 1600px) {
  .hero-image {
    object-position: 50% 0%;
  }
}

.cta-container {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 2;
}

.cta-button {
  display: block;
  border: 1px solid var(--text-color);
  padding: 0.9375rem;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  background-color: rgba(42, 26, 17, 0.5);
  backdrop-filter: blur(2px);
  /* background-color: var(--bg-color); */
  color: var(--text-color);
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(42, 26, 17, 0.8);
}

/* MODELS PAGE */
.models-container {
  padding: 0 clamp(1.25rem, 3.5vw, 1.875rem) 2.5rem;
}

.model-section {
  margin-top: 2.8125rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.model-section:first-child {
  margin-top: 2.8125rem;
  padding-top: 0;
}

.model-section:nth-child(n + 2) {
  margin-top: 3.125rem;
}

.model-title {
  text-align: left;
  line-height: 1;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid var(--text-color);
}

.model-title .label {
  font-size: 0.875rem;
  letter-spacing: 0.0313rem;
  text-transform: lowercase;
  display: block;
  /* margin-bottom: 0.46875rem; */
  line-height: 1;
}

.model-title .name {
  font-size: 2.75rem;
  text-transform: uppercase;
  display: block;
  margin-left: -0.1rem;
}

.model-intro {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  letter-spacing: 0.0313rem;
  line-height: 1.25;
  /* max-width: 26rem; */
  /* text-align: center; */
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6875rem 0.9375rem;
  padding-top: 1.40625rem;
}

.product-card {
  cursor: pointer;
}

.product-card.is-unavailable {
  opacity: 0.55;
}

.product-card .product-unavailable-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--text-color);
  background: rgba(50, 27, 11, 0.88);
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04rem;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.product-card .image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--text-color);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 0.5rem;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.28s ease;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  /* padding-top: 0.5rem 0; */
  row-gap: 0;
  column-gap: 0.9375rem;
  opacity: 1;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover img,
  .product-card:focus-visible img {
    transform: scale(1.035);
  }

  .product-card:hover .product-info,
  .product-card:focus-visible .product-info {
    opacity: 0.8;
  }
}

.product-info .color-label {
  grid-column: 1;
  grid-row: 1;
  text-transform: lowercase;
  font-size: 0.875rem;
  letter-spacing: 0.0313rem;
}

.product-info .color-name {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.0625rem;
  letter-spacing: 0.0313rem;
  text-transform: uppercase;
  line-height: 1;
}

.product-info .price {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.0625rem;
  color: var(--accent-red);
  text-align: right;
  line-height: 1;
}

/* PRODUCT DETAIL PAGE */
.product-detail-container {
  padding-top: 2.8125rem;
  margin-top: 0;
}

.product-wrapper {
  padding: 0 clamp(1.25rem, 3.5vw, 1.875rem);
}

.main-info {
  text-align: center;
}

.product-title,
.color-title {
  text-align: left;
  line-height: 1;
  padding-bottom: 0.3125rem;
  border-bottom: 0.0469rem solid var(--text-color);
}

/* .0313rem */

.product-title {
  padding-top: 0;
}

.color-title {
  padding-bottom: 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
}

.product-title .label,
.color-title .label {
  font-size: 0.875rem;
  font-weight: 100;
  letter-spacing: 0.0313rem;
  text-transform: lowercase;
  display: block;
  line-height: 1;
}

.color-title .label {
  margin-bottom: 0.0625rem;
  grid-column: 1;
  grid-row: 1;
}

.product-title .name,
.color-title .name {
  text-transform: uppercase;
  display: block;
  margin-left: -0.1rem;
}

.color-title .name {
  grid-column: 1;
  grid-row: 2;
  margin-left: 0rem;
}

.product-title .name {
  font-size: 2.75rem;
}

.color-title .name {
  font-size: 1.8125rem;
  font-weight: 100;
}

.color-title .status {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.875rem;
  font-weight: 100;
  letter-spacing: 0.0313rem;
  text-align: right;
  align-self: center;
}

.color-title .status.is-unavailable {
  color: var(--accent-red);
}

.product-content {
  padding-top: 1.40625rem;
}

.image-slider {
  position: relative;
  width: 100%;
  display: none;
}

.main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.40625rem;
  object-fit: cover;
}

.main-image.is-zoomable,
.gallery-image.is-zoomable {
  cursor: zoom-in;
}

.gallery-nav {
  display: none;
}

.description {
  font-size: 0.875rem;
  font-weight: 100;
  line-height: 1.25;
  margin: 0.9375rem 0 1.40625rem;
  text-align: left;
  /* letter-spacing: .03125rem; do 13px */
  letter-spacing: 0.0313rem;
}

.model-desc-break {
  display: block;
  /* height: 0.75rem; */
  margin: 1rem 0;
}

/* .gallery {
  margin-bottom: 1rem;
} */

.gallery .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 0.625rem;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.40625rem;
  object-fit: cover;
}

.product-wrapper .gallery > .gallery-image:nth-last-child(-n + 3) {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .product-wrapper .gallery > .gallery-image:nth-last-child(2) {
    margin-bottom: -1.5625rem;
  }

  .product-wrapper .gallery > .gallery-image:last-child {
    margin-bottom: 1.40625rem;
  }
}

body.product-lightbox-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
}

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

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 8, 4, 0.92);
  backdrop-filter: blur(0.2rem);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  padding: 1rem;
  gap: 0.75rem;
  align-items: center;
}

.product-lightbox-close {
  grid-column: 1 / -1;
  justify-self: end;
  border: none;
  background: none;
  color: var(--text-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0;
  line-height: 1;
}

.product-lightbox-close .order-icon.material-symbols-outlined {
  font-size: 1.75rem;
  line-height: 1;
}

.product-lightbox-stage {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.product-lightbox-image {
  width: auto;
  max-width: min(100%, 68rem);
  max-height: calc(100vh - 7.5rem);
  object-fit: contain;
  transform-origin: 50% 50%;
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.product-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  color: var(--text-color);
  cursor: pointer;
  opacity: 0.75;
  padding: 0.5rem;
}

.product-lightbox-arrow.prev {
  left: 0.75rem;
}

.product-lightbox-arrow.next {
  right: 0.75rem;
}

.product-lightbox-arrow:focus-visible,
.product-lightbox-close:focus-visible {
  opacity: 0.5;
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .product-lightbox-image {
    cursor: zoom-in;
  }

  .product-lightbox-stage.is-zoomed .product-lightbox-image {
    cursor: zoom-out;
  }

  .product-lightbox-arrow:hover,
  .product-lightbox-close:hover {
    opacity: 0.5;
  }
}

.product-lightbox-counter {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: center;
  font-size: 0.8125rem;
  letter-spacing: 0.08rem;
}

@media (max-width: 767px) {
  .product-lightbox-dialog {
    padding: 0.75rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    row-gap: 0.75rem;
  }

  .product-lightbox-close {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .product-lightbox-stage {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 100%;
  }

  .product-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 7.5rem);
  }

  .product-lightbox-arrow.prev {
    display: inline-flex;
    left: 0.35rem;
  }

  .product-lightbox-arrow.next {
    display: inline-flex;
    right: 0.35rem;
  }

  .product-lightbox-counter {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .product-lightbox-arrow {
    width: auto;
    height: auto;
    padding: 0.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0.9;
  }

  .product-lightbox-arrow .back-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.footer-actions {
  margin: 0 clamp(1.25rem, 3.5vw, 1.875rem);
  /* padding: 1.25rem; */
  /* margin-top: 2rem; */
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* border-bottom: 1px solid var(--text-color); */
  /* padding-bottom: .875rem; */
  /* margin-bottom: 1.40625rem; */
}

.tabs button {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 100;
  letter-spacing: 0.0313rem;
  padding: 0;
}

.tabs button.active {
  font-weight: 400;
}

@media (hover: hover) {
  .tabs button:not(.active):hover,
  .tabs button:not(.active):focus-visible {
    opacity: 0.5;
    outline: none;
  }
}

@media (max-width: 340px) {
  .tabs {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  #tabsContentContainer-mob {
    width: 100%;
    flex-basis: auto;
  }

  #tabsContentContainer-mob .tabs-content.active {
    margin-top: 0.5rem;
  }
}

#tabsContentContainer-mob {
  width: 100%;
  flex-basis: 100%;
}

.tabs-content {
  /* margin-bottom: 1.25rem; */
  font-size: 0.875rem;
  letter-spacing: 0.0313rem;
  line-height: 1.25;
  display: none;
}

.tabs-content ul {
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
}

.tabs-content li + li {
  margin-top: 0.5rem;
}

.tabs-content strong {
  font-weight: 400;
}

.tabs-content .material-polyester-heading,
.tabs-content .material-polyester-copy {
  opacity: 0.5;
  font-size: 0.75rem;
  letter-spacing: 0.029rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .tabs-content .material-polyester-heading,
  .tabs-content .material-polyester-copy {
    line-height: 1.35;
  }
}

.tabs-content.active {
  display: block;
  animation: tabsContentReveal 0.2s ease;
}

#tabsContentContainer-mob .tabs-content.active {
  margin-top: 0.75rem;
}

@keyframes tabsContentReveal {
  from {
    opacity: 0;
    transform: translateY(-0.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.purchase-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.375rem;
  gap: 1.25rem;
}

@media (max-width: 1023px) {
  .product-detail-container {
    padding-bottom: calc(5.375rem + env(safe-area-inset-bottom));
  }

  .purchase-section {
    position: fixed;
    left: clamp(1.25rem, 3.5vw, 1.875rem);
    right: clamp(1.25rem, 3.5vw, 1.875rem);
    bottom: env(safe-area-inset-bottom);
    z-index: 110;
    background-color: var(--bg-color);
    border-top: 1px solid var(--text-color);
  }
}

.price {
  font-size: 2.25rem;
  color: var(--accent-red);
  letter-spacing: 0.05rem;
  /* font-weight: 300; */
}

.buy-button {
  text-align: center;
  flex-grow: 1;
  font-size: 0.9375rem;
  letter-spacing: 0.64px;
  /* font-weight: 300; */
  text-transform: uppercase;
  padding: 0.375rem 5rem;
  border: 1px solid var(--text-color);
  background: none;
  color: var(--text-color);
  cursor: pointer;
}

.buy-button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ABOUT PAGE */
.about-container {
  padding: 3.4375rem clamp(2.8125rem, 6vw, 3.75rem) 2.8125rem;
}

/* clamp(1.25rem, 3.5vw, 1.875rem) 2.5rem; */

.about-intro {
  margin-bottom: 1.75rem;
}

.about-title {
  font-size: 2.75rem;
  font-weight: 100;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--text-color);
}

.about-paragraph {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.0313rem;
  text-align: center;
}

.about-paragraph + .about-paragraph {
  margin-top: 1.3125rem;
}

.about-moodboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 1.75rem;
}

.about-moodboard-desktop,
.about-copy-desktop {
  display: none;
}

.about-moodboard-image {
  width: 100%;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  display: block;
}

.about-outro {
  margin-bottom: 1.75rem;
}

.about-paragraph-outro {
  line-height: 1.25;
}

.about-moodboard-second {
  padding-bottom: 2.8125rem;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 1.4063rem;
}

@media (max-width: 1023.98px) {
  .about-container {
    display: flex;
    flex-direction: column;
  }

  .about-intro {
    order: 1;
  }

  .about-moodboard-second {
    order: 2;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 1.75rem;
  }

  .about-outro {
    order: 3;
    margin-bottom: 1.75rem;
  }

  .about-moodboard:not(.about-moodboard-second) {
    order: 4;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 1rem;
  }

  .about-container
    > .about-moodboard:not(.about-moodboard-second)
    .about-moodboard-image:nth-child(2) {
    order: 3;
  }

  .about-container
    > .about-moodboard:not(.about-moodboard-second)
    .about-moodboard-image:nth-child(3) {
    order: 2;
  }

  .about-footer {
    order: 5;
  }
}

.about-footer {
  text-align: center;
}

.about-footer-title {
  font-size: 1rem;
  letter-spacing: 0.5728px;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 0.9375rem;
}

.about-footer-title a {
  transition: opacity 0.2s ease;
}

.about-footer-title a:hover,
.about-footer-title a:focus-visible {
  opacity: 0.5;
}

.about-socials {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
}

.about-social-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.about-social-icon {
  opacity: 0.8;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  transition: opacity 0.2s ease;
}

.about-social-placeholder:hover .about-social-icon,
.about-social-placeholder:focus-visible .about-social-icon {
  opacity: 0.5;
}

@media (min-width: 1024px) {
  /* hero */
  .cta-container {
    bottom: min(11%, 7rem);
    width: min(34vw, 32rem);
    max-width: calc(100% - 3rem);
  }

  .cta-button {
    padding: 0.9375rem;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.0625rem;
  }

  .about-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 7.1875rem 7.5rem 2.8125rem;
    padding: 7rem 7.5rem 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 0;
  }

  .about-intro {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 2rem;
  }

  .about-title {
    font-size: 4rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1.25rem;
  }

  .about-intro .about-paragraph,
  .about-outro .about-paragraph {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
  }

  .about-moodboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / 4;
    grid-row: 2;
    gap: 0;
    margin-bottom: 1.8125rem;
    padding: 0;
  }

  .about-moodboard-second {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: 4 / 7;
    grid-row: 2;
    margin-bottom: 1.8125rem;
    padding: 0;
    border-bottom: none;
  }

  .about-moodboard .about-moodboard-image {
    aspect-ratio: 1 / 1.2;
  }

  .about-outro {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-bottom: 2.25rem;
    margin-bottom: 0;
    border-bottom: 1px solid var(--text-color);
  }

  .about-footer {
    grid-column: 1 / -1;
    grid-row: 4;
    padding-top: 1.4375rem;
    padding-bottom: 3.125rem;
  }

  .about-footer-title {
    font-size: 1.4375rem;
    margin-bottom: 0.9375rem;
    letter-spacing: 0.06rem;
  }

  .about-socials {
    gap: 0.8125rem;
  }

  .about-social-icon {
    width: 1.625rem;
    height: 1.625rem;
  }
}

@media (min-width: 1024px) and (max-height: 980px) {
  .cta-container {
    bottom: min(9%, 6rem);
  }
}

@media (min-width: 1024px) and (max-height: 900px) {
  .cta-container {
    bottom: min(8%, 5.5rem);
  }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .cta-container {
    bottom: min(6%, 4.5rem);
  }

  html.is-safari .cta-container {
    bottom: min(20%, 10rem);
  }
}

/* --- DEFAULT HIDE FOR DESKTOP LAYOUT --- */
/* This rule ensures the desktop-specific grid is not visible on mobile */
.product-layout-grid {
  display: none;
}

/* MOBILE RESPONSIVENESS */
/* @media (max-width: 768px) {

  .model-title {
    font-size: 1.5rem;
  }

  .product-name {
    font-size: 2.25rem;
  }

  .product-color {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.5625rem;
  }
} */

/* DESKTOP RESPONSIVENESS - 1440px and above */
@media (min-width: 1024px) {
  .header {
    height: 5rem;
  }

  .header-container {
    padding: 0.5rem 1.625rem;
  }

  .back-button {
    width: 1.875rem;
    height: 1.875rem;
  }

  .back-icon {
    width: 2rem;
    height: 2rem;
  }

  .logo img {
    height: 1.375rem;
  }

  .menu-button {
    gap: 0.4375rem;
    width: 1.75rem;
    height: 1.5625rem;
  }

  .menu-button span {
    height: 1.3px;
    width: 1.75rem;
  }

  .menu-button.is-active span:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
  }

  .menu-button.is-active span:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
  }

  .models-container {
    padding: 0 7.5rem 5rem;
    max-width: 1440px;
    margin: 0 auto;
  }

  .model-section {
    margin-top: 3.5rem;
  }

  .model-section:first-child {
    margin-top: 5.625rem;
  }

  .model-section:nth-child(n + 2) {
    margin-top: 5.625rem;
  }

  .model-title {
    padding-bottom: 1rem;
    margin-bottom: 0;
    text-align: center;
  }

  .model-title .label {
    font-size: 0.9375rem;
  }

  .model-title .name {
    font-size: 4rem;
  }

  .model-intro {
    margin: 1.375rem auto 1.8rem;
    max-width: 50rem;
    font-size: 0.9375rem;
    letter-spacing: 0.0335rem;
    text-align: center;
  }

  .products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 1.4063rem;
    max-width: 77.5rem;
    margin: 0 auto;
    padding-top: 0;
  }

  .product-card {
    width: calc(25% - 0.7031rem);
  }

  .product-card .image-wrapper {
    margin-bottom: 0.5rem;
  }

  .product-info {
    column-gap: 1rem;
  }

  .product-info .color-label {
    font-size: 0.9375rem;
  }

  .product-info .color-name {
    font-size: 1.4375rem;
  }

  .product-info .price {
    font-size: 1.4375rem;
  }
}

/* ORDER PAGE */
.order-container {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 3.5625rem clamp(2rem, 3.5vw, 1.5625rem) 4rem;
}

.order-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.order-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 100;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--text-color);
  letter-spacing: 0.02em;
  margin-bottom: 0.9375rem;
}

.order-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.0313rem;
  line-height: 1.25;
  opacity: 0.85;
}

.order-items {
  display: flex;
  flex-direction: column;
}

.order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content 1rem;
  gap: 0.625rem;
  align-items: end;
}

.order-field {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.order-field-data {
  margin-bottom: 1.375rem;
}

.order-field label:not(.order-consent-label) {
  font-size: 0.875rem;
  letter-spacing: 0.0313rem;
  opacity: 0.5;
}

.order-field input:not([type="checkbox"]),
.order-field select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.0469rem solid var(--text-color);
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-clip: padding-box;
  /* padding: 0 0 .45rem; */
  font-size: 1.125rem;
  /* font-size: clamp(1.25rem, 4.8vw, 2.0625rem); */
  letter-spacing: 0.0313rem;
  padding: 0.2rem 0 0.125rem;
  color: var(--text-color);
  transition:
    border-bottom-color 0.18s ease,
    border-bottom-width 0.18s ease;
}

.order-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.order-consent-field {
  margin: 0.5rem 0 0.75rem;
}

.order-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.0313rem;
}

.order-consent-label > span {
  opacity: 0.6;
  transition: opacity 0.18s ease;
}

.order-consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  box-sizing: border-box;
  margin-top: 0.0625rem;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border-radius: 0 !important;
  border: 1px solid var(--text-color);
  background-color: rgba(50, 27, 11, 0.55);
  background-clip: padding-box;
  opacity: 0.6;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.order-consent-label input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.25rem;
  height: 0.5rem;
  border: solid var(--bg-color);
  border-width: 0 0.125rem 0.125rem 0;
  transform: translate(-50%, -58%) rotate(45deg);
  transform-origin: center;
  opacity: 0;
}

.order-consent-label input[type="checkbox"]:checked {
  background-color: var(--text-color);
  border-color: var(--text-color);
  opacity: 1;
}

.order-consent-label input[type="checkbox"]:checked::after {
  opacity: 1;
}

.order-consent-label input[type="checkbox"]:checked + span {
  opacity: 1;
}

.order-consent-label input[type="checkbox"]:focus-visible {
  outline: 1px solid var(--text-color);
  outline-offset: 2px;
}

.order-consent-label a {
  color: var(--text-color);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.order-consent-field.has-error .order-consent-label {
  color: var(--accent-red);
}

.order-custom-trigger {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.0469rem solid var(--text-color);
  color: var(--text-color);
  /* font-size: clamp(1.25rem, 4.8vw, 2.0625rem); */
  font-size: 1.125rem;
  letter-spacing: 0.0313rem;
  text-align: left;
  /* padding: .625rem 1.875rem .3125rem 0; */
  padding: 0.2rem 1.875rem 0.125rem 0;
  cursor: pointer;
  transition:
    border-bottom-color 0.18s ease,
    border-bottom-width 0.18s ease;
}

.order-custom-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  background: var(--bg-color);
  border: 1px solid var(--text-color);
  border-top: none;
  z-index: 40;
}

.order-custom-option {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.0313rem;
  text-align: left;
  padding: 0.625rem 0.75rem;
  cursor: pointer;
}

.order-custom-option + .order-custom-option {
  border-top: 1px solid var(--text-color);
}

.order-custom-option:hover,
.order-custom-option:focus-visible,
.order-custom-option.is-selected {
  opacity: 0.7;
  font-weight: 600;
  background-color: var(--text-color);
  color: var(--bg-color);
  outline: none;
}

.order-field-select.is-open .order-custom-menu {
  display: block;
}

.order-field-select.is-open .order-custom-trigger,
.order-custom-trigger:focus-visible {
  border-bottom-width: 0.0938rem;
  border-bottom-color: var(--text-color);
  outline: none;
}

/* .order-field select {
  padding-right: 1.5rem;
} */

.order-field-select .order-select-icon.material-symbols-outlined {
  position: absolute;
  right: 0;
  bottom: 0.075rem;
  /* font-size: 1.25rem; */
  font-variation-settings:
    "FILL" 0,
    "wght" 200,
    "GRAD" 0,
    "opsz" 20;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}

/* Removes Safari/iOS extra UI chrome inside form controls */
.order-field input::-webkit-contacts-auto-fill-button,
.order-field input::-webkit-credentials-auto-fill-button,
.order-field input::-webkit-clear-button {
  display: none;
  pointer-events: none;
  visibility: hidden;
}

.order-field input:-webkit-autofill,
.order-field input:-webkit-autofill:hover,
.order-field input:-webkit-autofill:focus,
.order-field input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text-color);
  caret-color: var(--text-color);
  box-shadow: 0 0 0 1000px var(--bg-color) inset;
  -webkit-box-shadow: 0 0 0 1000px var(--bg-color) inset;
  transition: background-color 9999s ease-out 0s;
}

.order-field input:not([type="checkbox"]):focus,
.order-field select:focus {
  outline: none;
  border-bottom-width: 0.0938rem;
  border-bottom-color: var(--text-color);
}

.order-field.has-error label {
  color: var(--accent-red);
  opacity: 1;
}

.order-field.has-error input:not([type="checkbox"]),
.order-field.has-error select,
.order-field.has-error .order-custom-trigger {
  border-bottom-color: var(--accent-red);
}

.order-field.has-error .order-select-icon.material-symbols-outlined {
  color: var(--accent-red);
}

.order-field-select:focus-within .order-select-icon.material-symbols-outlined,
.order-field-select.is-open .order-select-icon.material-symbols-outlined {
  transform: rotate(180deg);
}

.order-quantity-field select {
  text-align: left;
}

.order-quantity-field {
  width: fit-content;
  min-width: 2.75rem;
}

.order-quantity-field .order-custom-trigger {
  width: auto;
  min-width: 2.75rem;
  padding-right: 1.1rem;
}

.order-quantity-field .order-custom-value {
  display: inline-block;
  min-width: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.order-quantity-field .order-select-icon.material-symbols-outlined {
  right: -0.05rem;
}

.remove-order-row,
.add-order-row {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-color);
  cursor: pointer;
}

.remove-order-row {
  min-width: 1.125rem;
  margin-bottom: 1.2rem;
}

.remove-order-row.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.add-order-row {
  min-width: 1.125rem;
  margin: -17px -0.75rem 0;
}

.order-icon.material-symbols-outlined {
  font-size: 2.5rem;
  font-variation-settings:
    "FILL" 0,
    "wght" 100,
    "GRAD" -25,
    "opsz" 20;
  pointer-events: none;
}

.remove-order-row .order-icon.material-symbols-outlined {
  font-size: 1.8rem;
}

.order-payment-info {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.0313rem;
  text-align: center;
  opacity: 0.9;
  margin: 2.8rem 0 1rem;
}

.order-form-error {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.02rem;
  color: var(--accent-red);
  text-align: left;
  margin: -0.2 0 0.5rem;
}

.order-submit-button {
  width: 100%;
  border: 1px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
  font-size: 1.375rem;
  letter-spacing: 0.055rem;
  text-transform: uppercase;
  padding: 0.625rem 1rem;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}

.order-submit-button:not(:disabled):hover {
  opacity: 0.6;
}

.order-submit-button:not(:disabled):active {
  opacity: 1;
  background-color: var(--text-color);
  color: var(--bg-color);
}

.order-submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.order-submit-error {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.02rem;
  color: var(--accent-red);
  text-align: center;
  margin: 0.875rem 0 0;
}

.order-disclaimer {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.0313rem;
  text-align: center;
  opacity: 0.8;
  margin-top: 0.9375rem;
}

/* ORDER SUCCESS */

.order-container.is-success {
  max-width: 100%;
  /* min-height: calc(100vh - 3.75rem); */
  padding-top: 2.2rem;
}

.order-success-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* max-width: 25rem; */
  margin: 0 auto;
  text-align: center;
}

.order-success-check {
  display: block;
  font-size: 8rem;
  font-weight: 100;
  margin-bottom: 0;
}

.order-success-thanks {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}

.order-success-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03rem;
  font-weight: 100;
  margin-bottom: 1.5rem;
}

.order-success-image {
  width: 100%;
  /* max-width: 13.5rem; */
  max-width: 10rem;
  height: auto;
  object-fit: contain;
}

.test {
  background-color: green;
  color: green;
}

@media (min-width: 1024px) {
  .order-title {
    font-size: 4rem;
    padding-bottom: -1rem;
    letter-spacing: 0.02em;
  }

  .order-item-row {
    grid-template-columns: minmax(0, 1fr) max-content 1.5rem;
    gap: 0.75rem;
  }

  .order-subtitle {
    font-size: 0.9375rem;
    letter-spacing: 0.0335rem;
    line-height: 1.35;
  }

  .order-field input:not([type="checkbox"]),
  .order-field select {
    font-size: 1.25rem;
    border-bottom-color: rgba(251, 223, 203, 0.55);
  }

  .order-field-select .order-select-icon.material-symbols-outlined {
    bottom: 0.2rem;
    right: -0.08rem;
  }

  .order-custom-trigger {
    /* font-size: clamp(1.25rem, 4.8vw, 2.0625rem); */
    font-size: 1.25rem;
    padding: 0.2rem 1.875rem 0.125rem 0;
    border-bottom-color: rgba(251, 223, 203, 0.55);
  }

  .remove-order-row .order-icon.material-symbols-outlined {
    font-size: 2rem;
  }

  .add-order-row {
    margin: -1rem -0.9rem 0;
  }

  .order-icon.material-symbols-outlined {
    font-size: 2.8rem;
  }

  .order-submit-button {
    font-size: 1.5rem;
    letter-spacing: 0.08rem;
    padding: 0.4rem;
  }

  .order-disclaimer {
    max-width: 31rem;
    margin: 0.9375rem auto 0;
  }

  .order-container.is-success {
    max-width: 58rem;
    padding-top: 2rem;
  }

  .order-success-panel {
    max-width: 352px;
    /* padding-bottom: 2.5rem; */
  }

  .order-success-check {
    font-size: 6rem;
    margin-bottom: 0.3rem;
  }

  .order-success-thanks {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .order-success-title {
    font-size: 2.5rem;
    line-height: 0.92;
    margin-bottom: 2.5rem;
  }

  .order-success-image {
    max-width: 13rem;
  }
}

/* .product-detail-container {
    padding-top: 3rem;
    max-width: 1440px;
    margin: 0 auto;
  }

  .product-wrapper {
    padding: 0 5rem;
    margin-bottom: 3rem;
  }

  .main-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }

  .product-title {
    grid-column: 2;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .product-title .name {
    font-size: 3.5rem;
  }

  .product-content {
    display: contents;
  }

  .image-slider {
    grid-column: 1;
    grid-row: 1 / 10;
  }

  .main-image {
    aspect-ratio: 3 / 4;
    margin-bottom: 0;
    object-fit: cover;
  }

  .color-title {
    grid-column: 2;
    padding-top: 2rem;
    padding-bottom: 1.75rem;
    margin-top: 2rem;
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
  }

  .color-title .name {
    font-size: 2rem;
  }

  .description {
    grid-column: 2;
    margin: 2rem 0;
    font-size: 0.8125rem;
    line-height: 1.7;
  }

  .footer-actions {
    padding: 0 5rem;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .tabs {
    grid-column: 2;
  }

  .purchase-section {
    grid-column: 2;
    margin: 2rem 0 1.5rem;
  }

  #tabsContentContainer {
    grid-column: 2;
  }

  .tabs-content {
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    line-height: 1.8;
  } */

/* .home-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 3.75rem);
    background-color: var(--bg-color);
  }

  .cta-container {
    width: 70%;
    max-width: 600px;
  }

  .cta-button {
    padding: 1.25rem;
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .footer-actions {
    padding: 0 5rem;
    max-width: 1440px;
    margin: 0 auto;
  }

  .tabs {
    padding-bottom: 2rem;
    gap: 2rem;
  }

  .purchase-section {
    height: 5rem;
  }

  .price {
    font-size: 2rem;
  }

  .buy-button {
    font-size: 1rem;
    padding: 1rem 6rem;
  }
} */

/* --- Accessibility Fix for inert --- */
[inert] {
  display: none !important; /* Fallback for browsers that don't support inert */
}
