:root {
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Sora", ui-sans-serif, system-ui, sans-serif;
  --ink: #05090a;
  --ink-2: #091214;
  --ink-3: #0d1d1e;
  --paper: #f2e7d2;
  --paper-2: #e4d5bb;
  --gold: #c79039;
  --gold-2: #f0c66e;
  --gold-dark: #815c24;
  --ivory: #f7edd9;
  --teal: #0b8d83;
  --teal-2: #0c5f5a;
  --red: #d94b39;
  --coral: #e56c43;
  --muted: #a7977c;
  --line: rgba(199, 144, 57, 0.38);
  --max: 1420px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: radial-gradient(
      circle at 18% 8%,
      rgba(11, 141, 131, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #040708 0%, #071012 46%, #05090a 100%);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
body:before,
body:after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 94px;
  z-index: 2;
  pointer-events: none;
  background-image: url("../ornaments/corner-floral.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  opacity: 0.78;
  filter: saturate(1.08);
}
body:before {
  left: 0;
  background-position: left top;
}
body:after {
  right: 0;
  transform: scaleX(-1);
  background-position: left top;
}
body.drawer-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--gold);
  color: #111;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--ivory);
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.top-note {
  position: relative;
  z-index: 8;
  min-height: 34px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-dark)
  );
  color: #15110b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(4, 8, 9, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.nav-inner {
  height: 78px;
  width: min(var(--max), calc(100% - 150px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.nav-links a {
  position: relative;
  color: rgba(247, 237, 217, 0.82);
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: 0.25s;
}
.nav-links a:hover:after {
  right: 0;
}
.nav-links a:hover {
  color: var(--ivory);
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ivory);
  padding: 10px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}
.menu-btn b {
  display: none;
}
.cart-trigger,
.floating-cart {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ivory);
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
}
.cart-trigger b,
.floating-cart b {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
}
.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 900;
}
.kicker b {
  color: var(--red);
}
.kicker.dark {
  color: var(--teal);
}
.btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 900;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #17110a;
  box-shadow: 0 12px 32px rgba(199, 144, 57, 0.22);
}
.btn.outline {
  border-color: rgba(240, 198, 110, 0.52);
  background: rgba(4, 9, 10, 0.34);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}
.btn.dark {
  background: linear-gradient(135deg, #102421, #06100f);
  color: var(--ivory);
  border-color: var(--gold-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}
.btn.outline-dark {
  background: transparent;
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.btn.wide {
  width: 100%;
}
.ornamental-frame {
  border-bottom: 1px solid var(--gold-dark);
}
.section-frame {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-frame:before,
.section-frame:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 190px;
  height: 140px;
  background: url("../ornaments/corner-floral.svg") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.78;
}
.section-frame:before {
  top: 0;
  left: 52px;
}
.section-frame:after {
  bottom: 0;
  right: 52px;
  transform: rotate(180deg);
}
.ornament-divider {
  height: 42px;
  background: url("../ornaments/divider.svg") center/780px 58px no-repeat;
  margin: 4px 0 26px;
  opacity: 0.85;
}
.commerce-ribbon {
  position: relative;
  z-index: 6;
  width: min(1240px, calc(100% - 190px));
  margin: -26px auto 0;
  padding: 20px 24px;
  background: linear-gradient(90deg, #0b2421, #0b1617, #0b2421);
  border: 1px solid var(--gold-dark);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 22px;
}
.commerce-ribbon div {
  display: grid;
  gap: 4px;
  border-right: 1px solid rgba(240, 198, 110, 0.16);
}
.commerce-ribbon span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}
.commerce-ribbon b {
  font-family: var(--font-display);
  font-size: 16px;
}
.commerce-ribbon del {
  color: rgba(247, 237, 217, 0.42);
  font-size: 12px;
  margin-left: 6px;
}
.section {
  width: min(var(--max), calc(100% - 160px));
  margin: 72px auto;
  padding: 74px 64px;
  background: linear-gradient(
    180deg,
    rgba(247, 237, 217, 0.985),
    rgba(229, 215, 190, 0.985)
  );
  color: #17120d;
  box-shadow: var(--shadow);
}
.section-heading {
  max-width: 760px;
}
.section-heading.center {
  text-align: center;
  margin: 0 auto;
}
.section-heading h2,
.story-copy h2,
.origin-copy h2,
.final-cta h2,
.product-info-panel h1,
.product-story h2,
.related-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-heading p {
  color: #655a4b;
  font-size: 16px;
}
.region-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.region-filters button {
  border: 1px solid rgba(129, 92, 36, 0.38);
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 15px;
  border-radius: 999px;
  color: #3b2d1e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.region-filters button.active,
.region-filters button:hover {
  background: #0d2926;
  color: var(--ivory);
  border-color: #0d2926;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  background: #091112;
  color: var(--ivory);
  border: 1px solid var(--gold-dark);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}
.product-visual {
  height: 330px;
  display: grid;
  place-items: center;
  background: radial-gradient(
      circle at 50% 32%,
      rgba(199, 144, 57, 0.14),
      transparent 38%
    ),
    linear-gradient(180deg, #101a1b, #060a0b);
  position: relative;
  overflow: hidden;
}
.product-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../ornaments/pattern-tile.svg") center/190px 190px;
  opacity: 0.08;
}
.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.35s;
}
.product-card:hover .product-visual img {
  transform: scale(1.035);
}
.product-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  background: rgba(5, 9, 10, 0.78);
  border: 1px solid rgba(240, 198, 110, 0.42);
  padding: 6px 9px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-info {
  padding: 17px;
}
.product-region {
  display: block;
  margin: 0 0 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  margin: 0 0 5px;
  color: var(--gold-2);
}
.product-info p {
  margin: 0;
  color: rgba(247, 237, 217, 0.62);
  font-size: 12px;
  min-height: 38px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: end;
  margin-top: 15px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price strong {
  font-size: 18px;
}
.product-price del {
  font-size: 11px;
  color: rgba(247, 237, 217, 0.38);
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-actions a,
.product-actions button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 198, 110, 0.38);
  background: transparent;
  color: var(--gold-2);
  font-size: 17px;
}
.product-actions button:hover,
.product-actions a:hover {
  background: var(--gold);
  color: #111;
}
.card-purchase {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 14px;
}
.card-purchase select {
  min-height: 38px;
  border: 1px solid rgba(240, 198, 110, 0.28);
  background: #071011;
  color: var(--ivory);
  padding: 0 9px;
  border-radius: 5px;
  font-size: 11px;
}
.card-purchase button {
  min-height: 38px;
  border: 0;
  border-radius: 5px;
  background: var(--gold);
  color: #111;
  padding: 0 13px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.dark-section {
  width: min(var(--max), calc(100% - 160px));
  margin: 72px auto;
  padding: 72px 64px;
  background: linear-gradient(130deg, #081617, #05090a 65%);
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 54px;
  align-items: center;
  box-shadow: var(--shadow);
}
.story-copy h2 {
  color: var(--ivory);
}
.story-copy p {
  color: rgba(247, 237, 217, 0.68);
}
.story-points {
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}
.story-points li {
  padding: 9px 0 9px 25px;
  position: relative;
  color: rgba(247, 237, 217, 0.8);
}
.story-points li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--teal);
}
.mural-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}
.mural-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 198, 110, 0.34);
  background: #030607;
}
.mural-card.tall {
  grid-row: span 2;
}
.mural-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: radial-gradient(circle at 50% 35%, rgba(199, 144, 57, 0.12), transparent 44%), #071011;
  transition: transform 0.35s;
}
.mural-card:hover img {
  transform: scale(1.04);
}
.mural-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  display: grid;
}
.mural-card b {
  font-family: var(--font-display);
  color: var(--gold-2);
}
.mural-card span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 237, 217, 0.65);
}
.buying-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.buying-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.buying-grid article {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(129, 92, 36, 0.28);
  background: rgba(255, 255, 255, 0.34);
}
.buying-grid article > span {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--teal);
}
.buying-grid h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
}
.buying-grid p {
  margin: 0;
  color: #6a5d4b;
  font-size: 12px;
}
.buying-section > .btn {
  grid-column: 2;
  justify-self: start;
}
.origin-section {
  width: min(var(--max), calc(100% - 160px));
  margin: 72px auto;
  background: linear-gradient(115deg, #071314, #0a2521);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  color: var(--ivory);
  box-shadow: var(--shadow);
}
.origin-visual {
  min-height: 530px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(199, 144, 57, 0.12), transparent 48%),
    #05090a;
  overflow: hidden;
}
.origin-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 600px;
  padding: 25px;
}
.origin-copy {
  padding: 70px;
}
.origin-copy p {
  color: rgba(247, 237, 217, 0.68);
  font-size: 16px;
}
.origin-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 26px;
}
.origin-points span {
  padding: 8px 11px;
  border: 1px solid rgba(240, 198, 110, 0.28);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.final-cta {
  text-align: center;
}
.final-cta p {
  max-width: 690px;
  margin: 0 auto 26px;
  color: #645847;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer {
  position: relative;
  width: min(var(--max), calc(100% - 160px));
  margin: 0 auto 42px;
  border: 1px solid var(--line);
  background: #05090a;
}
.footer-ornament {
  height: 34px;
  background: url("../ornaments/divider.svg") center/760px 55px no-repeat;
  border-bottom: 1px solid var(--line);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.2fr;
  gap: 36px;
  padding: 36px;
}
.footer-main p {
  color: rgba(247, 237, 217, 0.56);
  font-size: 12px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer-columns div {
  display: grid;
  align-content: start;
  gap: 6px;
}
.footer-columns b {
  font-family: var(--font-display);
  color: var(--gold-2);
}
.footer-columns a {
  font-size: 11px;
  color: rgba(247, 237, 217, 0.65);
}
.footer-columns a:hover {
  color: var(--gold-2);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(247, 237, 217, 0.42);
  font-size: 10px;
}
.floating-cart {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 70;
  background: #0b2421;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.38);
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(520px, 100%);
  background: linear-gradient(180deg, #f5ead8, #dfceb0);
  color: #17120d;
  transform: translateX(105%);
  transition: transform 0.28s;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.open {
  transform: none;
}
.cart-head {
  padding: 24px 25px;
  border-bottom: 1px solid rgba(129, 92, 36, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.cart-head h2,
.dialog-head h2 {
  font-family: var(--font-display);
  font-size: 38px;
  margin: 0;
}
.cart-head > button,
.dialog-close {
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
}
.cart-items {
  padding: 16px 22px;
  overflow: auto;
}
.cart-item {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(129, 92, 36, 0.2);
}
.cart-item img {
  width: 95px;
  height: 112px;
  object-fit: contain;
  background: #0a1112;
}
.cart-region {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.cart-item h3 {
  font-family: var(--font-display);
  margin: 3px 0 8px;
  font-size: 18px;
}
.cart-controls {
  display: flex;
  gap: 7px;
}
.cart-controls select,
.cart-controls input {
  height: 34px;
  border: 1px solid rgba(129, 92, 36, 0.36);
  background: rgba(255, 255, 255, 0.45);
  padding: 0 8px;
}
.cart-controls input {
  width: 58px;
}
.cart-remove {
  border: 0;
  background: transparent;
  padding: 5px 0;
  color: #8d312a;
  font-size: 10px;
  text-decoration: underline;
}
.cart-item-total {
  font-weight: 900;
  white-space: nowrap;
}
.cart-empty {
  padding: 42px 25px;
  text-align: center;
}
.cart-empty b {
  font-family: var(--font-display);
  font-size: 24px;
}
.cart-totals {
  padding: 20px 25px 26px;
  border-top: 1px solid rgba(129, 92, 36, 0.25);
  background: rgba(255, 255, 255, 0.26);
}
.cart-totals > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.cart-totals small {
  display: block;
  margin: 12px 0;
  color: #6e604e;
}
.checkout-dialog {
  width: min(780px, calc(100% - 28px));
  border: 1px solid var(--gold-dark);
  border-radius: 18px;
  background: linear-gradient(180deg, #f6ead8, #e2d0b2);
  color: #17120d;
  padding: 0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.checkout-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(7px);
}
.checkout-dialog form {
  padding: 26px;
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.payment-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.payment-choice label {
  position: relative;
}
.payment-choice input {
  position: absolute;
  opacity: 0;
}
.payment-choice span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(129, 92, 36, 0.34);
  background: rgba(255, 255, 255, 0.34);
}
.payment-choice input:checked + span {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(11, 141, 131, 0.16);
}
.payment-choice small {
  color: #6f604d;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.checkout-grid label {
  display: grid;
  gap: 5px;
}
.checkout-grid label.full {
  grid-column: 1/-1;
}
.checkout-grid span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checkout-grid input,
.checkout-grid select,
.checkout-grid textarea {
  width: 100%;
  border: 1px solid rgba(129, 92, 36, 0.34);
  background: rgba(255, 255, 255, 0.5);
  padding: 11px;
}
.checkout-summary {
  margin: 18px 0;
  padding: 17px;
  background: #0d2724;
  color: var(--ivory);
  display: grid;
}
.checkout-summary span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal);
}
.checkout-summary b {
  font-family: var(--font-display);
  font-size: 27px;
}
.checkout-summary small {
  color: rgba(247, 237, 217, 0.6);
}
.checkout-result {
  min-height: 22px;
  text-align: center;
  color: var(--teal);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 140;
  transform: translate(-50%, 120px);
  background: #071513;
  color: var(--ivory);
  border: 1px solid var(--gold-dark);
  padding: 11px 16px;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.toast.show {
  transform: translate(-50%, 0);
}
.product-page {
  background: linear-gradient(180deg, #040708, #071112);
}
.product-page main {
  min-height: 60vh;
}
.product-shell {
  width: min(var(--max), calc(100% - 160px));
  margin: 38px auto 64px;
}
.breadcrumbs {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 237, 217, 0.55);
  margin-bottom: 18px;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 26px;
  align-items: start;
}
.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}




.gallery-main {
  position: relative;
  min-height: 650px;
  background: radial-gradient(
      circle at 50% 35%,
      rgba(199, 144, 57, 0.14),
      transparent 38%
    ),
    #071011;
  border: 1px solid var(--gold-dark);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gallery-main:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../ornaments/pattern-tile.svg") center/210px 210px;
  opacity: 0.08;
}
.gallery-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
  padding: 22px;
}
.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 8px 10px;
  background: rgba(5, 9, 10, 0.76);
  border: 1px solid rgba(240, 198, 110, 0.3);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-info-panel {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, #0b1819, #05090a);
  border: 1px solid var(--gold-dark);
  padding: 30px;
  color: var(--ivory);
}
.product-info-panel h1 {
  font-size: clamp(45px, 5vw, 74px);
  color: var(--gold-2);
  margin-bottom: 8px;
}
.product-info-panel h1 span {
  display: block;
  margin-top: 10px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.015em;
}
.product-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(247, 237, 217, 0.75);
}
.product-price-panel {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0;
}
.product-price-panel strong {
  font-size: 31px;
}
.product-price-panel del {
  color: rgba(247, 237, 217, 0.38);
}
.product-price-panel span {
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid rgba(240, 198, 110, 0.3);
  font-size: 9px;
  text-transform: uppercase;
}
.product-buy {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 9px;
}
.product-buy select,
.product-buy input {
  min-height: 46px;
  background: #071011;
  color: var(--ivory);
  border: 1px solid rgba(240, 198, 110, 0.32);
  padding: 0 12px;
}
.product-buy .btn {
  grid-column: 1/-1;
}
.product-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.product-benefits article {
  padding: 12px;
  border: 1px solid rgba(240, 198, 110, 0.18);
  text-align: center;
}
.product-benefits b {
  display: block;
  color: var(--gold-2);
  font-family: var(--font-display);
}
.product-benefits span {
  font-size: 9px;
  color: rgba(247, 237, 217, 0.52);
}
.product-story {
  width: min(var(--max), calc(100% - 160px));
  margin: 0 auto 62px;
  padding: 58px 64px;
  background: linear-gradient(180deg, #f4e8d5, #e5d3b4);
  color: #17120d;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  border: 1px solid var(--gold-dark);
}
.product-story-text > p {
  font-size: 17px;
  color: #5f5446;
}
.symbol-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.symbol-list article {
  padding: 17px;
  border: 1px solid rgba(129, 92, 36, 0.28);
  background: rgba(255, 255, 255, 0.32);
}
.symbol-list b {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 18px;
}
.symbol-list p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #6b5e4c;
}
.source-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.source-list a {
  padding: 8px 10px;
  border: 1px solid rgba(129, 92, 36, 0.35);
  font-size: 10px;
  font-weight: 800;
}
.legal-note {
  padding: 13px;
  border-left: 3px solid var(--red);
  background: rgba(217, 75, 57, 0.08);
  font-size: 12px !important;
}
.related-section {
  width: min(var(--max), calc(100% - 160px));
  margin: 0 auto 72px;
}
.related-section > h2 {
  color: var(--ivory);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.related-card {
  border: 1px solid var(--gold-dark);
  background: #071011;
}
.related-card img {
  height: 280px;
  width: 100%;
  object-fit: contain;
}
.related-card div {
  padding: 14px;
}
.related-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--gold-2);
}
.related-card p {
  margin: 4px 0 0;
  color: rgba(247, 237, 217, 0.56);
  font-size: 10px;
}
@media (max-width: 1180px) {
  body:before,
  body:after {
    width: 64px;
  }
  .nav-inner,
  .section,
  .dark-section,
  .origin-section,
  .site-footer,
  .product-shell,
  .product-story,
  .related-section {
    width: calc(100% - 92px);
  }
  .commerce-ribbon {
    width: calc(100% - 110px);
    grid-template-columns: repeat(2, 1fr) auto;
  }
  .commerce-ribbon div:nth-child(2) {
    border-right: 0;
  }
  .commerce-ribbon .btn {
    grid-row: 1/3;
    grid-column: 3;
  }
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dark-section {
    grid-template-columns: 1fr;
  }
  .buying-section {
    grid-template-columns: 1fr;
  }
  .buying-section > .btn {
    grid-column: 1;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-info-panel {
    position: static;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  body:before,
  body:after {
    display: none;
  }
  .top-note {
    font-size: 9px;
  }
  .nav-inner {
    width: calc(100% - 28px);
    height: 68px;
  }
  .menu-btn {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 106px;
    display: none;
    background: #071011;
    border: 1px solid var(--gold-dark);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 9px 0;
    border-bottom: 1px solid rgba(240, 198, 110, 0.12);
  }
  .cart-trigger span {
    display: none;
  }
  .commerce-ribbon {
    width: calc(100% - 28px);
    margin: -12px auto 0;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    gap: 12px;
  }
  .commerce-ribbon div:nth-child(2) {
    border-right: 0;
  }
  .commerce-ribbon div:nth-child(3),
  .commerce-ribbon div:nth-child(4) {
    display: none;
  }
  .commerce-ribbon .btn {
    grid-row: auto;
    grid-column: 1/-1;
  }
  .section,
  .dark-section,
  .origin-section,
  .site-footer,
  .product-shell,
  .product-story,
  .related-section {
    width: calc(100% - 28px);
  }
  .section,
  .dark-section {
    margin: 36px auto;
    padding: 42px 20px;
  }
  .section-frame:before,
  .section-frame:after {
    display: none;
  }
  .section-heading h2,
  .story-copy h2,
  .origin-copy h2,
  .final-cta h2,
  .product-story h2 {
    font-size: 40px;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-visual {
    height: 250px;
  }
  .product-info {
    padding: 13px;
  }
  .product-info h3 {
    font-size: 18px;
  }
  .product-info p {
    min-height: 0;
  }
  .product-meta {
    align-items: center;
  }
  .card-purchase {
    grid-template-columns: 1fr;
  }
  .card-purchase button {
    width: 100%;
  }
  .dark-section {
    grid-template-columns: 1fr;
  }
  .mural-rail {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .mural-card.tall {
    grid-row: span 1;
  }
  .buying-grid {
    grid-template-columns: 1fr;
  }
  .origin-section {
    grid-template-columns: 1fr;
    margin: 36px auto;
  }
  .origin-visual {
    min-height: 360px;
  }
  .origin-copy {
    padding: 42px 22px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    padding: 14px 20px;
    flex-direction: column;
  }
  .floating-cart {
    right: 14px;
    bottom: 14px;
  }
  .product-shell {
    margin: 20px auto 36px;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-main {
    min-height: 500px;
  }
  .product-info-panel {
    padding: 22px;
  }
  .product-story {
    grid-template-columns: 1fr;
    padding: 40px 22px;
    gap: 18px;
  }
  .symbol-list {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-card img {
    height: 230px;
  }
}
@media (max-width: 540px) {
  .btn {
    padding: 10px 12px;
    font-size: 9px;
  }
  .commerce-ribbon {
    grid-template-columns: 1fr 1fr;
  }
  .commerce-ribbon b {
    font-size: 14px;
  }
  .section,
  .dark-section {
    padding: 36px 14px;
  }
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .product-visual {
    height: 330px;
  }
  .region-filters {
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .region-filters button {
    white-space: nowrap;
  }
  .mural-rail {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .buying-grid article {
    padding: 15px;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .payment-choice,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-grid label.full {
    grid-column: auto;
  }
  .cart-item {
    grid-template-columns: 75px 1fr;
  }
  .cart-item img {
    width: 75px;
    height: 95px;
  }
  .cart-item-total {
    grid-column: 2;
  }
  .gallery-main {
    min-height: 420px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-card img {
    height: 300px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
:root {
  --ink: #030506;
  --ink-2: #070b0c;
  --ink-3: #0b1314;
  --paper: #f4ead9;
  --paper-2: #e8d8bd;
  --gold: #b9873e;
  --gold-2: #e6bb68;
  --gold-dark: #6f4b20;
  --ivory: #f6ecd9;
  --teal: #0b7772;
  --teal-2: #064f4d;
  --red: #c53f51;
  --coral: #e0643e;
  --blue: #1e8eae;
  --muted: #9f9078;
  --line: rgba(214, 170, 82, 0.42);
}
body {
  background:
    linear-gradient(rgba(3, 5, 6, 0.965), rgba(3, 5, 6, 0.965)),
    url("../ornaments/pattern-tile.svg") center top/220px 220px repeat;
}
body:before,
body:after {
  width: 112px;
  opacity: 0.92;
  background-size: 110px auto;
  filter: none;
}
.top-note {
  background: linear-gradient(90deg, #6c471c, #d0a14c, #7b5120);
  color: #120e08;
  border-top: 1px solid #ecc66e;
  border-bottom: 1px solid #624016;
}
.site-nav {
  background: rgba(3, 5, 6, 0.96);
  border-top: 1px solid rgba(230, 187, 104, 0.42);
  border-bottom: 1px solid rgba(230, 187, 104, 0.55);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.42);
}
.site-nav:before,
.site-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  pointer-events: none;
  background: url("../ornaments/pattern-tile.svg") center/74px 74px repeat-x;
  opacity: 0.33;
}
.site-nav:before {
  top: 0;
}
.site-nav:after {
  bottom: 0;
  transform: scaleY(-1);
}
.brand {
  gap: 12px;
}
.nav-links a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}
.ornamental-frame {
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}
.section-frame {
  border-color: rgba(214, 170, 82, 0.48);
  box-shadow: inset 0 0 0 1px rgba(214, 170, 82, 0.08);
}
.section-frame:before,
.section-frame:after {
  opacity: 0.95;
  width: 220px;
  height: 162px;
}
.section,
.dark-section,
.origin-section,
.product-story,
.product-info-panel,
.gallery-main,
.related-card,
.product-card,
.buying-grid article,
.commerce-ribbon {
  position: relative;
}
.section:after,
.dark-section:after,
.origin-section:after,
.product-story:after,
.product-info-panel:after,
.gallery-main:after,
.commerce-ribbon:after {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(214, 170, 82, 0.18);
}
.collection-section,
.buying-section {
  background:
    linear-gradient(
      180deg,
      rgba(244, 234, 217, 0.99),
      rgba(231, 214, 184, 0.99)
    ),
    url("../ornaments/pattern-tile.svg") center/190px 190px repeat;
}
.dark-section,
.site-footer,
.product-info-panel,
.related-card {
  background:
    linear-gradient(rgba(5, 8, 9, 0.96), rgba(5, 8, 9, 0.96)),
    url("../ornaments/pattern-tile.svg") center/200px 200px repeat;
}
.product-card,
.related-card,
.gallery-main,
.product-info-panel {
  border-color: rgba(214, 170, 82, 0.55);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 4px rgba(3, 5, 6, 0.62),
    inset 0 0 0 5px rgba(214, 170, 82, 0.12);
}
.product-card:before,
.related-card:before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(214, 170, 82, 0.18);
  pointer-events: none;
  z-index: 3;
}
.product-card:hover {
  border-color: var(--gold-2);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(230, 187, 104, 0.24);
}
.ornament-divider {
  background-size: 900px 70px;
  height: 52px;
  opacity: 1;
}
.arena-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 8px solid transparent;
  border-image: linear-gradient(90deg, #6f4b20, #e1b963, #6f4b20) 1;
  box-shadow:
    inset 0 0 0 2px #050707,
    inset 0 0 0 4px rgba(230, 187, 104, 0.34),
    inset 0 0 75px rgba(0, 0, 0, 0.42);
}
.arena-frame:before,
.arena-frame:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 185px;
  top: 0;
  background: url("../ornaments/corner-floral.svg") center/contain no-repeat;
  opacity: 0.85;
}
.arena-frame:before {
  left: 0;
}
.arena-frame:after {
  right: 0;
  transform: scaleX(-1);
}
.commerce-ribbon {
  background: linear-gradient(180deg, #090e0f, #050707);
  border: 1px solid rgba(214, 170, 82, 0.52);
}
.commerce-ribbon:before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0.55;
}
.site-footer {
  border-top: 1px solid rgba(214, 170, 82, 0.56);
}
.footer-ornament {
  background-image: url("../ornaments/pattern-tile.svg");
  background-size: 120px 120px;
  opacity: 0.18;
}
@media (max-width: 820px) {
  body:before,
  body:after {
    display: none;
  }
  .arena-frame {
    border-width: 5px;
  }
  .arena-frame:before,
  .arena-frame:after {
    width: 150px;
    height: 110px;
    opacity: 0.62;
  }
}
body {
  background:
    linear-gradient(rgba(4, 7, 7, 0.96), rgba(4, 7, 7, 0.96)),
    url("../ornaments/pattern-tile.svg") center top/220px 220px repeat;
}
body:before,
body:after {
  width: 108px;
  background-image: url("../ornaments/edge-pattern.svg");
  background-size: 108px 504px;
  background-repeat: repeat-y;
  opacity: 0.94;
  filter: none;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.48);
}
.site-nav {
  background:
    linear-gradient(
      90deg,
      rgba(4, 8, 8, 0.98),
      rgba(7, 13, 13, 0.96),
      rgba(4, 8, 8, 0.98)
    ),
    url("../ornaments/pattern-tile.svg") center/180px 180px repeat;
  border-bottom-color: rgba(184, 134, 61, 0.55);
}
.site-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #9f7533 12%,
    #0f8f87 36%,
    #e34d58 50%,
    #0f8f87 64%,
    #9f7533 88%,
    transparent
  );
  opacity: 0.65;
}
.top-note {
  background: #080d0d;
  color: var(--gold-2);
  border-top: 1px solid rgba(184, 134, 61, 0.4);
  border-bottom: 1px solid rgba(184, 134, 61, 0.5);
  box-shadow: inset 0 -1px rgba(15, 143, 135, 0.16);
}
.section-frame,
.product-card,
.product-info-panel,
.gallery-main,
.related-card,
.site-footer,
.commerce-ribbon {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.018),
    var(--shadow);
}
.section-frame:before,
.section-frame:after {
  width: 230px;
  height: 165px;
  opacity: 0.92;
}
.section {
  background:
    linear-gradient(
      180deg,
      rgba(247, 238, 219, 0.985),
      rgba(229, 214, 186, 0.985)
    ),
    url("../ornaments/pattern-tile.svg") center/220px 220px repeat;
}
.dark-section,
.site-footer,
.product-info-panel,
.related-card,
.product-card {
  background:
    linear-gradient(180deg, rgba(8, 14, 14, 0.96), rgba(4, 8, 8, 0.98)),
    url("../ornaments/pattern-tile.svg") center/220px 220px repeat;
}
.product-card:before,
.related-card:before,
.product-info-panel:before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(184, 134, 61, 0.18);
  pointer-events: none;
  z-index: 3;
}
.product-card,
.related-card,
.product-info-panel {
  position: relative;
}
.product-card:hover {
  border-color: #d6a550;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(15, 143, 135, 0.16);
}
.product-visual:after,
.gallery-main:before {
  opacity: 0.14;
  background-size: 220px 220px;
}
.commerce-ribbon {
  background:
    linear-gradient(
      90deg,
      rgba(7, 17, 16, 0.98),
      rgba(4, 9, 9, 0.98),
      rgba(7, 17, 16, 0.98)
    ),
    url("../ornaments/pattern-tile.svg") center/180px 180px repeat;
}
.footer-ornament {
  height: 42px;
  background-size: 800px 64px;
}
.collection-section:after,
.buying-section:after,
.final-cta:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(760px, 70%);
  height: 34px;
  background: url("../ornaments/divider.svg") center/760px 62px no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.origin-section,
.product-story {
  background:
    linear-gradient(
      180deg,
      rgba(245, 232, 207, 0.985),
      rgba(225, 207, 174, 0.985)
    ),
    url("../ornaments/pattern-tile.svg") center/220px 220px repeat;
}
@media (max-width: 1180px) {
  body:before,
  body:after {
    width: 70px;
    background-size: 70px 327px;
  }
}
@media (max-width: 820px) {
  body:before,
  body:after {
    display: none;
  }
}
.brand-with-logo {
  gap: 10px;
  min-width: 0;
  align-items: center;
}
.brand-logo-wrap {
  width: 178px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  background: #f7f3e9;
  border: 1px solid rgba(218, 170, 75, 0.78);
  border-radius: 7px;
  box-shadow:
    inset 0 0 0 2px rgba(11, 20, 20, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.04);
}
.brand-playeras {
  font-family: var(--font-display);
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 900;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
}
.footer-brand .brand-logo-wrap {
  width: 210px;
  height: 68px;
}
.footer-brand .brand-playeras {
  font-size: 13px;
}
.heritage-statements {
  position: relative;
  width: min(var(--max), calc(100% - 150px));
  margin: 34px auto;
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.72fr;
  gap: 14px;
  isolation: isolate;
}
.heritage-statements:before,
.heritage-statements:after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 210px;
  height: 108px;
  background: url("../ornaments/floral-cluster.svg") center/contain no-repeat;
  pointer-events: none;
}
.heritage-statements:before {
  left: -42px;
  bottom: -28px;
}
.heritage-statements:after {
  right: -42px;
  top: -28px;
  transform: scale(-1);
}
.heritage-panel {
  position: relative;
  min-height: 190px;
  padding: 30px 32px;
  border: 1px solid rgba(210, 161, 68, 0.58);
  background:
    linear-gradient(135deg, rgba(6, 10, 10, 0.98), rgba(10, 16, 15, 0.96)),
    url("../ornaments/relief-tile.svg") center/360px 240px repeat;
  color: var(--ivory);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 5px #070a0a,
    inset 0 0 0 6px rgba(191, 139, 53, 0.32),
    0 24px 56px rgba(0, 0, 0, 0.32);
}
.heritage-panel:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 144, 57, 0.26);
  pointer-events: none;
}
.heritage-panel:after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 13px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--teal),
    var(--red),
    var(--gold),
    transparent
  );
  opacity: 0.7;
}
.heritage-panel-primary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 54px;
}
.heritage-eyebrow,
.heritage-panel-compact span {
  display: block;
  color: var(--teal);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 900;
}
.heritage-panel h2 {
  margin: 7px 0 9px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 49px);
  line-height: 1.02;
  font-weight: 500;
  color: var(--ivory);
}
.heritage-panel h2 strong {
  color: var(--gold-2);
  font-weight: 500;
}
.heritage-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 237, 217, 0.68);
  font-size: 13px;
}
.heritage-panel-compact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
  padding: 29px 25px;
}
.heritage-panel-compact b {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.05;
  color: var(--gold-2);
}







.dark-section,
.site-footer,
.product-info-panel,
.related-card,
.product-card,
.commerce-ribbon {
  background-image: linear-gradient(
      180deg,
      rgba(7, 12, 12, 0.94),
      rgba(3, 7, 7, 0.985)
    ),
    url("../ornaments/relief-tile.svg");
  background-size:
    auto,
    360px 240px;
  background-repeat: repeat;
}
.story-showcase:before,
.origin-section:before,
.final-cta:before {
  background-image: url("../ornaments/floral-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.collection-section {
  background-image: linear-gradient(
      180deg,
      rgba(246, 235, 213, 0.985),
      rgba(229, 213, 183, 0.985)
    ),
    url("../ornaments/relief-tile.svg");
  background-size:
    auto,
    360px 240px;
}
.protected-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.protected-media:after {
  content: "TE AMO GUERRERO PLAYERAS  •  VISTA DE CATÁLOGO  •  ";
  position: absolute;
  z-index: 5;
  inset: -35%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 235, 207, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transform: rotate(-28deg);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.protected-media:before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -28deg,
    transparent 0 88px,
    rgba(240, 198, 110, 0.035) 89px 90px
  );
}
.protected-media img,
img[data-protected="true"] {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}
body.catalog-guard {
  user-select: auto;
}
body.catalog-guard .protected-media,
body.catalog-guard .protected-media img {
  user-select: none;
  -webkit-user-select: none;
}
body.protection-active .protected-media img {
  filter: blur(22px) brightness(0.35) !important;
  opacity: 0.2 !important;
}
body.protection-active .protected-media:after {
  color: rgba(248, 235, 207, 0.72);
  font-size: 17px;
}
.screen-shield {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: none;
  place-items: center;
  background: #050808;
  color: var(--ivory);
  text-align: center;
  padding: 30px;
}
.screen-shield.active {
  display: grid;
}
.screen-shield > div {
  width: min(430px, 86vw);
  padding: 30px;
  border: 1px solid var(--gold-dark);
  background:
    linear-gradient(180deg, #0a1211, #050808),
    url("../ornaments/relief-tile.svg") center/360px 240px repeat;
  box-shadow:
    inset 0 0 0 7px #050808,
    inset 0 0 0 8px rgba(199, 144, 57, 0.28);
}
.screen-shield img {
  width: 250px;
  margin: 0 auto 20px;
  padding: 7px 11px;
  background: #f7f3e9;
  border-radius: 6px;
}
.screen-shield b {
  display: block;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 27px;
}
.screen-shield span {
  display: block;
  margin-top: 7px;
  color: rgba(247, 237, 217, 0.66);
  font-size: 12px;
}
.protection-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10002;
  transform: translate(-50%, 16px);
  opacity: 0;
  padding: 10px 16px;
  border: 1px solid rgba(199, 144, 57, 0.55);
  background: rgba(4, 9, 9, 0.96);
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  transition: 0.22s;
}
.protection-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media print {
  body > * {
    display: none !important;
  }
  body:after {
    content: "Contenido protegido · TE AMO GUERRERO PLAYERAS";
    display: grid !important;
    position: fixed !important;
    inset: 0 !important;
    width: auto !important;
    background: #fff !important;
    color: #111 !important;
    place-items: center;
    font:
      700 22px Georgia,
      serif !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 980px) {
  .brand-logo-wrap {
    width: 145px;
    height: 48px;
  }
  .brand-playeras {
    font-size: 10px;
  }
  .heritage-statements {
    width: calc(100% - 48px);
    grid-template-columns: 1fr 1fr;
    margin: 28px auto;
  }
  .heritage-panel-primary {
    grid-column: 1/-1;
  }
  
}
@media (max-width: 650px) {
  .brand-with-logo {
    gap: 5px;
  }
  .brand-logo-wrap {
    width: 122px;
    height: 42px;
    padding: 3px 6px;
  }
  .brand-playeras {
    font-size: 8px;
    letter-spacing: 0.13em;
  }
  .heritage-statements {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .heritage-statements:before,
  .heritage-statements:after {
    width: 135px;
    height: 70px;
  }
  .heritage-panel-primary {
    grid-column: auto;
    padding: 34px 25px;
    min-height: 220px;
  }
  .heritage-panel-compact {
    min-height: 130px;
  }
  .heritage-panel h2 {
    font-size: 34px;
  }
  
  
}

.product-card:hover .product-visual img,
.related-card:hover img,
.gallery-main:hover img {
  transform: none !important;
}
.product-visual {
  padding: 8px 10px;
}
.product-visual img {
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.gallery-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 680px;
  padding: 20px;
}

.related-card img {
  display: block;
  width: 100%;
  height: 280px;
  padding: 10px;
}
@media (max-width: 820px) {
  .gallery-main img {
    max-height: 500px;
    padding: 14px;
  }
  .related-card img {
    height: 230px;
  }
}
@media (max-width: 540px) {
  .related-card img {
    height: 300px;
  }
}

@media (max-width: 700px) {
  .arena-frame:before,
  .arena-frame:after {
    width: 105px !important;
    height: 78px !important;
    opacity: 0.45 !important;
  }
}



@media (max-width: 520px) {
  
}








@media (max-width: 1180px) {
  
}
@media (max-width: 900px) {
  
}
@media (max-width: 700px) {
  
  
}
@keyframes carouselAura {
  to {
    transform: rotate(360deg);
  }
}
@keyframes carouselShirtFloat {
  0%,
  100% {
    transform: translateZ(24px) translateY(0);
  }
  50% {
    transform: translateZ(36px) translateY(-7px);
  }
}
/* V22 · catálogo de lanzamiento con imágenes completas de playera. */
h1, h2, h3 { font-family: var(--font-display); }
.product-gallery { grid-template-columns: minmax(0, 1fr); }
.product-gallery .gallery-main { width: 100%; }
