:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --fg: #f5f0e8;
  --fg-muted: rgba(245,240,232,0.5);
  --accent: #ff5722;
  --accent-dim: rgba(255,87,34,0.15);
  --border: rgba(245,240,232,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0d0d0d; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(12px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 18px;
  border: 1px solid rgba(255,87,34,0.4);
  border-radius: 100px;
  background: rgba(255,87,34,0.07);
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: rgba(255,87,34,0.14); border-color: var(--accent); }
.nav-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-icon-link:hover { color: var(--fg); background: rgba(245,240,232,0.05); }
.cart-badge {
  position: absolute;
  top: 0;
  right: 2px;
  min-width: 16px;
  height: 16px;
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,87,34,0.12) 0%, transparent 70%);
}
.hero-gradient-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 100%, rgba(255,87,34,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-slash {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,87,34,0.04) 50%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 100px;
  background: rgba(255,87,34,0.06);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-accent {
  color: var(--accent);
  position: relative;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pill {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  background: rgba(245,240,232,0.03);
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--accent); color: var(--fg); }

/* Hero email capture */
.hero-capture {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.capture-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.capture-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.capture-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(245,240,232,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.capture-input::placeholder { color: var(--fg-muted); }
.capture-input:focus { border-color: var(--accent); }
.capture-btn {
  padding: 12px 24px;
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.1s;
}
.capture-btn:hover { opacity: 0.88; }
.capture-btn:active { transform: scale(0.97); }
.capture-btn:disabled { opacity: 0.5; cursor: default; }
.capture-note { font-size: 0.82rem; }
.capture-error { color: #ff6b6b; }
.capture-success {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* How It Works */
.how-it-works {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  max-width: 640px;
  margin: 0 auto;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 40px;
  flex-shrink: 0;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,87,34,0.05);
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Collections (3-category showcase) */
.collections {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.collections-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.collections-sub {
  margin-top: 16px;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.cat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.cat-row:last-child { margin-bottom: 0; }
.cat-row-reverse { direction: rtl; }
.cat-row-reverse > * { direction: ltr; }
.cat-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
}
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cat-img-wrap:hover .cat-img { transform: scale(1.03); }
.cat-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.cat-badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,87,34,0.12);
  border: 1px solid rgba(255,87,34,0.3);
  padding: 4px 12px;
  border-radius: 100px;
}
.cat-info { padding: 8px 0; }
.cat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.cat-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cat-body {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.cat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.cat-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.cat-features li::before {
  content: '—';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}
.btn-ghost {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(255,87,34,0.35);
  border-radius: 8px;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,87,34,0.08); border-color: var(--accent); }

/* Why Dropforge */
.why-dropforge {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}
.why-header { text-align: center; margin-bottom: 72px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
}
.why-card:hover { background: var(--bg-2); }
.why-card-accent {
  background: var(--accent-dim);
}
.why-card-accent:hover { background: rgba(255,87,34,0.2); }
.why-stat {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.why-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-body {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 120px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.closing-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 20px;
  background: rgba(255,87,34,0.05);
}
.closing-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 1px;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 16px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 320px;
}
.footer-social { display: flex; gap: 16px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.social-link:hover { color: var(--fg); }
.footer-cols { display: flex; gap: 48px; }
.footer-col { flex: 1; }
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-capture {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,87,34,0.03);
  margin-bottom: 40px;
}
.footer-capture-label {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.footer-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer-value {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── Shop / Product Catalog ─────────────────────────────────────────────── */
.shop-hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.shop-hero-inner { max-width: 640px; margin: 0 auto; }
.shop-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
}
.shop-sub { color: var(--fg-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

.shop-grid-section { padding: 56px 40px; max-width: 1200px; margin: 0 auto; }

.shop-controls { margin-bottom: 40px; }
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--fg); }
.filter-btn.active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: rgba(255,87,34,0.3); transform: translateY(-2px); }
.product-card-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.product-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-card-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.3;
  flex: 1;
}
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; }
.product-card-cta { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.product-add-btn {
  margin: 0 16px 16px;
  padding: 10px;
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.product-add-btn:hover { opacity: 0.85; }
.product-add-btn:disabled { opacity: 0.5; cursor: default; }

/* Shop empty state */
.shop-empty {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--border);
  border-radius: 16px;
}
.shop-empty-icon { color: var(--fg-muted); margin-bottom: 24px; }
.shop-empty-title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.shop-empty-body { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 32px; }
.shop-empty-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #0d0d0d;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.shop-empty-cta:hover { opacity: 0.85; }

/* ── Product Detail Page ─────────────────────────────────────────────────── */
.pdp { padding: 60px 40px 100px; }
.pdp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.pdp-gallery { border-radius: 16px; overflow: hidden; background: var(--bg-2); aspect-ratio: 1; }
.pdp-main-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
}
.pdp-info { position: sticky; top: 100px; }
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.pdp-back:hover { color: var(--fg); }
.pdp-breadcrumb { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.pdp-breadcrumb .pdp-back { margin-bottom: 0; }
.pdp-back-dnd { color: var(--accent) !important; font-size: 0.8rem; }
.pdp-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pdp-title { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.pdp-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.pdp-desc { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 40px; }
.pdp-actions { display: flex; gap: 12px; margin-bottom: 40px; }
.pdp-add-btn {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid rgba(255,87,34,0.4);
  border-radius: 8px;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pdp-add-btn:hover { background: var(--accent-dim); border-color: var(--accent); }
.pdp-add-btn:disabled { opacity: 0.5; cursor: default; }
.pdp-buy-now {
  flex: 1;
  padding: 14px 24px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: #0d0d0d;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.pdp-buy-now:hover { opacity: 0.88; }
.pdp-meta { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--border); padding-top: 32px; }
.pdp-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.pdp-meta-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Checkout ────────────────────────────────────────────────────────────── */
.checkout-page { padding: 60px 40px 100px; }
.checkout-page-inner { max-width: 720px; margin: 0 auto; }
.checkout-title { font-size: 2rem; letter-spacing: -0.03em; margin-bottom: 8px; }
.checkout-sub { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 48px; }
.checkout-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.checkout-item-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
  flex-shrink: 0;
}
.checkout-item-info { flex: 1; }
.checkout-item-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.checkout-item-meta { font-size: 0.8rem; color: var(--fg-muted); }
.checkout-item-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; }
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 32px;
}
.checkout-total-label { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--fg-muted); }
.checkout-total-value { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.checkout-proceed-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}
.checkout-proceed-btn:hover { opacity: 0.88; }
.checkout-proceed-btn:disabled { opacity: 0.5; cursor: default; }
.checkout-secure { text-align: center; margin-top: 16px; font-size: 0.78rem; color: var(--fg-muted); }

/* ── Success / Cancel pages ──────────────────────────────────────────────── */
.order-status-page { padding: 80px 40px; }
.order-status-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.order-status-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.order-success-icon { background: rgba(255,87,34,0.15); border: 1px solid rgba(255,87,34,0.3); color: var(--accent); }
.order-cancel-icon { background: rgba(245,240,232,0.05); border: 1px solid var(--border); color: var(--fg-muted); }
.order-status-title { font-size: 2rem; letter-spacing: -0.03em; margin-bottom: 16px; }
.order-status-body { color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.order-status-email { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); }
.order-status-back {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.order-status-back:hover { border-color: var(--accent); color: var(--fg); }

/* Responsive */
@media (max-width: 900px) {
  .cat-row { grid-template-columns: 1fr; gap: 36px; }
  .cat-row-reverse { direction: ltr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { gap: 32px; }
  .pdp-inner { grid-template-columns: 1fr; gap: 40px; }
  .pdp-info { position: static; }
  .checkout-page, .order-status-page { padding: 40px 24px 80px; }
  .shop-hero { padding: 60px 24px 40px; }
  .shop-grid-section { padding: 40px 24px; }
}
@media (max-width: 680px) {
  .capture-form { flex-direction: column; }
  .footer-form { flex-direction: column; }
  .nav-link { display: none; }
}
@media (max-width: 600px) {
  .hero-content { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .footer-inner { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .how-it-works, .collections, .why-dropforge, .closing { padding: 80px 24px; }
  .cat-row { margin-bottom: 56px; }
}
/* ============================================================
   Conversion Stack: Urgency Bar · Social Proof Toast · Exit Modal
   ============================================================ */

/* Urgency Bar */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(90deg, #1a0a00 0%, #2b1200 50%, #1a0a00 100%);
  border-bottom: 1px solid rgba(255,87,34,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 20px;
  font-size: 0.8rem;
  color: var(--fg);
  flex-wrap: wrap;
}
.urgency-bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-bar-divider { color: var(--fg-muted); }
.urgency-bar-code {
  background: rgba(255,87,34,0.18);
  color: #ff8c5a;
  padding: 1px 7px;
  border-radius: 4px;
  font-family: 'Syne', monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.urgency-bar-countdown { color: #ff8c5a; font-size: 0.75rem; }
.urgency-bar-cta {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.urgency-bar-cta:hover { opacity: 0.8; }
.urgency-bar-close {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.urgency-bar-close:hover { color: var(--fg); background: rgba(255,255,255,0.06); }

/* Nav z-index bump so it sits above urgency bar when scrolled */
.nav { z-index: 150; }

/* Social Proof Toast */
.sp-toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 500;
  pointer-events: none;
}
.sp-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #1c1c1c;
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  pointer-events: all;
  animation: sp-slide-in 0.35s cubic-bezier(0.22,0.61,0.36,1) both;
}
.sp-toast.sp-toast-exit {
  animation: sp-slide-out 0.3s ease forwards;
}
@keyframes sp-slide-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes sp-slide-out {
  from { opacity: 1; transform: translateY(0);    }
  to   { opacity: 0; transform: translateY(12px); }
}
.sp-toast-icon {
  color: #ff5722;
  flex-shrink: 0;
  margin-top: 2px;
}
.sp-toast-body { flex: 1; min-width: 0; }
.sp-toast-msg {
  font-size: 0.82rem;
  color: var(--fg);
  line-height: 1.4;
  margin: 0;
}
.sp-toast-time {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin: 2px 0 0;
}
.sp-toast-close {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.15s;
  flex-shrink: 0;
}
.sp-toast-close:hover { color: var(--fg); }

/* Exit Intent Modal */
.ei-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: ei-fade-in 0.25s ease both;
}
@keyframes ei-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.ei-modal {
  background: #1a1a1a;
  border: 1px solid rgba(255,87,34,0.25);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  position: relative;
  padding: 40px 36px 36px;
  animation: ei-pop-in 0.3s cubic-bezier(0.22,0.61,0.36,1) both;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
@keyframes ei-pop-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}
.ei-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--fg-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.ei-close:hover { color: var(--fg); background: rgba(255,255,255,0.06); }
.ei-icon { text-align: center; margin-bottom: 12px; }
.ei-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.2;
}
.ei-sub {
  text-align: center;
  font-size: 0.87rem;
  color: var(--fg-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.ei-sub strong { color: #ff8c5a; }
.ei-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.ei-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.ei-input:focus { border-color: rgba(255,87,34,0.5); }
.ei-submit {
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.ei-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.ei-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.ei-note { font-size: 0.8rem; text-align: center; margin-top: 4px; }
.ei-note-error { color: #ff6b6b; }
.ei-success { color: #6edb8f; font-size: 0.92rem; text-align: center; padding: 10px 0; }
.ei-skip { text-align: center; margin-top: 10px; }
.ei-skip-btn {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 0.77rem;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(245,240,232,0.2);
  transition: color 0.15s;
}
.ei-skip-btn:hover { color: var(--fg-muted); }

@media (max-width: 600px) {
  .urgency-bar { font-size: 0.75rem; padding: 8px 12px; }
  .sp-toast { min-width: 220px; max-width: 280px; }
  .sp-toast-wrap { bottom: 16px; left: 12px; }
  .ei-modal { padding: 32px 20px 28px; }
  .ei-title { font-size: 1.25rem; }
}
