/* catalog.css — Product catalog + shared nav styles */

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bg-dark);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-light);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(61, 43, 31, 0.06);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(139, 58, 47, 0.08);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  margin-left: 8px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-light);
}

.nav-cta.active {
  background: var(--bg-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--fg);
  cursor: pointer;
  padding: 4px 8px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span {
  margin: 0 6px;
}

/* CATALOG HERO */
.cat-hero {
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 60%, #E8D0B8 100%);
  padding: 80px 40px 100px;
}

.cat-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.cat-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 14px;
}

.cat-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.cat-desc {
  font-size: 1rem;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 660px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--fg-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: rgba(74, 103, 65, 0.12);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* SECTION LABEL */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 40px 120px;
  background: var(--bg-dark);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section .section-label {
  color: var(--accent-warm);
}

.pricing-header {
  margin-bottom: 56px;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 14px;
}

.pricing-note {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.5);
}

.pricing-note a {
  color: var(--accent-warm);
  text-decoration: none;
}

.pricing-note a:hover { text-decoration: underline; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pricing-card {
  background: rgba(255, 248, 240, 0.05);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(255, 248, 240, 0.14);
}

.pricing-card-custom {
  background: linear-gradient(135deg, rgba(139, 58, 47, 0.15) 0%, rgba(255, 248, 240, 0.04) 100%);
  border-color: rgba(196, 107, 90, 0.25);
}

.pricing-card-top {
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
  padding-bottom: 16px;
}

.size-name {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.size-dims {
  font-size: 12px;
  color: rgba(255, 248, 240, 0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.size-desc {
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.6);
  line-height: 1.65;
  flex: 1;
}

.size-best-for {
  font-size: 0.82rem;
  color: rgba(255, 248, 240, 0.45);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.best-for-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 600;
}

.best-for-value {
  color: rgba(255, 248, 240, 0.65);
  font-size: 0.85rem;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 248, 240, 0.4);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.wholesale-price {
  color: var(--accent-warm);
}

.price-sub {
  font-size: 11px;
  color: rgba(255, 248, 240, 0.35);
}

.price-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 248, 240, 0.1);
}

.price-custom {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-warm);
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--cream);
}

.btn-primary:hover { background: var(--accent-light); }

.btn-secondary {
  background: rgba(255, 248, 240, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 248, 240, 0.15);
}

.btn-secondary:hover { background: rgba(255, 248, 240, 0.16); }

.btn-ghost {
  background: transparent;
  color: var(--fg-light);
  border: 1px solid var(--border);
}

.btn-ghost:hover { background: rgba(61, 43, 31, 0.06); }

/* WHOLESALE BLOCK */
.wholesale-block {
  background: rgba(212, 149, 107, 0.1);
  border: 1px solid rgba(212, 149, 107, 0.2);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wholesale-icon {
  font-size: 1.5rem;
  color: var(--accent-warm);
  flex-shrink: 0;
  padding-top: 2px;
}

.wholesale-text h4 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.wholesale-text p {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.6);
  line-height: 1.7;
}

.wholesale-text a {
  color: var(--accent-warm);
  text-decoration: none;
}

.wholesale-text a:hover { text-decoration: underline; }

/* OTHER PRODUCTS */
.other-products {
  padding: 100px 40px;
  background: var(--bg);
}

.other-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.other-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.other-card:hover {
  border-color: var(--accent-warm);
  box-shadow: 0 4px 20px rgba(139, 58, 47, 0.08);
}

.other-card h4 {
  font-size: 1.2rem;
  color: var(--bg-dark);
}

.other-card p {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.6;
  flex: 1;
}

.other-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-top: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 248, 240, 0.7);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; }
  .nav-links.nav-open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; border-radius: 10px; margin-left: 0; }

  .cat-hero { padding: 60px 24px 80px; }
  .pricing-section { padding: 80px 24px 100px; }
  .other-products { padding: 80px 24px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }

  .wholesale-block { flex-direction: column; padding: 28px 24px; }
}

@media (max-width: 480px) {
  .nav-inner { height: 56px; }
}
