/* CATALOG-SPECIFIC STYLES (extends style.css) */

/* Catalog Hero */
.catalog-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 140px 24px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(184, 149, 106, 0.18);
}
.catalog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.catalog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
  line-height: 1.05;
}
.catalog-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.78);
  max-width: 640px;
  margin: 0 auto;
}

/* Filters bar */
.filters-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(184, 149, 106, 0.18);
  padding: 24px 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(184, 149, 106, 0.35);
  color: rgba(245, 239, 230, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  color: var(--cream);
  border-color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Product Grid */
.product-grid-wrap {
  background: var(--navy);
  padding: 80px 24px 100px;
}
.product-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 48px;
}

.product-card {
  background: rgba(245, 239, 230, 0.02);
  border: 1px solid rgba(184, 149, 106, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 149, 106, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a1320;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-info {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 239, 230, 0.72);
  margin: 0 0 18px;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(184, 149, 106, 0.85);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.product-meta span:nth-child(even) {
  color: rgba(184, 149, 106, 0.4);
}
.product-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.product-cta:hover {
  background: #d4ad7a;
  transform: translateY(-1px);
}

/* Custom CTA */
.custom-cta-section {
  background: linear-gradient(180deg, var(--navy) 0%, #0a1320 100%);
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid rgba(184, 149, 106, 0.18);
}
.custom-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.custom-cta-inner .star-mark {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 24px;
}
.custom-cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 20px;
  line-height: 1.1;
}
.custom-cta-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.78);
  margin: 0 0 36px;
}

/* Mobile */
@media (max-width: 720px) {
  .catalog-hero {
    padding: 110px 20px 60px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-info {
    padding: 24px;
  }
  .filters-bar {
    padding: 16px;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Lookbook CTA in catalog hero */
.catalog-hero-cta {
  margin-top: 2.5rem;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: transparent;
  color: #B8956A;
  border: 1px solid #B8956A;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background: #B8956A;
  color: #0E1A2B;
}
.lookbook-icon {
  font-size: 1.05rem;
  font-weight: 300;
}
