/* KickInk — Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #0a0a0a;
  --chalk: #f5f0eb;
  --ember: #e8432a;
  --ember-glow: rgba(232, 67, 42, 0.15);
  --smoke: #2a2a2a;
  --ash: #8a8578;
  --bone: #d4cdc4;
  --card-bg: #111111;
  --card-border: rgba(255,255,255,0.06);
  --transition: 0.3s ease;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--chalk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ──── NAV ──── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand .brand-mark {
  color: var(--ember);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--ember);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--ember);
  color: white;
}

.btn-primary:hover {
  background: #d13a24;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  padding: 0.5rem 0;
}

.btn-ghost:hover {
  color: var(--ember);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ──── HERO ──── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 2rem;
  display: inline-block;
  border: 1px solid rgba(232, 67, 42, 0.3);
  padding: 0.5rem 1rem;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

h1 span { display: block; }
h1 .line-tattoos { color: var(--chalk); }
h1 .line-for {
  color: var(--ash);
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: 0.05em;
  margin: 0.3em 0;
}
h1 .line-shoes {
  color: transparent;
  -webkit-text-stroke: 2px var(--chalk);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--bone);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ember);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.hero::after {
  content: 'INK';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
}

/* ──── DIVIDER ──── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--smoke), transparent);
  margin: 0 2rem;
}

/* ──── SECTION HEADINGS ──── */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  line-height: 1.1;
}

/* ──── HOW IT WORKS ──── */
.how-section {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  padding: 2.5rem;
  border: 1px solid var(--card-border);
  position: relative;
  transition: border-color var(--transition);
}

.step:hover { border-color: rgba(232, 67, 42, 0.3); }

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--ember-glow);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--bone);
  line-height: 1.6;
  font-weight: 300;
}

/* ──── SHOE PICKER ──── */
.shoes-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(232, 67, 42, 0.02), transparent);
}

.shoes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.shoe-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.shoe-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.shoe-card:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
}

.shoe-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.shoe-card:hover::before {
  transform: scaleX(1);
}

.shoe-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.shoe-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.shoe-card .shoe-brand {
  font-size: 0.75rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.shoe-card .shoe-desc {
  font-size: 0.85rem;
  color: var(--bone);
  margin-top: 0.75rem;
  line-height: 1.5;
  font-weight: 300;
}

/* ──── FEATURED GALLERY ──── */
.gallery-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.gallery-header .right a {
  color: var(--ember);
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity var(--transition);
}

.gallery-header .right a:hover {
  opacity: 0.8;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.design-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.design-card:hover {
  border-color: rgba(232, 67, 42, 0.3);
  transform: translateY(-4px);
}

.design-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.design-card-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: invert(1) brightness(0.95);
  transition: transform 0.4s ease;
}

.design-card:hover .design-card-img img {
  transform: scale(1.08);
}

.design-card-info {
  padding: 1.25rem;
}

.design-card-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

.design-card-artist {
  font-size: 0.8rem;
  color: var(--ash);
  font-weight: 300;
}

.design-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ember);
}

.design-card-style {
  font-size: 0.7rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ──── STYLES (Design Library) ──── */
.styles-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(232, 67, 42, 0.03), transparent);
}

.styles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
}

.style-card {
  padding: 3rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
}

.style-card:hover {
  background: var(--card-bg);
}

.style-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.style-card:hover::before {
  transform: scaleX(1);
}

.style-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.style-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.style-card p {
  color: var(--ash);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
}

/* ──── WHY SECTION ──── */
.why-section {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.why-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--ash);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.why-item .accent {
  width: 24px;
  height: 2px;
  background: var(--ember);
  margin-bottom: 1rem;
}

/* ──── DESIGNER CTA ──── */
.designer-cta {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, rgba(232, 67, 42, 0.08) 0%, transparent 50%);
  position: relative;
}

.designer-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.designer-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.designer-cta h2 em {
  font-style: normal;
  color: var(--ember);
}

.designer-cta p {
  color: var(--bone);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

.designer-perks {
  list-style: none;
}

.designer-perks li {
  font-size: 0.9rem;
  color: var(--bone);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.designer-perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ember);
  flex-shrink: 0;
}

/* ──── CLOSING / CTA ──── */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
}

.closing-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto;
}

.closing-text em {
  font-style: normal;
  color: var(--ember);
}

.closing-sub {
  margin-top: 1.5rem;
  color: var(--ash);
  font-size: 1rem;
  font-weight: 300;
}

.closing-ctas {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──── WAITLIST MODAL ──── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--smoke);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
  max-width: 440px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--ash);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal p {
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ash);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--chalk);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--ember);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8578' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-message {
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
}

.form-message.success { color: #4ade80; display: block; }
.form-message.error { color: var(--ember); display: block; }

/* ──── FOOTER ──── */
footer {
  padding: 4rem 2rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left .footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer-left .footer-sub {
  color: var(--ash);
  font-size: 0.8rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--ash);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--chalk); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  font-size: 0.75rem;
  color: var(--ash);
}

/* ──── SHOP PAGE ──── */
.shop-page {
  padding: 7rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: none;
}

.shop-page.active { display: block; }

.shop-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-chip {
  padding: 0.5rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-chip:hover {
  border-color: rgba(232, 67, 42, 0.5);
  color: var(--chalk);
}

.filter-chip.active {
  background: var(--ember);
  border-color: var(--ember);
  color: white;
}

.shop-count {
  font-size: 0.85rem;
  color: var(--ash);
  margin-left: auto;
}

/* ──── DESIGN DETAIL MODAL ──── */
.design-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.design-detail-overlay.open { display: flex; }

.design-detail {
  background: var(--smoke);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-height: 90vh;
}

.design-detail-img {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 300px;
}

.design-detail-img img {
  width: 80%;
  height: auto;
  filter: invert(1) brightness(0.95);
}

.design-detail-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.design-detail-body .back-btn {
  background: none;
  border: none;
  color: var(--ash);
  font-size: 0.8rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
}

.design-detail-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.design-detail-body .detail-artist {
  font-size: 0.9rem;
  color: var(--ash);
  margin-bottom: 1rem;
}

.design-detail-body .detail-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 1.5rem;
}

.design-detail-body .detail-desc {
  font-size: 0.9rem;
  color: var(--bone);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex: 1;
}

.detail-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.detail-tag {
  font-size: 0.7rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.detail-shoes {
  margin-bottom: 1.5rem;
}

.detail-shoes-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ash);
  margin-bottom: 0.5rem;
}

.detail-shoes-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.detail-shoe-chip {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  background: rgba(232, 67, 42, 0.1);
  color: var(--ember);
  font-weight: 500;
}

/* ──── SUPPLIES SECTION ──── */
.supplies-section {
  padding: 5rem 2rem;
}
.supplies-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.supplies-intro {
  color: var(--bone);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 0 3rem;
  line-height: 1.7;
}
.supplies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.supply-category {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1.75rem;
}
.supply-cat-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.supply-cat-icon {
  font-size: 1.25rem;
}
.supply-cat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.supply-cat-desc {
  font-size: 0.8rem;
  color: var(--ash);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.supply-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.supply-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: var(--chalk);
  gap: 0.75rem;
  transition: background var(--transition), border-color var(--transition);
}
.supply-item:hover {
  background: rgba(232,67,42,0.07);
  border-color: rgba(232,67,42,0.2);
}
.supply-item-info {
  flex: 1;
}
.supply-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.supply-item-styles {
  font-size: 0.72rem;
  color: var(--ash);
}
.supply-item-cta {
  font-size: 0.72rem;
  color: var(--ember);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.supplies-note {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--ash);
  text-align: center;
}

/* ──── COMING SOON: DECALS ──── */
.coming-soon-section {
  padding: 5rem 2rem;
}
.coming-soon-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--ember);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}
.coming-soon-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.coming-soon-sub {
  color: var(--bone);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.coming-soon-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--bone);
  line-height: 1.5;
}
.cs-icon {
  color: var(--ember);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.cs-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.cs-input {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 0.8rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--chalk);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.cs-input:focus {
  border-color: var(--ember);
}
.cs-input::placeholder {
  color: var(--ash);
}
.cs-form-msg {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  min-height: 1.2em;
}
.cs-form-msg.success { color: #5cb85c; }
.cs-form-msg.error { color: var(--ember); }
.cs-disclaimer {
  font-size: 0.72rem;
  color: var(--ash);
  margin-top: 0.5rem;
}

/* ──── PAGE TRANSITIONS ──── */
.page { display: none; }
.page.active { display: block; }

/* ──── RESPONSIVE ──── */
@media (max-width: 1024px) {
  .designs-grid { grid-template-columns: repeat(3, 1fr); }
  .shoe-picker { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .shoe-picker { grid-template-columns: repeat(2, 1fr); }
  .designs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 2rem; }
  .hero::after { display: none; }
  h1 .line-shoes { -webkit-text-stroke: 1.5px var(--chalk); }
  .designer-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .design-detail { grid-template-columns: 1fr; }
  .design-detail-img { min-height: 200px; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-inner { flex-direction: column; }
  .supplies-grid { grid-template-columns: 1fr; }
  .coming-soon-features { text-align: left; }
}

@media (max-width: 480px) {
  .shoe-picker { grid-template-columns: 1fr; }
  .designs-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

/* ──── STENCIL SELECTOR (shoe size + placement) ──── */
.stencil-section {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
}

.stencil-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ash);
  margin-bottom: 0.5rem;
}

.size-note {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

/* Size grid — all US sizes 1–13 including half sizes */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.size-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--bone);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.6rem;
  min-width: 44px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-align: center;
}

.size-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.size-btn.active {
  background: rgba(232, 67, 42, 0.15);
  border-color: var(--ember);
  color: #fff;
}

/* Placement area chips */
.placement-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.placement-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ash);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.placement-chip:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  color: var(--chalk);
}

.placement-chip.active {
  background: rgba(232, 67, 42, 0.12);
  border-color: var(--ember);
  color: #fff;
}

/* Download button in detail */
.detail-download-btn {
  transition: opacity 0.2s, transform 0.1s !important;
}

.detail-download-btn:not(:disabled):hover {
  opacity: 0.88 !important;
}

.detail-download-btn:not(:disabled):active {
  transform: scale(0.98);
}

/* Sell Your Art nav → /upload link */
.nav-sell-link {
  color: rgba(232, 67, 42, 0.85);
}
.nav-sell-link:hover {
  color: var(--ember);
}

@media (max-width: 540px) {
  .size-grid { gap: 0.3rem; }
  .size-btn { min-width: 38px; padding: 0.4rem 0.45rem; font-size: 0.75rem; }
}
