.collections-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.collections-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-10);
  align-items: center;
}

.collections-hero__content {
  max-width: 36rem;
}

.collections-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.collections-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.collections-hero__meta-item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-xs);
}

.collections-hero__meta-label {
  display: block;
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.collections-hero__meta-value {
  font-size: var(--font-size-sm);
}

.collections-hero__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.collections-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collections-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.collections-section-header__lead {
  color: var(--color-text-muted);
}

.collections-section-header__cta {
  flex-shrink: 0;
}

.collections-section-header--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.collections-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.collections-feature--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.collections-feature__media {
  order: 1;
}

.collections-feature--reverse .collections-feature__media {
  order: 2;
}

.collections-feature__content {
  order: 2;
}

.collections-feature--reverse .collections-feature__content {
  order: 1;
}

.collections-feature__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.collections-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collections-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.collections-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.collections-list {
  padding-left: 1.2rem;
  margin-top: var(--space-3);
}

.collections-list li {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.collections-list li::marker {
  color: var(--color-primary);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.collections-card .card__body > .button {
  margin-top: var(--space-4);
}

.collections-guide {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 217, 194, 0.6));
  box-shadow: var(--shadow-sm);
}

.collections-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.collections-guide__column h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.collections-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.collections-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
}

.collections-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-text);
  font-size: var(--font-size-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collections-guide__footer {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: var(--font-size-sm);
}

@media (max-width: 960px) {
  .collections-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .collections-hero__content {
    max-width: none;
  }

  .collections-feature,
  .collections-feature--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .collections-feature__media,
  .collections-feature__content,
  .collections-feature--reverse .collections-feature__media,
  .collections-feature--reverse .collections-feature__content {
    order: unset;
  }
}

@media (max-width: 720px) {
  .collections-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .collections-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .collections-guide {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .collections-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .collections-guide {
    padding: var(--space-5);
  }
}
