/* ═══════════════════════════════════════════
   VELORA CRYSTALS — shop-style.css
   Shop page specific styles
═══════════════════════════════════════════ */

/* ─── SHOP HERO ─── */
.shop-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--deep);
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.4) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.shop-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 65%);
  top: 20%; right: 15%;
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 1.1s var(--ease-smooth) forwards;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

.coming-soon-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-glow 2s ease-in-out infinite;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(123,94,167,0.5);
}

.shop-hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.shop-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(195,168,224,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
  letter-spacing: 0.03em;
}

.shop-hero-social-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.shop-hero-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

.btn-social:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
}

.btn-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── COLLECTIONS PREVIEW ─── */
.shop-collections {
  padding: 100px 48px;
  background: var(--petal);
}

.shop-collections-header {
  text-align: center;
  margin-bottom: 64px;
}

.shop-collections-header .section-title { color: var(--deep); }

.shop-collections-header p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  max-width: 480px;
  margin: 14px auto 0;
}

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

.shop-collection {
  display: flex;
  flex-direction: column;
}

.shop-collection-visual {
  aspect-ratio: 3/4;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
}

.shop-collection-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s var(--ease-smooth);
}

.shop-collection:hover .shop-collection-bg { transform: scale(1.04); }

.shop-collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,16,40,0.15) 0%, rgba(26,16,40,0.5) 100%);
}

.shop-collection-items {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.shop-item-thumb {
  width: 44px; height: 44px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
}

.shop-collection-info {
  background: white;
  border: 1px solid rgba(201,168,76,0.1);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 28px 26px;
  flex: 1;
}

.shop-collection-label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.shop-collection-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 10px;
}

.shop-collection-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 18px;
}

.shop-collection-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.shop-example-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amethyst);
  background: var(--amethyst-pale);
  border: 1px solid rgba(123,94,167,0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

.shop-collection-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--soft);
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
  line-height: 1.6;
}

.shop-collection-note::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ─── SOCIAL CTA STRIP ─── */
.shop-social-strip {
  background: var(--amethyst-pale);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-social-strip::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.shop-social-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.shop-social-strip .section-eyebrow { color: var(--gold); }

.shop-social-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 16px;
}

.shop-social-title em {
  font-style: italic;
  color: var(--amethyst);
}

.shop-social-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 40px;
}

.shop-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 40px;
}

.btn-social-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(123,94,167,0.3);
  color: var(--mid);
  background: white;
  box-shadow: 0 2px 8px rgba(26,16,40,0.06);
}

.btn-social-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,16,40,0.12);
}

/* Platform-specific hover colours */
.btn-social-lg.social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  color: white;
}

.btn-social-lg.social-facebook:hover {
  background: #1877F2;
  border-color: transparent;
  color: white;
}

.btn-social-lg.social-tiktok:hover {
  background: #010101;
  border-color: transparent;
  color: white;
}

.btn-social-lg.social-youtube:hover {
  background: #FF0000;
  border-color: transparent;
  color: white;
}

.btn-social-lg svg {
  width: 20px; height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.shop-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}

.shop-back-link:hover { color: var(--mid); }

.shop-back-link::before {
  content: '←';
  font-size: 14px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .shop-hero { padding: 120px 28px 64px; }
  .shop-collections { padding: 72px 28px; }
  .shop-grid { grid-template-columns: 1fr; gap: 24px; }
  .shop-collection-visual { aspect-ratio: 4/3; }
  .shop-social-strip { padding: 64px 28px; }
  .shop-social-grid { grid-template-columns: 1fr; max-width: 300px; }
}

@media (max-width: 560px) {
  .shop-hero-socials { flex-direction: column; align-items: center; }
}

/* ─── Collection note link ─── */
.note-link {
  color: var(--amethyst);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

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