/* special-products — Figma node 46:2198 */

body[data-page="featured"] {
  background: #fff;
}

.special-products {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}

.special-products__row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  margin: 0;
}

.special-products__row > [class*="col-"] {
  padding: 0;
}

.sp-block-link {
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.sp-block-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Shared block typography ── */
.sp-block__tag {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.sp-block__title {
  font-size: 32px;
  font-weight: 800;
  line-height: normal;
  margin: 0;
}

.sp-block__sub {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.sp-block__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  padding-inline: 1rem;
}

/* ── CTA button ── */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 16px 9px;
  border-radius: 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-regular);
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 16px;
}

.sp-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sp-btn--glass {
  color: #fff;
  background: transparent;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.sp-btn--plain {
  color: #333;
  background: transparent;
  box-shadow: none;
  margin-top: 24px;
}

.sp-btn i {
  font-size: 12px;
  opacity: 0.9;
}

/* ── Full-width hero blocks ── */
.sp-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--border);
  box-sizing: border-box;
  border-radius: 0;
}

.sp-hero--tall {
  min-height: clamp(420px, 52vw, 704px);
}

.sp-hero--taller {
  min-height: clamp(480px, 56vw, 852px);
}

.sp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.sp-hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 49px 1rem 2rem;
  width: 100%;
  max-width: 900px;
}

.sp-hero--taller .sp-hero__overlay {
  padding-top: 99px;
}

.sp-hero--growth .sp-hero__overlay {
  padding-top: 124px;
}

.sp-hero--dark .sp-block__tag {
  color: rgba(238, 238, 238, 0.7);
}

.sp-hero--dark .sp-block__title,
.sp-hero--dark .sp-block__sub {
  color: #fff;
}

/* ── Card blocks ── */
.sp-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-sizing: border-box;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.sp-card--duo {
  min-height: clamp(360px, 42vw, 600px);
}

.sp-card--compact {
  aspect-ratio: 1 / 1;
  min-height: 280px;
}

.sp-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.sp-card__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 51px 1rem 2rem;
  width: 100%;
}

.sp-card--compact .sp-card__overlay {
  gap: 16px;
  padding-top: 51px;
}

.sp-card--compact .sp-block__content {
  gap: 4px;
}

.sp-card--light .sp-block__tag {
  color: rgba(68, 68, 68, 0.7);
}

.sp-card--light .sp-block__title,
.sp-card--light .sp-block__sub {
  color: #333;
}

.sp-card--compact .sp-block__title {
  font-size: 18px;
}

.sp-card--compact .sp-block__sub {
  font-size: 14px;
}

.sp-card--compact .sp-btn {
  margin-top: 0;
}
