@font-face {
  font-family: "RevelationGothic";
  src: url("Converted_WebP_Images/fonts/Texturina_60pt-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #b8860b;
  --red: #7c0a02;
  --surface: #0a0a0a;
  --muted: #b5b5b5;
  --radius: 0;
}

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

body {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(184, 134, 11, 0.08), transparent 40%),
    var(--black);
  color: var(--white);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}


.announcement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(90deg, rgba(232, 189, 75, 0.12), rgba(124, 10, 2, 0.14));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.announcement__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.announcement__content .eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
}

.announcement__actions {
  display: flex;
  gap: 0.5rem;
}

.announcement .cta.ghost.compact {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
}

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

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

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

[hidden] {
  display: none !important;
}

.mobile-only {
  display: none;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.4);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 48px;
  width: auto;
}

.logo.small {
  height: 36px;
}

.brand-name {
  font-family: "RevelationGothic", "Times New Roman", serif;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 0.25rem;
  transition: color 200ms ease, border-color 200ms ease;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta.cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
}

.cart-count {
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.cta.primary {
  background: var(--gold);
  color: var(--black);
}

.cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.45), 0 0 15px rgba(184, 134, 11, 0.2);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta.full {
  width: 100%;
  justify-content: center;
}

.cta.secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.mobile-icon {
  display: none;
}

.desktop-text {
  display: inline;
}

.cta.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 85vh;
  display: grid;
  place-items: center;
  text-align: left;
  padding: 5rem 2rem;
  overflow: hidden;
  z-index: 10000;
  /* Sit above the global film grain */
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .hero-slide {
    background-position: center center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.5) 90%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  display: grid;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.65);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.display-font {
  font-family: "RevelationGothic", "Times New Roman", serif;
  letter-spacing: 0.08em;
  /* Increased for legibility */
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
  /* Better contrast */
}

h1.display-font {
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
}

.lede {
  color: var(--muted);
  max-width: 720px;
}

.bullet {
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__meta {
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.grid.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  display: grid;
  gap: 1rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--gold);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.3),
    0 0 40px rgba(255, 69, 0, 0.1);
  animation: coronaPulse 2s infinite alternate;
}

.product-card.in-view {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--gold);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.3),
    0 0 40px rgba(255, 69, 0, 0.1);
  animation: coronaPulse 2s infinite alternate;
}

@keyframes coronaPulse {
  0% {
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.3),
      0 0 40px rgba(255, 69, 0, 0.1);
  }

  100% {
    box-shadow:
      0 0 30px rgba(212, 175, 55, 0.5),
      0 0 60px rgba(255, 69, 0, 0.3),
      inset 0 0 10px rgba(212, 175, 55, 0.1);
  }
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 3 / 4;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 200ms ease;
}

.product-image img.hover {
  opacity: 0;
}

.product-card:hover .product-image img.hover,
.product-card:focus-within .product-image img.hover {
  opacity: 1;
}

.product-card:hover .product-image img.default,
.product-card:focus-within .product-image img.default {
  opacity: 0;
}

.product-body {
  display: grid;
  gap: 0.35rem;
}

.product-title {
  font-size: 1.3rem;
}

.product-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-price {
  font-weight: 700;
}

.product-price .muted {
  color: var(--muted);
  font-weight: 400;
}

.pill-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill.accent {
  border-color: var(--gold);
  color: var(--gold);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
}

.list__title {
  font-weight: 700;
}

.list__body,
.small {
  color: var(--muted);
}

.stance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stance__item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.stance__title {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.story__panel {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.16), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(184, 134, 11, 0.4);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.panel__image {
  background: url("assets/images/products/armor-of-god-design.webp") center/cover;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.philosophy-grid,
.narrative-grid,
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.philosophy-card,
.vibe-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.85));
  padding: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.narrative-card {
  border: 1px solid rgba(184, 134, 11, 0.35);
  background: linear-gradient(160deg, rgba(184, 134, 11, 0.12), rgba(0, 0, 0, 0.9));
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.narrative-card header {
  display: grid;
  gap: 0.2rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.narrative-list {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  padding-left: 0;
}

.narrative-list strong {
  color: var(--gold);
  font-weight: 700;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.lookbook-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.lookbook-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
}

.about .copy-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.trust {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(184, 134, 11, 0.12), rgba(0, 0, 0, 0.92));
  padding: 1.25rem;
  display: grid;
  gap: 0.5rem;
  min-height: 160px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.notify {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.notify__content {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 12px;
}

.notify-form {
  margin: 1.25rem 0;
}

.notify-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.notify-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.notify__panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  align-items: start;
  border-radius: 12px;
}

.notify__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: rgba(184, 134, 11, 0.16);
  border: 1px solid rgba(184, 134, 11, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}



.size-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: start;
}

.chip-row.compact {
  gap: 0.5rem;
}

.chip-row.compact .chip {
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
}

.vibe {
  background: radial-gradient(circle at 10% 0%, rgba(124, 10, 2, 0.15), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(184, 134, 11, 0.12), transparent 35%),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.bundle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(184, 134, 11, 0.16), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(184, 134, 11, 0.35);
  padding: 2rem;
}

.bundle__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bundle__art {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

body.no-scroll {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1000;
}

.product-modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  width: min(1100px, 95vw);
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  padding: 1.5rem;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.modal-gallery {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.modal-gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  background: #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.thumbnail {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumbnail img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.thumbnail.active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.modal-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.modal-nav:hover,
.modal-nav:focus-visible {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.modal-nav.prev {
  left: 12px;
}

.modal-nav.next {
  right: 12px;
}

.modal-nav.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.selector-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: center;
}

.selector-group {
  display: grid;
  gap: 0.35rem;
}

.selector-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.chip-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.chip.active,
.chip:hover,
.chip:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  height: 38px;
  /* Slightly shorter to match chips better */
  padding: 0;
  /* Remove padding to let buttons fill height */
  width: fit-content;
}

.quantity button {
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  width: 32px;
  /* Reduced from 42px */
  height: 100%;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
  padding: 0;
}

.quantity button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.quantity span {
  min-width: 24px;
  /* Reduced from 30px */
  text-align: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}

.modal-details {
  display: grid;
  gap: 0.65rem;
}

.modal-details .product-price {
  font-size: 1.1rem;
}

@media (max-width: 960px) {
  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    width: 95vw;
  }
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1990;
}

.cart-backdrop.hidden {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  width: min(360px, 92vw);
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  padding: 1.25rem;
  z-index: 2000;
  display: grid;
  gap: 1rem;
}

.cart-drawer.hidden {
  display: none;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 8px;
}

.cart-items {
  display: grid;
  gap: 0.75rem;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.cart-item__info {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.5rem;
  align-items: center;
}

.cart-item__info img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #000;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.summary-row.total span:last-child {
  color: var(--gold);
  font-weight: 800;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2100;
}

.checkout-modal.hidden {
  display: none;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.checkout-dialog {
  position: relative;
  width: min(960px, 95vw);
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
}

.checkout-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.checkout-summary,
.checkout-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 10px;
  display: grid;
  gap: 0.75rem;
}

.checkout-items {
  display: grid;
  gap: 0.75rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.checkout-row__info {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.checkout-row__info img {
  width: 64px;
  height: 84px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #000;
}

.checkout-row__price {
  font-weight: 700;
  color: var(--gold);
}

.checkout-totals {
  display: grid;
  gap: 0.35rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.status-chip.ready {
  background: rgba(184, 134, 11, 0.08);
  border-color: rgba(184, 134, 11, 0.4);
  color: var(--gold);
}

.status-chip.pending {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.status-chip.error {
  background: rgba(255, 86, 86, 0.08);
  border-color: rgba(255, 86, 86, 0.4);
  color: #ff8a8a;
}

.input-label {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-helpers {
  display: grid;
  gap: 0.5rem;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.checkout-status {
  margin-top: -0.35rem;
  color: var(--white);
}

.checkout-status.success {
  color: var(--gold);
}

.checkout-status.error {
  color: #ff6b6b;
}

.checkout-status.warning {
  color: #f1c27d;
}

.input-error {
  border-color: #ff6b6b !important;
  color: #ff8a8a;
}

.input-hint {
  font-size: 0.95rem;
  color: #ff8a8a;
}

.cta.loading {
  opacity: 0.7;
  pointer-events: none;
}

.shipping-progress {
  display: grid;
  gap: 0.35rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(184, 134, 11, 0.3), var(--gold));
  transition: width 200ms ease;
}

@media (max-width: 720px) {
  .cart-drawer {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  display: grid;
  gap: 0.5rem;
  max-width: 420px;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--muted);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .mobile-only {
    display: flex;
  }

  .top-bar {
    grid-template-columns: auto 1fr auto;
    padding: 0.75rem 1.25rem;
  }

  .header-actions {
    position: relative;
    z-index: 101;
    gap: 0.25rem;
    /* Tighter gap for icons */
    display: flex;
    align-items: center;
  }

  .header-actions .cta {
    padding: 0.5rem;
    font-size: 1.2rem;
    background: transparent;
    border-color: transparent;
    min-width: 44px;
    /* Touch target size */
    min-height: 44px;
    display: grid;
    place-items: center;
  }

  .header-actions .cta:hover,
  .header-actions .cta:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .desktop-text {
    display: none;
    /* Hide text on mobile */
  }

  .mobile-icon {
    display: block;
    /* Show icons on mobile */
  }

  .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0;
  }

  .logo {
    font-size: 1.5rem;
    text-align: center;
    height: 40px;
    /* Ensure logo fits nicely */
  }

  .hamburger-icon {
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    /* Darker background */
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 100;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    height: 100dvh;
    /* Full viewport height */
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.5rem;
    border-bottom: none;
  }

  .hero {
    padding: 6rem 1.25rem 4rem;
    min-height: 60vh;
    align-content: center;
  }

  h1.display-font {
    font-size: 2.5rem;
  }

  .hero__content {
    padding: 1.5rem;
  }

  .checkout-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    /* Safe area padding */
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .announcement {
    display: none;
    /* Hide announcement on mobile to save space, or keep it small */
  }

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

  .cart-drawer {
    width: 100%;
    right: 0;
    top: 0;
    height: 100dvh;
    /* Dynamic viewport height */
    border-radius: 0;
    border: none;
    grid-template-rows: auto 1fr auto;
    /* Explicit rows for header, items, footer */
  }

  .cart-items {
    max-height: none;
    /* Let flex/grid handle it */
    overflow-y: auto;
    padding-bottom: 2rem;
  }

  .modal-dialog {
    width: 100%;
    height: 100dvh;
    /* Dynamic viewport height */
    border-radius: 0;
    border: none;
    overflow-y: auto;
    max-height: 100dvh;
  }

  .modal-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 4rem;
    /* Space for bottom controls if any */
  }

  .checkout-modal {
    padding-bottom: 0;
    align-items: flex-start;
    /* Allow scrolling from top */
    overflow-y: auto;
    height: 100dvh;
    background: var(--surface);
    /* Ensure background covers full screen */
  }

  .checkout-dialog {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Visual Polish & Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(12px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Coming Soon Section */
.section.coming-soon {
  position: relative;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(100%);
}

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

.coming-soon-badge {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
}

/* Button Sheen Animation */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}

.cta:hover::after {
  animation: sheen 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sheen {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* Product Reviews */
.modal-reviews {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: grid;
  gap: 1rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
  font-weight: 600;
}

/* Bundle CTA */
.bundle-cta-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.bundle-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.size-selector-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.bundle-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.size-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.size-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.size-chip.selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: bold;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cta.large.full-width {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  gap: 0.5rem;
  text-decoration: none;
  /* Metallic Gold Gradient */
  background: linear-gradient(135deg, #b8860b 0%, #D4AF37 25%, #F2D06B 50%, #D4AF37 75%, #b8860b 100%);
  background-size: 200% auto;
  color: #000;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s ease;
  border: 1px solid #F2D06B;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  font-weight: 800;
  font-size: 1.25rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta.large.full-width:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  border-color: #fff;
  color: #000;
}

.cta.large.full-width .muted-text {
  font-size: 0.9rem;
  opacity: 0.85;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  text-shadow: none;
}

/* PDP Reviews */
.reviews-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-section .review-header {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.reviews-section .review-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-section .review-item:last-child {
  border-bottom: none;
}

/* Mission Page Styles */
.section.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story__panel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.15);
  /* Subtle gold glow */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel__image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.story__panel:hover .panel__image {
  transform: scale(1.03);
}

.panel__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 2;
}

.stance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.stance__item {
  display: grid;
  gap: 0.25rem;
}

.stance__title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.1);
  transform: translateY(-5px);
}

.copy-block {
  display: grid;
  gap: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.copy-block strong {
  color: var(--gold);
}

@media (max-width: 960px) {
  .section.two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .panel__image {
    height: 400px;
  }

  .stance {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
}

/* Corona Animation */
@keyframes corona-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.story__panel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 60%, rgba(184, 134, 11, 0.3) 80%, rgba(184, 134, 11, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.story__panel:hover::after {
  opacity: 1;
  animation: corona-spin 4s linear infinite;
}

.story__panel:hover {
  box-shadow: 0 0 50px rgba(184, 134, 11, 0.3);
  border-color: var(--gold);
}

/* Ensure content is visible */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Young LA Style Product Card Redesign */
.product-card {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 4 / 5;
  /* Slightly taller portrait */
  border-radius: 4px;
  background: #1a1a1a;
  width: 100%;
  overflow: hidden;
}

.product-body {
  padding: 0 !important;
  gap: 0.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-title {
  font-family: var(--font-body);
  /* Switch to body font for cleaner look */
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

.product-price {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin: 0;
}

/* Adjust grid gap */
.grid.products {
  gap: 2rem 1rem;
  /* Vertical gap 2rem, Horizontal gap 1rem */
}

/* Bundle Selectors */
.bundle-grid-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bundle-selector-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bundle-selector-row label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bundle-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
}

.bundle-select:focus {
  border-color: var(--gold);
  outline: none;
}

.bundle-select option {
  background-color: #000;
  color: #fff;
}

/* Modal Backdrop */
.bundle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.bundle-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Bundle Success Modal */
.bundle-success-dialog {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--gold);
  box-shadow: 0 0 40px rgba(184, 134, 11, 0.2);
  padding: 2.5rem;
  border-radius: 12px;
  width: min(400px, 90vw);
  display: grid;
  gap: 1.5rem;
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bundle-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.bundle-success-actions {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.5rem;
}

.text-success {
  color: #4ade80 !important;
}

/* =========================================
   Top Bar Polish & Mobile Menu Overrides
   ========================================= */

/* Premium Top Bar Styling */
.top-bar {
  padding: 0.75rem 2rem;
  /* Slightly slimmer */
  background: rgba(5, 5, 5, 0.85);
  /* Darker, more premium */
  backdrop-filter: blur(12px);
  /* Stronger blur */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtler border */
  height: 70px;
}

.brand-name {
  font-size: 1.1rem;
  /* Refined size */
  letter-spacing: 0.12em;
}

.logo {
  height: 42px;
  /* Slightly smaller for elegance */
}

/* Navigation Links - Desktop */
.nav-links {
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
  border-bottom: none;
  /* Remove old border hover */
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  gap: 1rem;
}

.cta.cart {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  height: 40px;
  transition: all 0.2s ease;
}

.cta.cart:hover {
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.1);
}

.cart-count {
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  padding: 0.1rem 0.4rem;
  border: none;
}

/* Mobile Menu Toggle */
#mobile-menu-toggle {
  display: none;
  /* Hidden on desktop */
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .top-bar {
    padding: 0.75rem 1.25rem;
    grid-template-columns: auto 1fr auto;
    /* Logo - Spacer - Actions */
  }

  .brand-name {
    display: block;
    /* Show on mobile */
    font-size: 0.95rem;
    /* Slightly smaller than desktop */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Show Mobile Toggle */
  #mobile-menu-toggle {
    display: block;
    order: 3;
    /* Ensure it's last */
    margin-left: 0.5rem;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    /* Push to right */
    gap: 0.5rem;
  }

  .cta.cart .desktop-text {
    display: none;
    /* Icon only on mobile */
  }

  .cta.cart {
    padding: 0.5rem;
    width: 40px;
    justify-content: center;
  }

  .mobile-icon {
    display: block;
  }

  /* Mobile Navigation Overlay */
  .nav-links {
    position: fixed;
    top: 70px;
    /* Below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #050505;
    /* Deep black */
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for links */
  .nav-links.open a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open a:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links.open a:nth-child(7) {
    transition-delay: 0.4s;
  }
}

/* Ensure body doesn't scroll when menu is open */
body.no-scroll {
  overflow: hidden;
}

/* =============================
   CHECKOUT UX ENHANCEMENTS
   Consumer Psychology Optimizations
   ============================= */

/* Collapsed Notes Section */
.checkout-notes-details {
  margin: 1rem 0;
}

.checkout-notes-toggle {
  cursor: pointer;
  list-style: none;
  padding: 0.75rem 0;
  color: var(--muted);
  transition: color 0.2s;
  user-select: none;
}

.checkout-notes-toggle:hover {
  color: var(--white);
}

.checkout-notes-toggle::marker,
.checkout-notes-toggle::-webkit-details-marker {
  display: none;
}

.checkout-notes-content {
  padding-top: 0.75rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRIMARY CTA - PROMINENT & URGENT */
.checkout-cta-main {
  margin-top: 1.5rem !important;
  padding: 1.25rem 1.75rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.35rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4),
    0 0 20px rgba(184, 134, 11, 0.2) !important;
  border: 2px solid var(--gold) !important;
}

.checkout-cta-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.checkout-cta-main:hover::before {
  left: 100%;
}

.checkout-cta-main .cta-text {
  font-size: 1.1rem;
  letter-spacing: 0.025em;
}

.checkout-cta-main .cta-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Trust Signals */
.checkout-trust-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 0.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Helper Buttons - Minimized */
.checkout-helpers-details {
  margin: 1.5rem 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.checkout-helpers-toggle {
  cursor: pointer;
  list-style: none;
  text-align: center;
  color: var(--muted);
  transition: color 0.2s;
  user-select: none;
}

.checkout-helpers-toggle:hover {
  color: var(--white);
}

.checkout-helpers-toggle::marker,
.checkout-helpers-toggle::-webkit-details-marker {
  display: none;
}

.checkout-helpers {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  animation: slideDown 0.3s ease-out;
}

.cta.compact {
  padding: 0.65rem 1rem !important;
  font-size: 0.875rem !important;
}

/* Status Chip Enhancement */
.status-chip {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.12), rgba(0, 200, 0, 0.08));
  border: 1px solid rgba(0, 255, 0, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-align: center;
  color: rgba(200, 255, 200, 0.95);
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .checkout-cta-main {
    font-size: 1rem !important;
    padding: 1.15rem 1.5rem !important;
  }

  .checkout-trust-signals {
    gap: 1rem;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  .checkout-helpers {
    flex-direction: column;
  }
}

/* =============================
   STANDALONE PRODUCT PAGE
   ============================= */
.product-page {
  padding-top: 4rem;
  min-height: 100vh;
  background: var(--black);
}

.product-page .section {
  padding-top: 2rem;
}

.product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-gallery .main-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 3/4;
  object-fit: contain;
  background: #000;
}

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  /* Firefox */
}

.product-thumbnails::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.pdp-thumbnail {
  width: 80px;
  height: 100px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
  background: #000;
  /* Add background for letterboxing */
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pdp-thumbnail:hover {
  opacity: 0.8;
  border-color: var(--gold);
}

.pdp-thumbnail.active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

.thumbnail:hover {
  opacity: 0.8;
  border-color: var(--gold);
}

.thumbnail.active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.product-info .eyebrow {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.product-info .product-price {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
}

.product-description {
  color: var(--muted);
  line-height: 1.7;
  margin: 1rem 0;
}

.product-info .quote {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.reviews-section {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.review-header {
  font-family: "RevelationGothic", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.review-item {
  margin-bottom: 1.5rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.review-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.review-author {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}

/* Chip Selection Styles for PDP */
#pdp-size-options .chip {
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

#pdp-size-options .chip:hover {
  border-color: var(--gold);
}

#pdp-size-options .chip.selected {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .product-page {
    padding-top: 2rem;
  }

  .product-gallery {
    position: static;
  }

  .product-info h1 {
    font-size: 2.5rem;
  }
}