/* ── Shop Page Styles ─────────────────────────────────────────────── */

/* Etsy notice */
.etsy-notice { background: var(--color-surface); padding-block: var(--space-5); }
.notice-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: color-mix(in oklab, var(--color-gold) 10%, var(--color-bg));
  border: 1px solid color-mix(in oklab, var(--color-gold) 30%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  flex-wrap: wrap;
}
.notice-bar svg { flex-shrink: 0; color: var(--color-gold); }
.notice-bar p { max-width: none; flex: 1; }

/* Products grid */
.products-section { padding-block: clamp(var(--space-12), 7vw, var(--space-20)); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-8);
}

/* Product card */
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card--soon { opacity: 0.85; }

/* Product image area */
.product-img { position: relative; }
.product-cover-art {
  width: 100%; aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-3);
  padding: var(--space-8);
  color: #fff;
}
.product-cover-art.case-mgmt {
  background: linear-gradient(145deg, #152c41 0%, #1e3f5c 50%, #2a6080 100%);
}
.product-cover-art.adhd {
  background: linear-gradient(145deg, #1a3050 0%, #2a4a6e 50%, #3a6080 100%);
}
.product-cover-art.nursing {
  background: linear-gradient(145deg, #0f2235 0%, #1a3355 50%, #2a5070 100%);
}
.cover-art-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}
.cover-art-brand {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Badge */
.product-badge {
  position: absolute; top: var(--space-3); right: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.product-badge.available { background: var(--color-gold); color: var(--color-navy); }
.product-badge.soon      { background: color-mix(in oklab, var(--color-navy) 60%, #fff); color: #fff; border: 1px solid color-mix(in oklab, #fff 20%, transparent); }

/* Product info */
.product-info { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-type {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-display);
}
.product-stars { color: var(--color-gold); font-size: var(--text-sm); }
.product-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}
[data-theme='dark'] .product-name { color: var(--color-text); }
.product-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }
.product-specs {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-1) var(--space-4);
}
.product-specs li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-left: var(--space-3);
  position: relative;
}
.product-specs li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--color-gold);
}
.product-actions { margin-top: auto; padding-top: var(--space-4); }
.product-btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-section { background: var(--color-surface); padding-block: clamp(var(--space-16), 8vw, var(--space-20)); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.faq-item h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}
[data-theme='dark'] .faq-item h3 { color: var(--color-text); }
.faq-item p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; line-height: 1.7; }
.faq-item a { color: var(--color-gold); text-decoration: underline; }
