/* Storefront — fashion retail (not VTU / fintech) */
@import url("https://fonts.bunny.net/css?family=syne:600,700,800&display=swap");

:root {
  --oa-ink: #0b0b0b;
  --oa-paper: #fafaf8;
  --oa-brass: var(--AppColor, #C07802);
  --oa-umber: var(--d_Color, #1a1214);
  --oa-on-umber: #faf7f2;
  --oa-stone: #e4e0d8;
  --oa-mist: #eceae4;
  --oa-mute: #6b6b6b;
  --oa-surface: #ffffff;
  --oa-radius: 0.65rem;
  --oa-radius-sm: 0.4rem;
  --oa-display: "Syne", "Plus Jakarta Sans", sans-serif;
  --oa-body: "Plus Jakarta Sans", sans-serif;
  --oa-hero-img: url("/assets/images/hero-fashion.jpg");
}

/* Dark theme: flip ink/paper so titles, Account, prices stay readable */
html.dark-mode,
html[data-bs-theme="dark"],
body.dark-mode {
  --oa-ink: #f4f1eb;
  --oa-paper: #0e0e0e;
  --oa-stone: #2a2a2a;
  --oa-mist: #2f2f2f;
  --oa-mute: #a39e96;
  --oa-surface: #1a1a1a;
  --oa-umber: #f4f1eb;
  --oa-on-umber: #0b0b0b;
}

.storefront-body {
  background: var(--oa-paper);
  color: var(--oa-ink);
  font-family: var(--oa-body);
}

/* —— Buttons (storefront) —— */
.oa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--oa-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--oa-radius-sm);
  background: transparent;
  color: var(--oa-ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.oa-btn.btn-sm { min-height: 2.35rem; padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.oa-btn:not(.oa-btn--solid):not(.oa-btn--light):not(.oa-btn--ghost) {
  border-color: var(--oa-mist);
}
.oa-btn:not(.oa-btn--solid):not(.oa-btn--light):not(.oa-btn--ghost):hover {
  border-color: var(--oa-ink);
}
.oa-btn--solid {
  background: var(--oa-ink);
  color: #faf7f2;
  border-color: var(--oa-ink);
}
.oa-btn--solid:hover {
  background: var(--oa-brass);
  border-color: var(--oa-brass);
  color: #fff;
  transform: translateY(-1px);
}
html.dark-mode .oa-btn--solid,
html[data-bs-theme="dark"] .oa-btn--solid,
body.dark-mode .oa-btn--solid {
  background: #f4f1eb;
  color: #0b0b0b;
  border-color: #f4f1eb;
}
html.dark-mode .oa-btn--solid:hover,
html[data-bs-theme="dark"] .oa-btn--solid:hover,
body.dark-mode .oa-btn--solid:hover {
  background: var(--oa-brass);
  border-color: var(--oa-brass);
  color: #fff;
}
/* Light fill always keeps dark ink (do not use --oa-ink; it flips in dark theme). */
a.oa-btn.oa-btn--light,
button.oa-btn.oa-btn--light,
.oa-btn.oa-btn--light {
  background: #faf7f2;
  color: #0b0b0b;
  border-color: #faf7f2;
}
a.oa-btn.oa-btn--light:hover,
button.oa-btn.oa-btn--light:hover,
.oa-btn.oa-btn--light:hover {
  background: #ffffff;
  color: #0b0b0b;
}
/* Ghost = for dark bands (hero/close/footer). Keep pale label. */
a.oa-btn.oa-btn--ghost,
button.oa-btn.oa-btn--ghost,
.oa-btn.oa-btn--ghost {
  background: transparent;
  color: #faf7f2;
  border-color: rgba(250, 247, 242, 0.45);
}
a.oa-btn.oa-btn--ghost:hover,
button.oa-btn.oa-btn--ghost:hover,
.oa-btn.oa-btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}
/* Close / hero CTA safety: never inherit band text color onto light buttons */
.oa-close .oa-btn--light,
.oa-hero .oa-btn--light,
.master-footer .oa-btn--light {
  color: #0b0b0b;
}
.oa-close .oa-btn--ghost,
.oa-hero .oa-btn--ghost {
  color: #faf7f2;
}
.oa-text-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--oa-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--oa-brass);
  padding-bottom: 0.1rem;
  white-space: nowrap;
}
.oa-text-link:hover { color: var(--oa-brass); }

/* —— Hero —— */
.oa-hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #faf7f2;
}
.oa-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a1214;
  background-image:
    linear-gradient(105deg, rgba(11, 11, 11, 0.82) 0%, rgba(11, 11, 11, 0.35) 48%, rgba(11, 11, 11, 0.12) 100%),
    var(--oa-hero-img),
    linear-gradient(160deg, #1a1214 0%, #3d1a22 50%, #7a1f2b 100%);
  background-position: center, 78% 16%, center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  animation: oaHeroDrift 22s ease-in-out infinite alternate;
}
.oa-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 78% 42%, rgba(122, 31, 43, 0.28), transparent 60%),
    linear-gradient(to top, rgba(11, 11, 11, 0.35), transparent 40%);
  pointer-events: none;
}
.oa-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
@keyframes oaHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-1.2%, 0.4%, 0); }
}
.oa-hero__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.75rem;
  max-width: 38rem;
}
.oa-hero__brand {
  font-family: var(--oa-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  margin-bottom: 1.15rem;
  animation: oaFadeUp 0.75s ease both;
}
.oa-hero__title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
  animation: oaFadeUp 0.85s 0.06s ease both;
}
.oa-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 26rem;
  opacity: 0.9;
  margin-bottom: 1.85rem;
  animation: oaFadeUp 0.85s 0.14s ease both;
}
.oa-hero__cta {
  animation: oaFadeUp 0.85s 0.22s ease both;
}
@keyframes oaFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.oa-section { padding: 4rem 0; }
.oa-section--tight { padding: 2rem 0 0; }
.oa-section--paper { background: rgba(42, 33, 26, 0.035); }
.oa-section-head { margin-bottom: 2rem; max-width: 34rem; }
.oa-section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}
.oa-section-title {
  font-family: var(--oa-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  color: var(--oa-ink);
  line-height: 1.15;
}
.oa-section-sub {
  color: var(--oa-mute);
  margin-top: 0.4rem;
  line-height: 1.65;
  font-size: 0.98rem;
}
.oa-empty-note {
  color: var(--oa-mute);
  margin: 0;
  font-size: 0.95rem;
}

/* —— Collection mosaic —— */
.oa-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}
.oa-mosaic__tile {
  position: relative;
  grid-column: span 6;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: #faf7f2;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s ease;
}
.oa-mosaic__tile--feature {
  grid-column: span 12;
  min-height: min(42vw, 320px);
}
@media (min-width: 768px) {
  .oa-mosaic__tile { grid-column: span 4; min-height: 240px; }
  .oa-mosaic__tile--feature {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 100%;
  }
}
.oa-mosaic__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--oa-tile-img, none) center / cover no-repeat,
    linear-gradient(145deg, #1c1917, #6b4f35);
  transition: transform 0.55s ease;
}
.oa-mosaic__tile--a::before { background-image: var(--oa-tile-img, none), linear-gradient(145deg, #1c1917, #7c5a3b); }
.oa-mosaic__tile--b::before { background-image: var(--oa-tile-img, none), linear-gradient(145deg, #0f172a, #3f4a5a); }
.oa-mosaic__tile--c::before { background-image: var(--oa-tile-img, none), linear-gradient(145deg, #292524, #8a8078); }
.oa-mosaic__tile--d::before { background-image: var(--oa-tile-img, none), linear-gradient(145deg, #1e293b, #57534e); }
.oa-mosaic__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 55%);
}
.oa-mosaic__tile:hover { color: #fff; transform: translateY(-2px); }
.oa-mosaic__tile:hover::before { transform: scale(1.04); }
.oa-mosaic__label {
  font-family: var(--oa-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}
.oa-mosaic__go {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.35rem;
}

/* —— Products —— */
.oa-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 0.85rem;
}
@media (min-width: 992px) {
  .oa-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem 1.25rem; }
}
.oa-product {
  display: block;
  text-decoration: none;
  color: inherit;
}
.oa-product:hover { color: inherit; }
.oa-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.oa-product-card .oa-product { flex: 1 1 auto; }
.oa-product-card__add {
  margin-top: 0.55rem;
  align-self: flex-start;
  appearance: none;
  border: 1px solid rgba(28, 25, 23, 0.18);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.oa-product-card__add:hover,
.oa-product-card__add:focus-visible {
  background: var(--oa-ink, #1c1917);
  border-color: var(--oa-ink, #1c1917);
  color: #fff;
  outline: none;
}
.oa-product-card__add[data-busy="1"] {
  opacity: 0.55;
  pointer-events: none;
}
.oa-product-card__add--link {
  display: inline-block;
}
.oa-product-card__foot {
  margin-top: 0.55rem;
}
.oa-product__media {
  aspect-ratio: 4 / 5;
  margin-bottom: 0.9rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s ease;
}
.oa-product__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.oa-product:hover .oa-product__media { transform: scale(1.015); }
.oa-product:hover .oa-product__media-shade { opacity: 1; }
.oa-product__media--t1 { background-image: linear-gradient(160deg, #2a2118, #8b7355); }
.oa-product__media--t2 { background-image: linear-gradient(160deg, #1e293b, #64748b); }
.oa-product__media--t3 { background-image: linear-gradient(160deg, #292524, #78716c); }
.oa-product__media--t4 { background-image: linear-gradient(160deg, #1c1917, #57534e); }
.oa-product__cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin-bottom: 0.2rem;
}
.oa-product__opts {
  display: block;
  font-size: 0.72rem;
  color: var(--oa-mute);
  margin-top: 0.25rem;
}
.oa-product__name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--oa-ink);
  line-height: 1.35;
  transition: color 0.2s ease;
}
.oa-product:hover .oa-product__name { color: var(--oa-brass); }
.oa-product__price {
  display: block;
  font-size: 0.88rem;
  color: var(--oa-mute);
  margin-top: 0.2rem;
}
.oa-product__compare {
  margin-left: 0.4rem;
  text-decoration: line-through;
  opacity: 0.65;
  font-size: 0.8em;
}
.oa-product__rating {
  display: block;
  font-size: 0.75rem;
  color: var(--oa-mute);
  margin-top: 0.2rem;
}
.oa-product.is-oos { opacity: 0.72; }
.oa-product__badges {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1;
}
.oa-product__media { position: relative; }
.oa-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.4rem;
  background: #fff;
  color: var(--oa-ink);
}
.oa-badge--muted { background: rgba(255,255,255,0.85); }
.oa-badge--warn { background: #1c1917; color: #faf7f2; }

/* row helper for shop/pdp related */
.oa-product-row .oa-product-card { height: 100%; }
.oa-product-row .oa-product { height: auto; }

/* —— Promo —— */
.oa-promo-carousel {
  position: relative;
  border-radius: var(--oa-radius);
  overflow: hidden;
}
.oa-promo-carousel .carousel-inner {
  overflow: hidden;
  border-radius: var(--oa-radius);
}
.oa-promo-slide {
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 2.5rem 4.5rem;
  color: #fff;
  position: relative;
}
.oa-promo-slide--image {
  background-color: #1a1510;
  background-image:
    linear-gradient(105deg, rgba(11, 11, 11, 0.78) 0%, rgba(11, 11, 11, 0.35) 55%, rgba(11, 11, 11, 0.2) 100%),
    var(--oa-promo-img);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}
.oa-promo-slide__copy { max-width: 32rem; position: relative; z-index: 1; }
.oa-promo-title {
  font-family: var(--oa-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.oa-promo-desc {
  opacity: 0.9;
  margin-bottom: 1.1rem;
  line-height: 1.55;
  font-size: 0.95rem;
}
.oa-promo-carousel .carousel-control-prev,
.oa-promo-carousel .carousel-control-next {
  width: 2.75rem;
  height: 2.75rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.oa-promo-carousel .carousel-control-prev { left: 0.85rem; }
.oa-promo-carousel .carousel-control-next { right: 0.85rem; }
.oa-promo-carousel .carousel-control-prev:hover,
.oa-promo-carousel .carousel-control-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.oa-promo-carousel .carousel-control-prev-icon,
.oa-promo-carousel .carousel-control-next-icon {
  width: 1.05rem;
  height: 1.05rem;
  filter: invert(1) grayscale(1) brightness(0.15);
}
.oa-promo-carousel .carousel-indicators {
  margin-bottom: 0.85rem;
  gap: 0.35rem;
}
.oa-promo-carousel .carousel-indicators [data-bs-target] {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}
.oa-promo-carousel .carousel-indicators .active {
  width: 1.35rem;
  background: #fff;
}
@media (max-width: 767.98px) {
  .oa-promo-slide { padding: 1.75rem 1.25rem 3.25rem; min-height: 260px; }
  .oa-promo-carousel .carousel-control-prev,
  .oa-promo-carousel .carousel-control-next {
    width: 2.35rem;
    height: 2.35rem;
  }
  .oa-promo-carousel .carousel-control-prev { left: 0.5rem; }
  .oa-promo-carousel .carousel-control-next { right: 0.5rem; }
}

/* —— Editorial split (below fold) —— */
.oa-editorial {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .oa-editorial { grid-template-columns: 1.2fr 1fr; gap: 0.85rem; }
}
.oa-editorial__tile {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #fafaf8;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}
.oa-editorial__tile:hover { color: #fff; }
.oa-editorial__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--oa-ed-img, none) center / cover no-repeat,
    linear-gradient(145deg, #1a1214, #4a2430);
  transition: transform 0.55s ease;
}
.oa-editorial__tile:hover::before { transform: scale(1.04); }
.oa-editorial__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}
.oa-editorial__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.45rem;
}
.oa-editorial__title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.oa-editorial__cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* —— Trust strip —— */
.oa-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--oa-stone);
  padding-top: 1.75rem;
}
@media (min-width: 768px) {
  .oa-trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.oa-trust li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.oa-trust strong {
  font-family: var(--oa-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.oa-trust span {
  color: var(--oa-mute);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* —— Close band —— */
.oa-close {
  padding: 4.5rem 0;
  background:
    linear-gradient(125deg, rgba(11,11,11,0.88), rgba(11,11,11,0.55)),
    var(--oa-close-img, url("/assets/images/editorial-look.jpg")) center / cover no-repeat,
    #0b0b0b;
  color: #fafaf8;
}
.oa-close__inner { max-width: 36rem; }
.oa-close__brand {
  font-family: var(--oa-display);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}
.oa-close__title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}
.oa-close__sub {
  opacity: 0.88;
  margin-bottom: 1.75rem;
  line-height: 1.65;
  max-width: 28rem;
}
.oa-close__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* —— Page shells (cart / track / about) —— */
.oa-page-hero {
  padding: 3rem 0 1rem;
}
.oa-page-hero__brand {
  font-family: var(--oa-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--oa-brass);
  margin-bottom: 0.75rem;
}
.oa-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--oa-mist);
  padding: 1.75rem 1.5rem;
}
@media (min-width: 768px) {
  .oa-panel { padding: 2.25rem; }
}
.oa-panel--center { text-align: center; }
.oa-panel__icon {
  font-size: 2rem;
  color: var(--oa-brass);
  margin-bottom: 0.85rem;
  display: block;
}

/* —— Skeletons + enter motion —— */
@keyframes oa-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@keyframes oa-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.oa-skel {
  display: block;
  border-radius: var(--oa-radius-sm);
  background: linear-gradient(90deg, rgba(28,25,23,0.06) 25%, rgba(28,25,23,0.12) 37%, rgba(28,25,23,0.06) 63%);
  background-size: 400% 100%;
  animation: oa-shimmer 1.15s ease-in-out infinite;
}
.oa-skel--media { aspect-ratio: 4 / 5; width: 100%; margin-bottom: 0.75rem; }
.oa-skel--line { height: 0.7rem; margin-bottom: 0.45rem; }
.oa-skel--w40 { width: 40%; }
.oa-skel--w50 { width: 50%; }
.oa-skel--w55 { width: 55%; }
.oa-skel--w70 { width: 70%; }
.oa-skel--w80 { width: 80%; }
.oa-skel-card { display: block; }
.oa-fade-in {
  animation: oa-fade-up 0.45s ease both;
  animation-delay: var(--oa-delay, 0ms);
}

/* —— Header search + typeahead —— */
.oa-header-search {
  position: relative;
  flex: 1 1 220px;
  max-width: 300px;
  margin: 0 0.5rem;
}
.oa-header-search__form {
  position: relative;
  display: flex;
  align-items: center;
}
.oa-header-search__form .bi-search {
  position: absolute;
  left: 0.75rem;
  color: var(--oa-mute);
  font-size: 0.9rem;
  pointer-events: none;
}
.oa-header-search__form .form-control {
  padding-left: 2.15rem;
  border-radius: var(--oa-radius-sm);
  border-color: var(--oa-mist);
  background: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  min-height: 2.35rem;
}
.oa-header-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  min-width: 280px;
  background: var(--oa-surface);
  border: 1px solid var(--oa-mist);
  box-shadow: 0 12px 28px rgba(20, 17, 15, 0.12);
  max-height: 360px;
  overflow: auto;
}
.oa-header-suggest__item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  color: var(--oa-ink);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}
.oa-header-suggest__more,
.oa-header-suggest__empty,
.oa-header-suggest__loading {
  display: block;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  color: var(--oa-ink);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}
.oa-header-suggest__item:hover,
.oa-header-suggest__item.is-active { background: rgba(166, 124, 74, 0.08); }
.oa-header-suggest__thumb {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  background-size: cover;
  background-position: center;
  background-color: var(--oa-mist);
}
.oa-header-suggest__body { min-width: 0; flex: 1; }
.oa-header-suggest__name {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oa-header-suggest__meta { display: block; font-size: 0.75rem; color: var(--oa-mute); margin-top: 0.1rem; }
.oa-header-suggest__more { font-weight: 700; font-size: 0.82rem; color: var(--oa-brass); }
.oa-header-suggest__empty { font-size: 0.82rem; color: var(--oa-mute); }

.oa-drawer-search {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0.25rem 0 0.75rem;
}
.oa-drawer-search__row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.oa-drawer-search .bi-search {
  position: absolute;
  left: 0.75rem;
  color: var(--oa-mute);
  pointer-events: none;
  z-index: 1;
}
.oa-drawer-search .form-control {
  padding-left: 2.15rem;
  border-radius: var(--oa-radius-sm);
  width: 100%;
}
.oa-drawer-suggest {
  margin-top: 0.35rem;
  border: 1px solid var(--oa-mist);
  background: var(--oa-surface);
  max-height: 240px;
  overflow: auto;
}
.oa-drawer-suggest .oa-header-suggest__item,
.oa-drawer-suggest .oa-header-suggest__more,
.oa-drawer-suggest .oa-header-suggest__empty {
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

.oa-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--oa-ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.oa-header-icon:hover { color: var(--oa-brass); border-color: var(--oa-mist); }
.oa-header-account {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--oa-ink);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
}
.oa-header-account:hover { color: var(--oa-brass); }

/* —— Shop layout —— */
.oa-shop {
  padding-top: 0;
}
.oa-shop__intro {
  position: relative;
  padding: 2.6rem 0 2rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--oa-stone);
  overflow: hidden;
}
.oa-shop__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 100% -10%, color-mix(in srgb, var(--oa-brass) 14%, transparent), transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--oa-ink) 3.5%, transparent), transparent 72%);
  pointer-events: none;
}
.oa-shop__intro .container { position: relative; z-index: 1; }
.oa-shop__kicker {
  font-family: var(--oa-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oa-brass);
  margin: 0 0 0.65rem;
  animation: oa-fade-up 0.55s ease both;
}
.oa-shop__title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--oa-ink);
  margin: 0 0 0.55rem;
  animation: oa-fade-up 0.65s ease both;
  animation-delay: 0.05s;
}
.oa-shop__lead {
  max-width: 28rem;
  margin: 0;
  color: var(--oa-mute);
  font-size: 0.98rem;
  line-height: 1.55;
  animation: oa-fade-up 0.7s ease both;
  animation-delay: 0.1s;
}
.oa-shop-bar {
  position: sticky;
  top: 4.85rem;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.75rem 0;
  background: color-mix(in srgb, var(--oa-paper) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 991.98px) {
  .oa-shop-bar { top: 4.35rem; }
}
.oa-shop-bar.is-stuck {
  border-bottom-color: var(--oa-stone);
  box-shadow: 0 8px 24px rgba(11, 11, 11, 0.04);
}
.oa-shop-search {
  position: relative;
  flex: 1 1 240px;
  display: flex;
  align-items: center;
}
.oa-shop-search .bi-search {
  position: absolute;
  left: 0.95rem;
  color: var(--oa-mute);
  pointer-events: none;
  z-index: 1;
}
.oa-shop-search .form-control {
  padding-left: 2.45rem;
  padding-right: 2.35rem;
  border-radius: var(--oa-radius-sm);
  min-height: 2.85rem;
  border-color: var(--oa-stone);
  background: var(--oa-surface);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.oa-shop-search .form-control:focus {
  border-color: color-mix(in srgb, var(--oa-brass) 55%, var(--oa-stone));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oa-brass) 16%, transparent);
}
.oa-shop-clear {
  position: absolute;
  right: 0.45rem;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--oa-mute);
  padding: 0.25rem 0.45rem;
  z-index: 2;
}
.oa-shop-clear:hover { color: var(--oa-ink); }
.oa-shop-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  background: var(--oa-surface);
  border: 1px solid var(--oa-mist);
  box-shadow: 0 18px 40px rgba(20, 17, 15, 0.14);
  max-height: 380px;
  overflow: auto;
  border-radius: var(--oa-radius);
}
.oa-shop-suggest__item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  color: var(--oa-ink);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
  transition: background 0.15s ease;
}
.oa-shop-suggest__item:hover,
.oa-shop-suggest__item.is-active { background: color-mix(in srgb, var(--oa-brass) 9%, transparent); }
.oa-shop-suggest__thumb {
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  background-size: cover;
  background-position: center;
  background-color: var(--oa-mist);
  border-radius: var(--oa-radius-sm);
}
.oa-shop-suggest__body { min-width: 0; flex: 1; }
.oa-shop-suggest__name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oa-shop-suggest__meta { display: block; font-size: 0.75rem; color: var(--oa-mute); margin-top: 0.1rem; }
.oa-shop-suggest__more,
.oa-shop-suggest__empty,
.oa-shop-suggest__loading {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--oa-brass);
}
.oa-shop-suggest__empty { font-weight: 500; color: var(--oa-mute); }
.oa-shop-suggest__loading { padding: 0.9rem; }
.oa-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1.1rem;
  min-height: 0;
}
.oa-active-filters__label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--oa-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.2rem;
}
.oa-active-chip {
  border: 1px solid var(--oa-stone);
  background: var(--oa-surface);
  color: var(--oa-ink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.oa-active-chip:hover { border-color: var(--oa-brass); background: color-mix(in srgb, var(--oa-brass) 6%, var(--oa-surface)); }
.oa-active-clear {
  border: 0;
  background: transparent;
  color: var(--oa-brass);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.35rem;
}
.oa-shop-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.oa-shop-sort-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin: 0;
}
@media (max-width: 575.98px) {
  .oa-shop-sort-label { display: none; }
}
.oa-shop-controls .form-select {
  border-radius: var(--oa-radius-sm);
  min-width: 11.5rem;
  min-height: 2.85rem;
  border-color: var(--oa-stone);
  background: var(--oa-surface);
}
.oa-shop-filter-toggle {
  gap: 0.4rem;
}
.oa-shop-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--oa-ink);
  color: #faf7f2;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}
html.dark-mode .oa-shop-filter-count,
html[data-bs-theme="dark"] .oa-shop-filter-count,
body.dark-mode .oa-shop-filter-count {
  background: #f4f1eb;
  color: #0b0b0b;
}
.oa-shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.oa-shop-filters__inner {
  position: sticky;
  top: calc(4.85rem + 4.35rem);
  padding-right: 0.25rem;
}
@media (max-width: 991.98px) {
  .oa-shop-filters__inner {
    position: static;
    top: auto;
  }
}
.oa-shop-filters__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--oa-stone);
}
.oa-shop-filters__title {
  font-family: var(--oa-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--oa-ink);
}
.oa-shop-filters__close {
  border: 0;
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--oa-mute);
  padding: 0.15rem 0.35rem;
}
.oa-shop-filters__close:hover { color: var(--oa-ink); }
.oa-shop-filters__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--oa-stone);
}
.oa-shop-filter-scrim {
  display: none;
}
@media (max-width: 991.98px) {
  .oa-shop-layout { grid-template-columns: 1fr; gap: 1rem; }
  .oa-shop-filter-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(11, 11, 11, 0.42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .oa-shop-filter-scrim:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }
  .oa-shop-filters {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    width: min(22rem, 92vw);
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--oa-paper);
    box-shadow: -18px 0 40px rgba(11, 11, 11, 0.18);
    transform: translateX(104%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: auto;
    pointer-events: none;
  }
  .oa-shop-filters.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .oa-shop-filters__inner {
    position: static;
    padding: 1.15rem 1.15rem 1.5rem;
  }
  html.oa-shop-filters-open,
  html.oa-shop-filters-open body {
    overflow: hidden;
  }
}
.oa-filter-block { margin-bottom: 1.45rem; }
.oa-filter-block--checks { display: flex; flex-direction: column; gap: 0.15rem; }
.oa-filter-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin-bottom: 0.7rem;
}
.oa-chip-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.oa-chip {
  border: 1px solid var(--oa-stone);
  background: transparent;
  color: var(--oa-ink);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.oa-chip:hover { border-color: var(--oa-brass); transform: translateY(-1px); }
.oa-chip.is-active {
  background: var(--oa-umber);
  border-color: var(--oa-umber);
  color: var(--oa-on-umber);
  transform: none;
}
.oa-price-row { display: flex; align-items: center; gap: 0.45rem; }
.oa-price-row .form-control {
  border-radius: var(--oa-radius-sm);
  font-size: 0.85rem;
  border-color: var(--oa-stone);
  background: var(--oa-surface);
}
.oa-price-sep { color: var(--oa-mute); font-weight: 600; }
.oa-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  cursor: pointer;
  color: var(--oa-ink);
}
.oa-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--oa-brass);
}
.oa-shop-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--oa-stone);
}
.oa-shop-meta {
  font-size: 0.86rem;
  color: var(--oa-mute);
  margin: 0;
  font-weight: 500;
}
.oa-shop-empty {
  text-align: center;
  padding: 3.5rem 1.25rem;
  border: 1px solid var(--oa-stone);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, color-mix(in srgb, var(--oa-brass) 8%, transparent), transparent 60%),
    var(--oa-surface);
  border-radius: var(--oa-radius);
}
.oa-shop-empty__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--oa-stone);
  color: var(--oa-ink);
  font-size: 1.2rem;
  border-radius: 999px;
}
.oa-shop-empty__title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.oa-shop-empty__text { color: var(--oa-mute); margin-bottom: 1.15rem; max-width: 22rem; margin-left: auto; margin-right: auto; }
.oa-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--oa-stone);
}
.oa-pager__btn {
  min-width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--oa-stone);
  background: transparent;
  color: var(--oa-ink);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--oa-radius-sm);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.oa-pager__btn.is-active,
.oa-pager__btn:hover:not(:disabled) {
  background: var(--oa-umber);
  border-color: var(--oa-umber);
  color: var(--oa-on-umber);
}
.oa-pager__btn:disabled { opacity: 0.4; }

@media (max-width: 575.98px) {
  .oa-shop__intro { padding: 2rem 0 1.5rem; }
  .oa-shop-bar { gap: 0.55rem; }
  .oa-shop-controls .form-select { min-width: 0; flex: 1 1 auto; }
}

/* —— PDP —— */
.oa-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--oa-mute);
  margin-bottom: 1.5rem;
}
.oa-breadcrumb a { color: inherit; text-decoration: none; }
.oa-breadcrumb a:hover { color: var(--oa-brass); }
.oa-breadcrumb a::after {
  content: "/";
  margin-left: 0.4rem;
  opacity: 0.5;
}
.oa-breadcrumb > span[aria-current]::after { content: none; }

/* —— Product detail —— */
.oa-pdp {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}
.oa-pdp .oa-breadcrumb { margin-bottom: 1.25rem; }
.oa-pdp__stage {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .oa-pdp__stage {
    grid-template-columns: minmax(0, 22.5rem) minmax(0, 1fr);
    gap: 1.75rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .oa-pdp__stage {
    grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
    gap: 2rem 3rem;
  }
}
@media (min-width: 1200px) {
  .oa-pdp__stage {
    grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
  }
}
.oa-pdp__gallery {
  width: 100%;
  max-width: min(100%, 20.5rem);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .oa-pdp__gallery {
    max-width: min(100%, 22.5rem);
    margin-inline: 0;
  }
}
@media (min-width: 992px) {
  .oa-pdp__gallery {
    position: sticky;
    top: 5.25rem;
    max-width: min(100%, 26rem);
  }
}
.oa-pdp__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--oa-mist);
  border-radius: var(--oa-radius);
}
@media (min-width: 768px) {
  .oa-pdp__media {
    aspect-ratio: 4 / 5;
  }
}
.oa-pdp__buy {
  min-width: 0;
  max-width: 34rem;
}
@media (min-width: 768px) {
  .oa-pdp__buy { max-width: none; padding-top: 0.15rem; }
}
.oa-pdp__brand {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oa-brass);
  margin-bottom: 0.4rem;
}
.oa-pdp__title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  color: var(--oa-ink);
}
.oa-pdp__rating { color: var(--oa-mute); font-size: 0.86rem; margin-bottom: 0.7rem; }
.oa-pdp__price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 0.4rem; }
.oa-pdp__price { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 800; color: var(--oa-ink); }
.oa-pdp__compare { text-decoration: line-through; color: var(--oa-mute); font-size: 0.95rem; }
.oa-pdp__stock { font-size: 0.84rem; font-weight: 700; margin-bottom: 0.75rem; }
.oa-pdp__lead {
  line-height: 1.6;
  color: var(--oa-mute);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.oa-pdp__estimate { margin-bottom: 1.1rem; }
.oa-pdp__variants { margin-bottom: 1rem; }
.oa-pdp__qty { margin-bottom: 0.35rem; }
.oa-pdp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 0.75rem;
}
.oa-pdp__actions .oa-btn { flex: 1 1 auto; min-width: 8.5rem; }
.oa-pdp__actions .oa-btn--solid { flex: 1 1 100%; }
@media (min-width: 480px) {
  .oa-pdp__actions .oa-btn--solid { flex: 1 1 auto; }
}
.oa-pdp__note { font-size: 0.78rem; line-height: 1.5; color: var(--oa-mute); margin-bottom: 0; }
.oa-pdp__body {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--oa-stone);
  max-width: 40rem;
}
.oa-pdp__body-title {
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--oa-ink);
}
.oa-pdp__desc { line-height: 1.7; color: var(--oa-mute); font-size: 0.95rem; }
.oa-pdp__related {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--oa-stone);
}
@media (max-width: 991.98px) {
  .oa-pdp { padding-bottom: 5.5rem; }
}

/* Surfaces / radii / dark surfaces */
.oa-product__media,
.oa-mosaic__tile,
.oa-editorial__tile,
.oa-panel,
.oa-auth__panel,
.oa-legal,
.oa-info-tile,
.oa-media-frame,
.oa-header-suggest,
.oa-shop-suggest,
.oa-drawer-suggest,
.oa-chip,
.oa-badge {
  border-radius: var(--oa-radius-sm);
}
.oa-product__media,
.oa-mosaic__tile,
.oa-editorial__tile,
.oa-media-frame {
  border-radius: var(--oa-radius);
}
.oa-section--paper {
  background: color-mix(in srgb, var(--oa-ink) 4%, transparent);
}
html.dark-mode .oa-section--paper,
html[data-bs-theme="dark"] .oa-section--paper,
body.dark-mode .oa-section--paper {
  background: rgba(255, 255, 255, 0.035);
}
html.dark-mode .oa-panel,
html[data-bs-theme="dark"] .oa-panel,
body.dark-mode .oa-panel,
html.dark-mode .oa-auth__panel,
html[data-bs-theme="dark"] .oa-auth__panel,
body.dark-mode .oa-auth__panel,
html.dark-mode .oa-legal,
html[data-bs-theme="dark"] .oa-legal,
body.dark-mode .oa-legal,
html.dark-mode .oa-info-tile,
html[data-bs-theme="dark"] .oa-info-tile,
body.dark-mode .oa-info-tile {
  background: var(--oa-surface);
  border-color: var(--oa-mist);
}
html.dark-mode .oa-header-suggest,
html[data-bs-theme="dark"] .oa-header-suggest,
body.dark-mode .oa-header-suggest,
html.dark-mode .oa-shop-suggest,
html[data-bs-theme="dark"] .oa-shop-suggest,
body.dark-mode .oa-shop-suggest,
html.dark-mode .oa-drawer-suggest,
html[data-bs-theme="dark"] .oa-drawer-suggest,
body.dark-mode .oa-drawer-suggest {
  background: var(--oa-surface);
  border-color: var(--oa-mist);
  color: var(--oa-ink);
}
html.dark-mode .oa-header-suggest__item,
html[data-bs-theme="dark"] .oa-header-suggest__item,
body.dark-mode .oa-header-suggest__item {
  color: var(--oa-ink);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
html.dark-mode .master-header .nav-link-custom,
html[data-bs-theme="dark"] .master-header .nav-link-custom,
body.dark-mode .master-header .nav-link-custom,
html.dark-mode .oa-header-account,
html[data-bs-theme="dark"] .oa-header-account,
body.dark-mode .oa-header-account,
html.dark-mode .oa-header-icon,
html[data-bs-theme="dark"] .oa-header-icon,
body.dark-mode .oa-header-icon {
  color: var(--oa-ink);
}
html.dark-mode .mobile-drawer .oa-btn--ghost,
html[data-bs-theme="dark"] .mobile-drawer .oa-btn--ghost,
body.dark-mode .mobile-drawer .oa-btn--ghost {
  color: var(--oa-ink) !important;
  border-color: var(--oa-mist) !important;
}
html.dark-mode .oa-badge,
html[data-bs-theme="dark"] .oa-badge,
body.dark-mode .oa-badge {
  background: #2a2a2a;
  color: var(--oa-ink);
}
html.dark-mode .oa-shop-controls .form-select,
html[data-bs-theme="dark"] .oa-shop-controls .form-select,
body.dark-mode .oa-shop-controls .form-select,
html.dark-mode .oa-shop-search .form-control,
html[data-bs-theme="dark"] .oa-shop-search .form-control,
body.dark-mode .oa-shop-search .form-control,
html.dark-mode .oa-price-row .form-control,
html[data-bs-theme="dark"] .oa-price-row .form-control,
body.dark-mode .oa-price-row .form-control,
html.dark-mode .oa-qty-input,
html[data-bs-theme="dark"] .oa-qty-input,
body.dark-mode .oa-qty-input {
  background: var(--oa-surface);
  color: var(--oa-ink);
  border-color: var(--oa-mist);
}

/* Scroll reveal */
.oa-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.oa-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .oa-reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .oa-hero { min-height: min(78vh, 620px); }
  .oa-hero__bg { background-position: center, 88% 12%, center; }
  .oa-hero__inner { padding: 3.5rem 0 2.5rem; }
  .oa-section { padding: 2.75rem 0; }
  .oa-product-grid { gap: 1rem 0.65rem; }
  .oa-trust { gap: 1.15rem; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .oa-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* —— FAQ accordion (theme-aware; kill Bootstrap white/blue defaults) —— */
.oa-faq {
  max-width: 760px;
}
.oa-faq-accordion {
  --bs-accordion-bg: var(--oa-surface);
  --bs-accordion-color: var(--oa-ink);
  --bs-accordion-border-color: var(--oa-mist);
  --bs-accordion-btn-color: var(--oa-ink);
  --bs-accordion-btn-bg: var(--oa-surface);
  --bs-accordion-active-color: var(--oa-ink);
  --bs-accordion-active-bg: color-mix(in srgb, var(--oa-brass) 14%, var(--oa-surface));
  --bs-accordion-btn-focus-border-color: var(--oa-brass);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--oa-brass) 28%, transparent);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b0b0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b0b0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
html.dark-mode .oa-faq-accordion,
html[data-bs-theme="dark"] .oa-faq-accordion,
body.dark-mode .oa-faq-accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f4f1eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f4f1eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.oa-faq-accordion .accordion-item.oa-faq-item {
  background: transparent !important;
  border: 0 !important;
  margin-bottom: 0.55rem;
  overflow: hidden;
  border-radius: var(--oa-radius-sm);
}
.oa-faq-accordion .accordion-button.oa-faq-btn {
  background-color: var(--oa-surface) !important;
  color: var(--oa-ink) !important;
  border: 1px solid var(--oa-mist) !important;
  border-radius: var(--oa-radius-sm) !important;
  box-shadow: none !important;
  font-family: var(--oa-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1rem 1.15rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.oa-faq-accordion .accordion-button.oa-faq-btn:not(.collapsed) {
  background-color: color-mix(in srgb, var(--oa-brass) 14%, var(--oa-surface)) !important;
  border-color: color-mix(in srgb, var(--oa-brass) 45%, var(--oa-mist)) !important;
  color: var(--oa-ink) !important;
  box-shadow: none !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.oa-faq-accordion .accordion-button.oa-faq-btn:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--oa-brass) 28%, transparent) !important;
  border-color: var(--oa-brass) !important;
}
.oa-faq-accordion .accordion-button.oa-faq-btn::after {
  filter: none !important;
  background-image: var(--bs-accordion-btn-icon) !important;
}
.oa-faq-accordion .accordion-button.oa-faq-btn:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon) !important;
}
.oa-faq-accordion .accordion-body.oa-faq-body {
  background-color: var(--oa-surface) !important;
  color: var(--oa-mute) !important;
  border: 1px solid var(--oa-mist);
  border-top: 0;
  border-radius: 0 0 var(--oa-radius-sm) var(--oa-radius-sm);
  line-height: 1.7;
  font-size: 0.95rem;
  padding: 0.85rem 1.15rem 1.15rem;
}
.oa-faq-accordion .oa-faq-body a {
  color: var(--oa-brass) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.oa-faq-accordion .oa-faq-body a:hover {
  color: var(--oa-ink) !important;
}
.oa-faq-foot {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--oa-mute);
}
.oa-faq-foot a {
  color: var(--oa-brass);
  font-weight: 700;
  text-decoration: none;
}
.oa-faq-foot a:hover {
  text-decoration: underline;
}

/* —— Cart / PDP commerce —— */
.oa-variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 1rem;
}
.oa-variant {
  min-width: 2.75rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--oa-mist);
  background: var(--oa-surface);
  color: var(--oa-ink);
  border-radius: var(--oa-radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
}
.oa-variant.is-active {
  border-color: var(--oa-brass);
  background: color-mix(in srgb, var(--oa-brass) 12%, var(--oa-surface));
}
.oa-variant.is-disabled,
.oa-variant:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.oa-pdp__opt-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin-bottom: 0.35rem;
}
.oa-qty-input {
  width: 4.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--oa-mist);
  background: var(--oa-surface);
  color: var(--oa-ink);
  border-radius: var(--oa-radius-sm);
  margin-bottom: 1rem;
}
.oa-pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: var(--oa-surface);
  border-top: 1px solid var(--oa-mist);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
}
.oa-pdp-sticky__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.oa-pdp-sticky__name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--oa-ink);
}
.oa-pdp-sticky__price {
  font-size: 0.82rem;
  color: var(--oa-mute);
}
@media (min-width: 992px) {
  .oa-pdp-sticky { display: none !important; }
}

.oa-header-cart { position: relative; }
.oa-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--oa-brass);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.05rem;
  text-align: center;
}

.oa-cart-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--oa-mist);
  color: var(--oa-ink);
}
.oa-cart-line__thumb {
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.35rem;
  background: var(--oa-mist) center/cover no-repeat;
}
.oa-desk-box {
  padding: 1rem 1.1rem;
  border: 1px solid var(--oa-mist);
  background: color-mix(in srgb, var(--oa-paper) 92%, var(--oa-brass));
  color: var(--oa-ink);
}
.oa-btn--sm { font-size: 0.85rem; padding: 0.4rem 0.85rem; }
.oa-cart-line.is-deselected {
  opacity: 0.55;
}
.oa-cart-check {
  flex: 0 0 auto;
  padding-top: 0.2rem;
  margin: 0;
  cursor: pointer;
}
.oa-cart-check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--oa-brass);
}
.oa-cart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--oa-mist);
}
.oa-cart-toolbar--drawer {
  margin: 0 0 0.35rem;
  padding: 0.35rem 0 0.65rem;
}
.oa-cart-select-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--oa-ink);
  cursor: pointer;
}
.oa-cart-toolbar__meta {
  font-size: 0.82rem;
  color: var(--oa-mute);
}
.oa-btn.is-disabled,
a.oa-btn.is-disabled {
  opacity: 0.45;
  pointer-events: auto;
  cursor: not-allowed;
}
.oa-cart-line__meta {
  font-size: 0.82rem;
  color: var(--oa-mute);
  margin-top: 0.15rem;
}
.oa-cart-line__controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
}
.oa-qty-btn,
.oa-link-btn {
  border: 1px solid var(--oa-mist);
  background: transparent;
  color: var(--oa-ink);
  border-radius: var(--oa-radius-sm);
  padding: 0.15rem 0.45rem;
  font-size: 0.85rem;
}
.oa-link-btn {
  border: 0;
  text-decoration: underline;
  color: var(--oa-brass);
}
.oa-cart-summary {
  margin-top: 1.25rem;
  padding-top: 1rem;
}
.oa-cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  color: var(--oa-ink);
}
.oa-cart-summary__row--total {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.oa-cart-summary__note {
  font-size: 0.85rem;
  color: var(--oa-mute);
  margin: 0.5rem 0 1rem;
}
.oa-cart-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.oa-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1080;
}
.oa-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--oa-surface);
  color: var(--oa-ink);
  z-index: 1081;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 28px rgba(0,0,0,0.18);
}
.oa-cart-drawer__head,
.oa-cart-drawer__foot {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--oa-mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oa-cart-drawer__foot {
  border-bottom: 0;
  border-top: 1px solid var(--oa-mist);
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  margin-top: auto;
}
.oa-cart-drawer__body {
  padding: 0.5rem 1.1rem;
  overflow: auto;
  flex: 1;
}

.oa-checkout-heading {
  font-family: var(--oa-display, inherit);
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
  color: var(--oa-ink);
}
.oa-checkout-aside {
  border: 1px solid var(--oa-mist);
  border-radius: var(--oa-radius-sm);
  padding: 1.1rem;
  background: var(--oa-surface);
}
.oa-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.oa-pay-option {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--oa-ink);
}
.oa-check-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--oa-ink);
  cursor: pointer;
}
.oa-check-row input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.oa-checkout-checklist {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--oa-mute);
  font-size: 0.9rem;
}
.oa-wish-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.oa-wish-item {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--oa-mist);
  color: var(--oa-ink);
}
.oa-wish-item__thumb {
  width: 4.25rem;
  height: 5.25rem;
  flex-shrink: 0;
  border-radius: 0.35rem;
  background-size: cover;
  background-position: center;
  background-color: #e8e4df;
}
.oa-wish-item__thumb--empty {
  background-image: linear-gradient(160deg, #2a2118, #8b7355);
}
.oa-wish-item__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.oa-wish-item__name {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.oa-wish-item__price {
  font-size: 0.9rem;
  color: var(--oa-mute);
}
.oa-wish-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.oa-timeline {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.oa-timeline__step {
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-left: 2px solid var(--oa-mist);
  color: var(--oa-mute);
  position: relative;
}
.oa-timeline__step::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--oa-mist);
  position: absolute;
  left: -0.35rem;
  top: 0.7rem;
}
.oa-timeline__step.is-done {
  color: var(--oa-ink);
  border-left-color: var(--oa-brass);
}
.oa-timeline__step.is-done::before {
  background: var(--oa-brass);
}
.oa-track-pin {
  font-weight: 800;
  color: var(--oa-brass);
  font-size: 1.05rem;
}

/* —— Track order —— */
.oa-track-hero {
  padding: 2.75rem 0 0.35rem;
  position: relative;
}
.oa-track-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 80% at 12% 0%, color-mix(in srgb, var(--oa-brass) 12%, transparent), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--oa-ink) 3.5%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.oa-track-hero .container {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}
.oa-track-hero .oa-section-title {
  max-width: 18ch;
}
.oa-track-hero .oa-section-sub {
  max-width: 36rem;
}
.oa-track-page .container {
  max-width: 52rem;
}
.oa-track-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .oa-track-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.25rem;
  }
}
.oa-track-lookup {
  background: color-mix(in srgb, var(--oa-surface) 88%, var(--oa-paper));
  border: 1px solid var(--oa-mist);
  border-radius: var(--oa-radius-sm);
  padding: 1.5rem 1.25rem;
}
@media (min-width: 768px) {
  .oa-track-lookup { padding: 1.85rem 1.75rem; }
}
.oa-track-field { margin-bottom: 1rem; }
.oa-track-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin-bottom: 0.4rem;
}
.oa-track-input {
  min-height: 2.75rem;
  font-size: 1rem;
  border-color: var(--oa-mist);
  background: var(--oa-surface);
}
.oa-track-input:focus {
  border-color: color-mix(in srgb, var(--oa-brass) 55%, var(--oa-mist));
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--oa-brass) 18%, transparent);
}
.oa-track-err {
  min-height: 1.25rem;
  margin: 0.85rem 0 0.35rem;
  text-align: center;
  font-size: 0.88rem;
  color: #9b2c2c;
}
.oa-track-help-line {
  text-align: center;
  font-size: 0.85rem;
  color: var(--oa-mute);
  margin-top: 0.85rem;
}
.oa-track-aside {
  padding: 0.35rem 0.15rem 0;
}
.oa-track-aside__title {
  font-family: var(--oa-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--oa-ink);
}
.oa-track-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.oa-track-aside__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--oa-mute);
}
.oa-track-aside__list strong { color: var(--oa-ink); font-weight: 700; }
.oa-track-aside__num {
  flex: 0 0 1.65rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--oa-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--oa-brass);
  border: 1px solid color-mix(in srgb, var(--oa-brass) 35%, var(--oa-mist));
  background: color-mix(in srgb, var(--oa-brass) 8%, var(--oa-surface));
}
.oa-track-result {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--oa-mist);
  animation: oa-fade-up 0.45s ease both;
}
.oa-track-result__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.oa-track-result__eyebrow {
  font-family: var(--oa-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oa-brass);
  margin: 0 0 0.35rem;
}
.oa-track-result__title {
  font-family: var(--oa-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--oa-ink);
}
.oa-track-result__meta {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--oa-mute);
  max-width: 36rem;
}
.oa-track-status {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--oa-mist);
  background: var(--oa-surface);
  color: var(--oa-ink);
  white-space: nowrap;
}
.oa-track-status.is-live {
  border-color: color-mix(in srgb, var(--oa-brass) 40%, var(--oa-mist));
  background: color-mix(in srgb, var(--oa-brass) 12%, var(--oa-surface));
  color: var(--oa-brass);
}
.oa-track-status.is-done {
  border-color: color-mix(in srgb, #2f6b3a 35%, var(--oa-mist));
  background: color-mix(in srgb, #2f6b3a 10%, var(--oa-surface));
  color: #2f6b3a;
}
.oa-track-status.is-pending,
.oa-track-status.is-warn {
  border-color: color-mix(in srgb, #9a6b1f 40%, var(--oa-mist));
  background: color-mix(in srgb, #9a6b1f 12%, var(--oa-surface));
  color: #8a5a12;
}
.oa-track-status.is-progress {
  border-color: color-mix(in srgb, var(--oa-ink) 18%, var(--oa-mist));
}
.oa-track-result__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .oa-track-result__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: start;
  }
}
.oa-track-block-title {
  font-family: var(--oa-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin: 0 0 0.85rem;
}
.oa-timeline__label { display: block; }
.oa-timeline__step.is-current {
  color: var(--oa-ink);
  font-weight: 700;
}
.oa-timeline__step.is-current::before {
  background: var(--oa-brass);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oa-brass) 22%, transparent);
}
.oa-track-pin-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid color-mix(in srgb, var(--oa-brass) 28%, var(--oa-mist));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--oa-brass) 9%, var(--oa-surface)), var(--oa-surface));
  border-radius: var(--oa-radius-sm);
}
.oa-track-pin-box.has-pin .oa-track-pin {
  font-family: var(--oa-display);
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  letter-spacing: 0.28em;
  line-height: 1.1;
  margin: 0.15rem 0 0;
}
.oa-track-pin-box:not(.has-pin) .oa-track-pin {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  color: var(--oa-mute);
  margin: 0.2rem 0 0;
}
.oa-track-pin-box__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oa-mute);
}
.oa-track-pin-box__copy { min-width: 0; }
.oa-track-courier {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--oa-mist, #e8e4dc);
  background: var(--oa-surface, #fff);
}
.oa-track-courier__code {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  word-break: break-all;
  color: var(--oa-ink, #1c1917);
}
html.dark-mode .oa-track-lookup,
html[data-bs-theme="dark"] .oa-track-lookup,
body.dark-mode .oa-track-lookup {
  background: var(--oa-surface);
  border-color: var(--oa-mist);
}
html.dark-mode .oa-track-status.is-done,
html[data-bs-theme="dark"] .oa-track-status.is-done,
body.dark-mode .oa-track-status.is-done {
  color: #7dcea0;
}

/* —— Auth gate (login / sign-up / forgot) —— */
.oa-gate {
  --oa-gate-img: url("/assets/images/editorial-fashion.jpg");
  display: grid;
  min-height: calc(100vh - 4.5rem);
  background: var(--oa-paper);
}
@media (min-width: 992px) {
  .oa-gate {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: calc(100vh - 5rem);
  }
}
.oa-gate__visual {
  position: relative;
  min-height: 38vh;
  overflow: hidden;
  color: #faf7f2;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .oa-gate__visual { min-height: 100%; }
}
.oa-gate__visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 8, 8, 0.35), rgba(10, 8, 8, 0.72)),
    var(--oa-gate-img) center / cover no-repeat;
  transform: scale(1.04);
  animation: oa-gate-drift 22s ease-in-out alternate infinite;
}
.oa-gate--recovery {
  --oa-gate-img: url("/assets/images/editorial-look.jpg");
}
.oa-gate--join {
  --oa-gate-img: url("/assets/images/hero-fashion.jpg");
}
.oa-gate__visual-grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.oa-gate__visual-copy {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.35rem 1.9rem;
  max-width: 28rem;
  animation: oa-gate-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 992px) {
  .oa-gate__visual-copy { padding: 2.75rem 2.5rem 3rem; }
}
.oa-gate__brand {
  margin: 0 0 0.55rem;
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.oa-gate__tagline {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.82);
  max-width: 22rem;
}
.oa-gate__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 2.75rem;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, color-mix(in srgb, var(--oa-brass) 10%, transparent), transparent 55%),
    var(--oa-paper);
}
@media (min-width: 992px) {
  .oa-gate__form { padding: 3rem 2.5rem; }
}
.oa-gate__form-inner {
  width: 100%;
  max-width: 26rem;
  animation: oa-gate-rise 0.65s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.oa-gate--join .oa-gate__form-inner { max-width: 32rem; }
.oa-gate__kicker {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oa-mute);
}
.oa-gate__title {
  margin: 0 0 0.45rem;
  font-family: var(--oa-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--oa-ink);
}
.oa-gate__lead {
  margin: 0 0 1.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--oa-mute);
}
.oa-gate__form .account-form .form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oa-mute);
  margin-bottom: 0.4rem;
}
.oa-gate__form .account-form .form-control {
  min-height: 3rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--oa-stone);
  border-radius: 0;
  padding-left: 2.15rem;
  padding-right: 0.5rem;
  color: var(--oa-ink);
  box-shadow: none;
}
.oa-gate__form .account-form .form-control:focus {
  background: transparent;
  border-bottom-color: var(--oa-ink);
  box-shadow: none;
  outline: none;
}
.oa-gate__form .account-form .form-control::placeholder {
  color: color-mix(in srgb, var(--oa-mute) 70%, transparent);
}
.oa-gate__form .input-icon-group .input-icon {
  left: 0;
  color: var(--oa-mute);
}
.oa-gate__form .input-icon-group .form-control { padding-left: 1.85rem; }
.oa-gate__form .form-check-input {
  border-radius: 0.2rem;
  border-color: var(--oa-stone);
}
.oa-gate__form .form-check-input:checked {
  background-color: var(--oa-ink);
  border-color: var(--oa-ink);
}
.oa-gate__form .form-check-label,
.oa-gate__meta {
  color: var(--oa-mute);
  font-size: 0.88rem;
}
.oa-gate__link {
  color: var(--oa-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--oa-ink) 35%, transparent);
}
.oa-gate__link:hover {
  color: var(--oa-brass);
  border-bottom-color: var(--oa-brass);
}
.oa-gate__actions { margin-top: 0.35rem; }
.oa-gate__foot {
  margin-top: 1.35rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--oa-mute);
}
.oa-gate__captcha-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  background: var(--oa-mist);
  border: 1px solid var(--oa-stone);
}
.oa-gate__2fa-mark {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  border: 1px solid var(--oa-stone);
  color: var(--oa-ink);
  font-size: 1.35rem;
}
@keyframes oa-gate-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes oa-gate-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .oa-hero__bg,
  .oa-product__media,
  .oa-product__media-shade,
  .oa-mosaic__tile,
  .oa-mosaic__tile::before,
  .oa-editorial__tile::before,
  .oa-skel,
  .oa-fade-in,
  .oa-shop__kicker,
  .oa-shop__title,
  .oa-shop__lead,
  .oa-shop-filters,
  .oa-shop-filter-scrim,
  .oa-gate__visual-bg,
  .oa-gate__visual-copy,
  .oa-gate__form-inner { animation: none !important; transition: none !important; }
}
