/* ========== STORE NAV ========== */
.store-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.store-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--fg);
  text-decoration: none;
}

.store-nav-links {
  display: flex;
  gap: 2rem;
}

.store-nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.store-nav-link:hover {
  color: var(--accent);
}

/* ========== LANDING PAGE NAV (injected into hero) ========== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--fg);
  text-decoration: none;
}

.landing-nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-nav-link:hover {
  color: var(--accent);
}

/* ========== CATALOG HEADER ========== */
.catalog-header {
  padding: 10rem 2rem 5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.catalog-header-inner {
  max-width: 700px;
  margin: 0 auto;
}

.catalog-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.catalog-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 1rem;
}

.catalog-sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ========== CATALOG GRID ========== */
.catalog-grid-section {
  padding: 5rem 2rem 8rem;
  background: var(--bg);
}

.catalog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  transition: transform 0.25s ease;
  outline: 2px solid transparent;
}

.product-card:hover {
  outline-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-2px);
}

.product-card-swatch {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(240, 236, 228, 0.07);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.product-card-category {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(240, 236, 228, 0.35);
}

.product-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-color {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

/* ========== PRODUCT DETAIL ========== */
.product-detail {
  padding-top: 5rem;
  min-height: 100vh;
}

.product-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 5rem);
}

.product-visual {
  position: sticky;
  top: 5rem;
  height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
}

.product-visual-swatch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-visual-mark {
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(240, 236, 228, 0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

.product-visual-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(240, 236, 228, 0.3);
}

.product-visual-color-bar {
  height: 4px;
  width: 100%;
}

.product-info {
  padding: 4rem 3.5rem;
  border-left: 1px solid rgba(201, 169, 110, 0.08);
}

.product-info-breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.product-info-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.product-info-breadcrumb a:hover {
  color: var(--accent);
}

.product-info-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1rem;
}

.product-info-color-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-info-color-label span {
  color: var(--fg);
}

.product-color-variants {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.2s;
}

.color-dot.active,
.color-dot:hover {
  border-color: var(--accent);
}

.product-info-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.product-info-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.product-size-section {
  margin-bottom: 2.5rem;
}

.product-size-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: 0.6rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.size-btn:hover,
.size-btn.selected {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.06);
  color: var(--accent);
}

/* ========== BUTTONS ========== */
.btn-buy {
  display: block;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  margin-bottom: 1rem;
}

.btn-buy:hover {
  opacity: 0.88;
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  margin-top: 2rem;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== HERO SHOP CTA ========== */
.hero-shop-cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-shop-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.product-info-shipping {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.product-details {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 2rem;
}

.product-details-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.product-details-list {
  list-style: none;
  padding: 0;
}

.product-details-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  letter-spacing: 0.02em;
}

.product-details-list li:last-child {
  border-bottom: none;
}

/* ========== ORDER SUCCESS ========== */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.success-inner {
  max-width: 560px;
}

.success-mark {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.success-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.success-product {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.success-email {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.success-sub {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .product-visual {
    position: relative;
    top: 0;
    height: 50vw;
    min-height: 300px;
  }

  .product-visual-mark {
    font-size: 8rem;
  }

  .product-info {
    padding: 2.5rem 1.5rem 3rem;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
  }
}

@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .store-nav {
    padding: 1rem 1.25rem;
  }

  .catalog-header {
    padding: 8rem 1.5rem 3rem;
  }

  .catalog-grid-section {
    padding: 3rem 0 5rem;
  }
}
