
:root {
  --navy: #0d1b2e;
  --navy-mid: #152540;
  --navy-light: #1e3354;
  --burgundy: #6b1a1a;
  --burgundy-bright: #8b2020;
  --gold: #c9a84c;
  --gold-light: #e2c278;
  --gold-dim: #8a6f2e;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --white: #ffffff;
  --text-dark: #1a1208;
  --text-mid: #3d2e10;
  --text-muted: #7a6a50;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body-serif: 'Lora', Georgia, serif;
  --ff-sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2.5rem, 6vw, 4.5rem);
  --space-2xl: clamp(4rem, 9vw, 8rem);

  --max-w: 1200px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body-serif);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--navy);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}


.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section-label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}


.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.8em 2em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  text-align: center;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  outline: none;
}

.btn-primary {
  background: var(--burgundy-bright);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible { background: #a02828; }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  padding: 0.85em 2.4em;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  color: var(--navy);
}

.btn-sm { font-size: 0.82rem; padding: 0.65em 1.6em; margin-top: var(--space-md); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 46, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo:hover { color: var(--white); }
.logo-icon {
  font-size: 1.4em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.75);
  padding: 0.2em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  outline: none;
}


.hero {
  position: relative;
  min-height: clamp(500px, 90vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 28, 0.88) 0%,
    rgba(107, 26, 26, 0.55) 50%,
    rgba(10, 15, 28, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-block: var(--space-xl);
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  margin-bottom: var(--space-md);
  text-transform: capitalize;
}

.hero-sub {
  font-family: var(--ff-body-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(245, 240, 232, 0.88);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.hero-cta-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.65);
  animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.intro-band {
  background: var(--burgundy);
  border-top: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
  padding-block: var(--space-lg);
}

.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
}

.intro-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .intro-divider { display: none; }
  .intro-band-inner { gap: var(--space-md); }
}


.section-dark {
  background: var(--navy);
  color: var(--cream);
  padding-block: var(--space-2xl);
}

.section-dark h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.section-dark .section-intro {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(245,240,232,0.8);
  max-width: 780px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
  padding-block: var(--space-2xl);
}

.section-light h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.section-light .section-intro {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-mid);
  max-width: 780px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}


.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.character-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.character-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.character-color-bar {
  height: 5px;
  background: var(--accent);
}

.character-body {
  padding: var(--space-md) var(--space-md) var(--space-md);
}

.character-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.character-token {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.character-body h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.character-color-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.character-body p:not(.character-color-label) {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
}

.characters-note {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.characters-note p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
}

.characters-note strong { color: var(--gold-light); }


.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

.how-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: sticky;
  top: 100px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.how-step {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(107, 26, 26, 0.18);
}

.how-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  opacity: 0.55;
}

.step-content h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.tips-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.tip-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--cream);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}

.tip-card h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.tip-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.7;
}


.board-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 860px) {
  .board-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.board-img-wrap {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,168,76,0.2);
}

.board-rooms h3,
.board-weapons h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.board-rooms > p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.75);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.rooms-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin-bottom: var(--space-lg);
}

.rooms-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: rgba(245,240,232,0.82);
}

.room-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.board-weapons {
  margin-bottom: var(--space-md);
}

.weapons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: var(--space-md);
}

.weapons-list li {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: rgba(245,240,232,0.8);
  background: rgba(201,168,76,0.08);
  padding: 0.25em 0.7em;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.2);
}

.board-note {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  font-style: italic;
  line-height: 1.65;
  border-left: 2px solid var(--gold-dim);
  padding-left: 0.75rem;
}


.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.rule-block {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 4px solid var(--burgundy);
  transition: box-shadow 0.2s;
}

.rule-block:hover {
  box-shadow: 0 8px 32px rgba(107,26,26,0.12);
}

.rule-block h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.rule-block p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.72;
}


.editions-intro {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-bottom: 0;
}

.editions-intro h2 {
  margin-bottom: var(--space-md);
}


.edition-section { padding-block: var(--space-2xl); }

.edition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 860px) {
  .edition-grid {
    grid-template-columns: 1fr 1fr;
  }
  .edition-grid-reverse .edition-img-wrap { order: 2; }
  .edition-grid-reverse .edition-text { order: 1; }
}

.edition-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.25);
}

.section-dark .edition-img-wrap {
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.15);
}

.edition-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--burgundy-bright);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 999px;
}

.edition-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-light .edition-text h2 { color: var(--navy); }
.section-dark .edition-text h2 { color: var(--white); }

.edition-text p {
  line-height: 1.78;
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
}

.section-light .edition-text p { color: var(--text-mid); }
.section-dark .edition-text p { color: rgba(245,240,232,0.78); }


.cta-band {
  background: var(--burgundy);
  border-top: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
  padding-block: var(--space-xl);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-text p {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.78);
  max-width: 520px;
}


.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-block: var(--space-xl);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-name { letter-spacing: 0.03em; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-family: var(--ff-sans);
  font-size: 0.83rem;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}

.footer-nav a:hover, .footer-nav a:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.footer-copy {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}


:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .main-nav { gap: 0.8rem; }
  .hero-cta-row { flex-direction: column; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .how-visual { position: static; aspect-ratio: 16/9; }
  .rooms-list { grid-template-columns: 1fr; }
}






.shop-hero {
  position: relative;
  min-height: clamp(320px, 50vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.shop-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 15, 28, 0.95) 0%,
    rgba(107, 26, 26, 0.5) 55%,
    rgba(10, 15, 28, 0.55) 100%
  );
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 740px;
}

.shop-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
  margin-bottom: var(--space-md);
}


.shop-filter-bar {
  background: var(--burgundy);
  border-bottom: 2px solid var(--gold-dim);
  padding-block: 0.85rem;
}

.shop-filter-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.filter-pill {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 999px;
  padding: 0.3em 0.95em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.filter-pill:hover, .filter-pill:focus-visible {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  outline: none;
}


.shop-section { padding-block: var(--space-2xl); }


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.product-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}


.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.section-dark .product-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
}

.section-light .product-card {
  background: var(--white);
  border: 1px solid rgba(107,26,26,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.product-img-short {
  aspect-ratio: 16/9;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--burgundy-bright);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28em 0.75em;
  border-radius: 999px;
}

.product-badge.new {
  background: var(--gold);
  color: var(--navy);
}

.product-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.product-body h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-dark .product-body h3 { color: var(--white); }
.section-light .product-body h3 { color: var(--navy); }

.product-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.section-dark .product-desc { color: rgba(245,240,232,0.72); }
.section-light .product-desc { color: var(--text-mid); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(201,168,76,0.12);
}

.section-light .product-footer {
  border-top-color: rgba(107,26,26,0.1);
}

.product-price {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.section-light .product-price { color: var(--burgundy-bright); }

.product-footer .btn-sm {
  margin-top: 0;
  white-space: nowrap;
}


.shop-how-to-order { padding-block: var(--space-2xl); }

.order-steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.order-step {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 4px solid var(--burgundy);
}

.order-step-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--burgundy);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.order-step h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.order-step p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.order-contact-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--gold);
}

.order-contact-row p {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.order-contact-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .shop-filter-inner { gap: 0.4rem; }
  .product-footer { flex-direction: column; align-items: flex-start; }
  .order-contact-row { flex-direction: column; align-items: flex-start; }
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
