/* ── Store Hero — Coming Soon ────────────────────────────────────── */
.store-hero {
  background: url('images/products-page.jpg') center center / cover no-repeat;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(147, 112, 219, 0.45);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  text-align: center;
  backdrop-filter: blur(12px);
  max-width: 360px;
  width: 100%;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.coming-soon-float {
  animation: float 3s ease-in-out infinite;
}

.coming-soon-text {
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #7fff00;
  text-shadow:
    0 0 12px rgba(127, 255, 0, 0.6),
    0 0 30px rgba(127, 255, 0, 0.3);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.01em;
}

.coming-soon-sub {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
}

/* ── Products Section ───────────────────────────────────────────── */
.products-section { padding: 4rem 0 6rem; }

.product-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.product-row:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .product-row { grid-template-columns: 1fr 1fr; }
  .product-row.reverse .product-img { order: 2; }
  .product-row.reverse .product-info { order: 1; }
}

/* ── Product Image Placeholder ──────────────────────────────────── */
.product-img {
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.product-img.candle   { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.product-img.handsoap { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.product-img.bathsoap { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.product-img.diffuser { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.product-img.spray    { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }

/* ── Product Info ───────────────────────────────────────────────── */
.product-tag {
  display: inline-block;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  margin-bottom: 1rem;
}

.product-info h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}

.product-info > p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.product-details {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.product-detail::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.product-price {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.product-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-faint);
}

.product-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ── Active nav link ────────────────────────────────────────────── */
.nav-active { color: var(--accent) !important; font-weight: 700; }

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .store-hero { min-height: 200px; padding: 2rem 1rem; }
  .coming-soon-card { padding: 1.5rem 1.75rem; }
  .products-section { padding: 2.5rem 0 4rem; }
  .product-row { gap: 1.75rem; padding: 2.5rem 0; }
  .product-img { max-width: 100%; }
  .product-actions { flex-direction: column; }
  .product-actions a { text-align: center; }
}

@media (max-width: 480px) {
  .store-hero { min-height: 160px; }
  .product-row { gap: 1.25rem; padding: 2rem 0; }
  .product-price { font-size: 1.4rem; }
  .product-info h2 { font-size: clamp(1.2rem, 6vw, 1.6rem); }
}
