/* ─── SHOP HERO ────────────────────────────────────────────── */
.shop-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 149, 106, 0.15) 0%, transparent 60%),
    var(--bg);
  padding: 7rem 4rem 5rem;
  text-align: center;
}
.shop-hero-inner { max-width: 700px; margin: 0 auto; }
.shop-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--deep-brown);
  margin-bottom: 1.25rem;
}
.shop-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── LISTINGS ─────────────────────────────────────────────── */
.listings { padding: 5rem 4rem; background: var(--bg); }
.listings-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 6rem; }

.listing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 4rem;
  background: var(--cream);
  border-radius: 1.5rem;
  border: 1px solid rgba(160, 96, 58, 0.12);
  box-shadow: 0 8px 40px rgba(42, 26, 14, 0.06);
}
.listing-card-alt { background: var(--bg-alt); }
.listing-card-alt .listing-content { order: -1; }

/* Images */
.listing-images { display: flex; flex-direction: column; gap: 1rem; }
.listing-img-main { position: relative; }
.listing-img-main .img-note {
  position: absolute;
  bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(250, 243, 234, 0.9);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.listing-img-gallery { display: flex; gap: 0.75rem; }

.product-img {
  border-radius: 0.75rem;
  flex-shrink: 0;
}

/* Image placeholders — replace with real product photos */
.amethyst-necklace-img {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, #C8A8E8 0%, #9471C8 40%, #6B4A9C 100%);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.rose-bracelet-img {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, #F5D0D8 0%, #E8A0B0 40%, #C47B8A 100%);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.black-tourmaline-img {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, #4A3A2E 0%, #2A1A0E 50%, #0A0604 100%);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.amethyst-gem-close, .amethyst-hemp-cord,
.rose-quartz-chips, .rose-wrist-shot,
.tourmaline-close, .tourmaline-chain {
  width: 140px; height: 140px;
  border-radius: 0.75rem;
}
.amethyst-gem-close { background: linear-gradient(135deg, #D4BCF0, #8B6AB4); }
.amethyst-hemp-cord  { background: linear-gradient(135deg, #C4A870, #8B7040); }
.rose-quartz-chips   { background: linear-gradient(135deg, #F0C4CC, #D4858A); }
.rose-wrist-shot     { background: linear-gradient(135deg, #FADCE0, #D490A0); }
.tourmaline-close    { background: linear-gradient(135deg, #2A1A0E, #0A0604); }
.tourmaline-chain    { background: linear-gradient(135deg, #C0C0C0, #808080); }

/* Product content */
.listing-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.listing-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.listing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 2.5rem;
}
.listing-blocks { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.listing-block h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep-brown);
  margin-bottom: 0.6rem;
}
.listing-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.listing-block.specs ul {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.listing-block.specs li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.listing-block.specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.etsy-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-etsy {
  display: inline-block;
  background: #F16421;
  color: white;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-etsy:hover { background: #d4531a; transform: translateY(-1px); }
.etsy-note { font-size: 0.82rem; color: var(--text-muted); }

/* ─── SETUP GUIDE ──────────────────────────────────────────── */
.setup-guide {
  background: var(--bg-alt);
  padding: 6rem 4rem;
}
.setup-inner { max-width: 800px; margin: 0 auto; }
.setup-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--deep-brown);
  margin-bottom: 1.25rem;
}
.setup-inner > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.guide-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.guide-step h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
}
.guide-step p, .guide-step li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.guide-step ul { padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }

/* ─── COPY SECTION ─────────────────────────────────────────── */
.copy-section {
  background: var(--bg);
  padding: 6rem 4rem;
}
.copy-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }
.copy-listing {
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: 1px solid rgba(160, 96, 58, 0.12);
  position: relative;
}
.copy-listing h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}
.copy-btn {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.copy-btn:hover { background: var(--terracotta-light); }
.copy-display { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .shop-hero, .listings, .setup-guide, .copy-section { padding: 4rem 2rem; }
  .listing-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .listing-card-alt .listing-content { order: 0; }
}
@media (max-width: 600px) {
  .shop-hero, .listings, .setup-guide, .copy-section { padding: 3rem 1.5rem; }
  .listing-card { padding: 2rem 1.5rem; }
}