/* Alize — Categories listing page */

body.alize-theme .alize-categories-page {
  padding: 0 0 80px;
  background: var(--cream);
}

body.alize-theme .alize-categories-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 166, 100, 0.15), transparent 42%),
    linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  padding: 52px 0 48px;
  text-align: center;
}

body.alize-theme .alize-categories-hero .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

body.alize-theme .alize-categories-hero .eyebrow::before {
  background: var(--gold-light);
}

body.alize-theme .alize-categories-hero h1 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 10px;
}

body.alize-theme .alize-categories-hero p {
  color: rgba(244, 239, 228, 0.72);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

body.alize-theme .alize-categories-body {
  padding: 56px 0 0;
}

body.alize-theme .alize-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

body.alize-theme .alize-categories-grid .cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-deep));
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
}

body.alize-theme .alize-categories-grid .cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(20, 33, 61, 0.22);
}

body.alize-theme .alize-categories-grid .cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.alize-theme .alize-categories-grid .cat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 34%;
  opacity: 0.85;
}

body.alize-theme .alize-categories-grid .cat-icon svg {
  width: 100%;
  stroke: var(--gold-light);
}

body.alize-theme .alize-categories-grid .cat-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  background: linear-gradient(0deg, rgba(12, 22, 38, 0.88), transparent);
  color: var(--cream);
}

body.alize-theme .alize-categories-grid .cat-label strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

body.alize-theme .alize-categories-empty {
  text-align: center;
  padding: 48px 20px;
  color: #6b6558;
  font-size: 15px;
}

@media (max-width: 1080px) {
  body.alize-theme .alize-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body.alize-theme .alize-categories-hero {
    padding: 40px 0 36px;
  }

  body.alize-theme .alize-categories-body {
    padding-top: 36px;
  }

  body.alize-theme .alize-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  body.alize-theme .alize-categories-grid .cat-label {
    padding: 18px;
  }

  body.alize-theme .alize-categories-grid .cat-label strong {
    font-size: 18px;
  }
}
