/* === Collection / Category page styles === */
.coll-hero {
  padding: 80px 40px 50px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.coll-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.coll-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.coll-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}
.coll-hero p.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb reuse style from product page but define fresh if needed */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
}
.breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex; gap: 10px; align-items: center;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* Category grid of sub-categories */
.subcat-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.subcat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: all var(--transition);
  display: block;
  text-decoration: none;
}
.subcat-card.empty { opacity: 0.55; }
.subcat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
}
.subcat-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: all var(--transition);
}
.subcat-card:hover .subcat-img { opacity: 0.8; transform: scale(1.04); }
.subcat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.9) 100%);
}
.subcat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: white;
}
.subcat-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.15;
  color: white;
}
.subcat-info .nick {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.subcat-info .count {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.subcat-card.empty .subcat-info .count { color: var(--muted); }

/* Catalog / Filter bar */
.coll-catalog {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 40px 120px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}
.coll-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}
.filter-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.filter-box h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.filter-opts label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  transition: color var(--transition);
}
.filter-opts label:hover { color: var(--text); }
.filter-opts input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
}
.filter-opts .count {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}
.filter-clear {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-clear:hover { border-color: var(--gold); color: var(--gold); }

.coll-main .coll-count {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coll-main .coll-count strong { color: var(--text); }
.coll-main .coll-sort select {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.coll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

/* SEO copy section */
.coll-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  border-top: 1px solid var(--line);
  color: #d8d0c0;
  font-size: 16px;
  line-height: 1.85;
}
.coll-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 18px;
}
.coll-copy h3 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--text);
}
.coll-copy p { margin-bottom: 18px; }
.coll-copy ul { margin: 0 0 22px 22px; }
.coll-copy li { margin-bottom: 8px; color: var(--muted); }
.coll-copy a { color: var(--gold); }

/* Empty state */
.coll-empty {
  max-width: 600px;
  margin: 60px auto;
  text-align: center;
  padding: 60px 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.coll-empty h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 14px;
}
.coll-empty p { color: var(--muted); margin-bottom: 20px; }
.coll-empty .cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 900px) {
  .coll-hero { padding: 50px 20px 36px; }
  .subcat-grid { padding: 40px 20px; }
  .coll-catalog { grid-template-columns: 1fr; padding: 30px 20px 80px; gap: 24px; }
  .coll-sidebar { position: static; }
  .coll-copy { padding: 40px 20px; }
  .breadcrumb-inner { padding: 0 20px; }
}
