:root{--page-title-display:none;}/* Start custom CSS *//* ================================================
   Botanical Terra — New Collections Page CSS
   Gentle, rooted, and intentional styling
   ================================================ */

/* Root variables — aligned with brand palette */
:root {
  --deep-olive: #4F5D4A;
  --clay-terracotta: #A66A4A;
  --soft-charcoal: #2F2F2C;
  --bone: #F7F5F0;
  --warm-sand: #E8E1D6;
  --light-sage: #C9CEC6;
  
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Inter', system-ui, sans-serif;
}

/* Page container */
.collections-page {
  background-color: var(--bone);
  color: var(--soft-charcoal);
  font-family: var(--body-font);
  line-height: 1.7;
  padding-bottom: 6rem;
}

/* Hero / Header Section */
.collections-hero {
  background-color: var(--warm-sand);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collections-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79,93,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.collections-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--deep-olive);
  margin-bottom: 1rem;
}

.collections-hero p {
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto;
  color: var(--soft-charcoal);
}

/* Collections Grid */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Individual Collection Card */
.collection-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47, 47, 44, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(79, 93, 74, 0.12);
}

.collection-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.04);
}

.collection-card-content {
  padding: 2rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.collection-card h2 {
  font-family: var(--heading-font);
  font-size: 1.85rem;
  color: var(--deep-olive);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.collection-card p {
  color: var(--soft-charcoal);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* CTA Button — warm, inviting, never urgent */
.collection-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--deep-olive);
  color: white;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.collection-cta:hover {
  background-color: var(--clay-terracotta);
  transform: translateY(-2px);
}

/* Section dividers */
.collections-divider {
  height: 1px;
  background: var(--light-sage);
  max-width: 180px;
  margin: 4rem auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .collections-hero {
    padding: 5rem 1.5rem 3.5rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
}

/* Gentle micro-animations & accessibility */
.collection-card {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .collection-card,
  .collection-card:hover,
  .collection-card img,
  .collection-cta {
    transition: none;
    transform: none;
  }
}/* End custom CSS */