/* ==============================
   SKIN BOOSTERS CATALOG
================================ */

.sb-page {
  padding-top: 120px;
}

.sb-hero {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.sb-eyebrow {
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--brand-primary);
  margin-top: 0 0 10px;
}

.sb-title {
    font-size: 4.5rem; line-height: 1.1; margin-bottom: 0.25em; font-weight: 600;
}

.sb-hero h1 {
  margin-bottom: 0.35em;
}

.sb-hero > p:last-child {
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Tabs */
.sb-tabs-wrap {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
  box-sizing: border-box;
}

.sb-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 36, 114, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sb-tab {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.sb-tab:hover {
  color: var(--brand-primary);
  background: rgba(10, 36, 114, 0.05);
}

.sb-tab.active {
  color: #fff;
  background: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(10, 36, 114, 0.22);
}

/* Product cards */
.sb-catalog {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  box-sizing: border-box;
}

.sb-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.sb-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 32px;
  min-height: 280px;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid rgba(10, 36, 114, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.sb-card:hover {
  box-shadow: var(--shadow-md);
}

.sb-card.is-hidden {
  display: none;
}

.sb-card-content .eyebrow {
  margin-bottom: 30px;
}

.sb-card-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.sb-card-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 60ch;
}

.sb-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.sb-learn-more .arrow-icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-primary);
  transition: transform 0.25s var(--ease);
}

.sb-learn-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 36, 114, 0.22);
}

.sb-learn-more:hover .arrow-icon {
  transform: translateX(3px);
}

.sb-card-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  padding: 16px;
  box-sizing: border-box;
}

.sb-card-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.sb-empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
}

.sb-empty.is-visible {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .sb-page {
    padding-top: 100px;
  }

  .sb-tabs-wrap {
    padding-bottom: 16px;
  }

  .sb-tabs {
    border-radius: 20px;
    padding: 8px;
  }

  .sb-tab {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .sb-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }

  .sb-card-content p {
    max-width: none;
    margin: 0 auto;
  }

  .sb-learn-more {
    margin-top: 20px;
  }

  .sb-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sb-card-image {
    order: -1;
    width: 100%;
    max-width: 280px;
    height: 240px;
    margin: 0 auto;
  }

  .productcta-section .cta-wrapper {
    padding: 28px 24px;
  }
}

/* CTA & notes */
.productcta-section {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.productcta-section .cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid rgba(10, 36, 114, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.productcta-section .cta-title {
  margin: 0;
  text-align: center;
}

.note-symbol {
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 500;
}

.notes-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.notes p {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #8f9ca3;
  font-weight: 300;
  letter-spacing: 0.2px;
}
