/* STORE PAGE STYLES — OneOf1 Drop 01 */

/* NAV BAR */
.store-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1A1A1A;
}

.store-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-nav-brand .brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.store-nav-brand .brand-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
}

.store-nav-brand .brand-motto {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.store-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.store-nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.store-nav-links a:hover {
  color: var(--fg);
}

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

.store-nav-cta {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 8px 20px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.store-nav-cta:hover {
  background: var(--gold-dim) !important;
  color: var(--bg) !important;
}

/* PRODUCT HERO */
.product-hero {
  padding: 120px 60px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(212,175,55,0.03) 0%, transparent 70%),
    var(--bg);
}

.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Product image */
.product-image-wrap {
  display: flex;
  justify-content: center;
}

.product-image-inner {
  position: relative;
  width: 480px;
  max-width: 100%;
}

.product-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: #0A0A0A;
}

.drop-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  padding: 12px 16px;
}

.drop-number {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.drop-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Product info */
.product-info {
  max-width: 540px;
}

.product-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.product-drop-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
  border: 1px solid #2A2A2A;
  padding: 4px 10px;
}

.product-status {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.product-status.available {
  color: var(--green-accent);
}

.product-status.available::before {
  background: var(--green-accent);
  box-shadow: 0 0 6px rgba(0, 230, 118, 0.5);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.product-origin {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.product-description {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 440px;
}

/* Product details table */
.product-details {
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  margin-bottom: 36px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #141414;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-key {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.detail-val {
  font-size: 13px;
  color: var(--fg);
  font-weight: 400;
}

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

/* Buy section */
.buy-section {
  margin-bottom: 32px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  padding: 18px 40px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
}

.btn-buy:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.btn-buy-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.btn-buy:hover .btn-buy-arrow {
  transform: translateX(4px);
}

.buy-note {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
  margin-top: 12px;
  text-align: center;
}

/* Philosophy strip */
.philosophy-strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid #1A1A1A;
}

.phi-dash {
  color: var(--gold);
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}

.philosophy-strip p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
}

/* Store philosophy section */
.store-philosophy {
  padding: 100px 60px;
  border-top: 1px solid #1A1A1A;
  background: var(--bg-alt);
}

.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.philosophy-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.philosophy-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.philosophy-col h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.philosophy-col p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-image-inner {
    width: 360px;
    margin: 0 auto;
  }
  .product-info {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .store-nav { padding: 0 30px; }
  .store-nav-links { display: none; }
  .product-hero { padding: 100px 30px 60px; }
  .philosophy-body { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .product-photo { aspect-ratio: 3/4; }
  .product-title { font-size: 48px; }
  .btn-buy { padding: 16px 24px; font-size: 18px; }
}

/* FOOTER */
.footer-back-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-back-link:hover {
  color: var(--gold);
}