:root {
  color-scheme: light;
  /* Marca — alimentar, confiança, calor */
  --sp-ink: #141a17;
  --sp-forest: #0c221a;
  --sp-forest-mid: #15392d;
  --sp-leaf: #2a6b52;
  --sp-leaf-bright: #3a8f6f;
  --sp-cream: #faf6ef;
  --sp-cream-dark: #f2ebe0;
  --sp-sand: #e3d5c4;
  --sp-gold: #c49a3c;
  --sp-gold-light: #dbb85c;
  --sp-amber: #9a3412;
  --sp-muted: #5a635e;
  --sp-mist: #e8f0ea;
  --sp-brand-red: #cc0000;
  --sp-white: #ffffff;
  --sp-shadow: 0 4px 24px rgba(12, 34, 26, 0.12);
  --sp-shadow-soft: 0 1px 0 rgba(12, 34, 26, 0.06), 0 14px 48px rgba(12, 34, 26, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sp-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.animate-fade-up {
  animation: fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in {
  animation: fade-in 0.45s ease forwards;
}

.js-reveal {
  opacity: 0;
}

.js-reveal.is-visible {
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

:focus-visible {
  outline: 2px solid var(--sp-leaf);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ——— Banners ——— */
.sp-banner {
  position: relative;
  overflow: hidden;
}

.sp-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(12, 34, 26, 0.14) 0%,
    rgba(12, 34, 26, 0.34) 45%,
    rgba(12, 34, 26, 0.64) 100%
  );
}

.sp-banner__overlay--soft {
  background: linear-gradient(to top, rgba(12, 34, 26, 0.48) 0%, rgba(12, 34, 26, 0.18) 55%, transparent 100%);
}

/* Leitura sobre fotos claras (armazém) */
.sp-banner__media-dim {
  filter: brightness(0.68) contrast(1.06) saturate(1.02);
}

/* Camadas extra — mais leves; preferir só .sp-banner__overlay no HTML */
.sp-banner__overlay--dense {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 22, 18, 0.22) 0%,
    rgba(8, 22, 18, 0.28) 45%,
    rgba(8, 22, 18, 0.38) 100%
  );
}

.sp-banner__overlay--read {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 130% 90% at 50% 100%,
    rgba(8, 22, 18, 0.38) 0%,
    rgba(8, 22, 18, 0.14) 55%,
    transparent 72%
  );
}

.sp-text-on-photo {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
}

@keyframes sp-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-12px, 10px) scale(1.05);
  }
}

@keyframes sp-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.sp-deco-drift {
  animation: sp-drift 16s ease-in-out infinite alternate;
}

.sp-deco-float {
  animation: sp-float 5.5s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .sp-deco-drift,
  .sp-deco-float {
    animation: none;
  }
}

/* Hero carrossel */
#hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-slides .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  pointer-events: none;
}

#hero-slides .hero-slide.is-active {
  opacity: 1;
}

/* Rodapé */
.sp-footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .sp-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
  }
}

.sp-footer-nav a {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sp-footer-nav a:hover {
  color: color-mix(in srgb, var(--sp-leaf-bright) 75%, white);
}

/* Contacto — opções de categorias (checkbox) */
.sp-contact-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  border-radius: 0.75rem;
  border: 1px solid rgba(227, 213, 196, 0.9);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 0.85rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.sp-contact-choice:hover {
  border-color: rgba(42, 107, 82, 0.35);
}

.sp-contact-choice:has(input:checked) {
  border-color: var(--sp-leaf);
  background: rgba(232, 240, 234, 0.78);
  box-shadow: 0 0 0 1px rgba(42, 107, 82, 0.14);
}

.sp-contact-choice input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border-color: rgba(12, 34, 26, 0.28);
  accent-color: var(--sp-leaf);
}

.sp-contact-choice--compact {
  padding: 0.45rem 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.35;
}

details.sp-contact-prod-details > summary {
  list-style: none;
}

details.sp-contact-prod-details > summary::-webkit-details-marker {
  display: none;
}

.sp-contact-prod-chev {
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

details.sp-contact-prod-details[open] .sp-contact-prod-chev {
  transform: rotate(180deg);
}

/* Sobre — O Que Fazemos */
@keyframes sp-oqf-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

.sp-oqf-hero-img {
  animation: sp-oqf-breathe 9s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .sp-oqf-hero-img {
    animation: none;
  }
}

@keyframes sp-oqf-shine {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }
  100% {
    transform: translateX(220%) skewX(-12deg);
  }
}

.sp-oqf-shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.sp-oqf-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: sp-oqf-shine 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .sp-oqf-shine::after {
    animation: none;
    display: none;
  }
}

.sp-oqf-item {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.35s ease,
    background 0.25s ease;
}

.sp-oqf-item:hover {
  transform: translateX(6px);
}

/* Sobre — Visão e valores */
.sp-visao-section {
  position: relative;
}

@keyframes sp-visao-shimmer {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-5%) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: translateX(5%) scale(1.03);
  }
}

.sp-visao-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(42, 107, 82, 0.18), transparent 70%);
  pointer-events: none;
}

.sp-visao-hero {
  position: relative;
  overflow: hidden;
}

.sp-visao-hero__glow {
  position: absolute;
  inset: -40% -20%;
  z-index: 0;
  background: conic-gradient(from 120deg at 50% 50%, rgba(58, 143, 111, 0.35), transparent 40%, rgba(204, 0, 0, 0.12), transparent 75%, rgba(58, 143, 111, 0.25));
  animation: sp-visao-shimmer 14s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .sp-visao-hero__glow {
    animation: none;
    opacity: 0.35;
  }
}

.sp-valor-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(42, 107, 82, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(232, 240, 234, 0.55) 100%);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(12, 34, 26, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.sp-valor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(12, 34, 26, 0.12);
  border-color: rgba(42, 107, 82, 0.4);
}

.sp-valor-card__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 1.25rem 1.25rem 0 0;
}

.sp-valor-card__icon {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  background: rgba(42, 107, 82, 0.1);
  color: var(--sp-leaf);
}

/* Página categoria — fundo suave */
.sp-cat-bg {
  background: linear-gradient(180deg, var(--sp-mist) 0%, var(--sp-cream) 22%, var(--sp-cream) 100%);
  border-radius: 1.75rem;
  border: 1px solid rgba(227, 213, 196, 0.65);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: var(--sp-shadow-soft);
}

@media (min-width: 640px) {
  .sp-cat-bg {
    padding: 2.5rem 2.5rem 3rem;
  }
}

/* Página categoria — vista rica (subcategorias / listas) */
.sp-cat-bg--rich {
  position: relative;
  overflow: hidden;
  border-color: rgba(42, 107, 82, 0.22);
  background:
    radial-gradient(ellipse 90% 70% at 100% -10%, rgba(42, 107, 82, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at -5% 110%, rgba(204, 0, 0, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(196, 154, 60, 0.08) 0%, transparent 45%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, var(--sp-mist) 18%, var(--sp-cream) 55%, #f0ebe3 100%);
  box-shadow:
    0 1px 0 rgba(12, 34, 26, 0.04),
    0 20px 50px rgba(12, 34, 26, 0.09);
}

.sp-cat-bg--rich::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -20%;
  top: 35%;
  width: 45%;
  max-width: 22rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 107, 82, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.sp-cat-bg--rich::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15%;
  bottom: 10%;
  width: 40%;
  max-width: 18rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 60, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.sp-cat-bg--rich > * {
  position: relative;
  z-index: 1;
}

.sp-cat-strip {
  height: 7px;
  margin: -2rem -1.5rem 1.5rem -1.5rem;
  border-radius: 1.75rem 1.75rem 0 0;
  background: linear-gradient(90deg, var(--sp-forest) 0%, var(--sp-leaf) 45%, var(--sp-leaf-bright) 100%);
  box-shadow: 0 2px 10px rgba(42, 107, 82, 0.18);
}

@media (min-width: 640px) {
  .sp-cat-strip {
    margin: -2.5rem -2.5rem 1.75rem -2.5rem;
  }
}

.sp-cat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-leaf);
  background: linear-gradient(135deg, rgba(42, 107, 82, 0.12), rgba(196, 154, 60, 0.1));
  border: 1px solid rgba(42, 107, 82, 0.2);
}

.sp-cat-eyebrow__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sp-leaf), var(--sp-gold));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.sp-cat-bg--rich .sp-header-block {
  margin-top: 1.25rem;
}

.sp-header-block--hero .sp-page-h1 {
  color: var(--sp-forest);
}

.sp-header-block--hero .sp-page-h1::after {
  content: "";
  display: block;
  margin-top: 0.75rem;
  height: 4px;
  width: min(6rem, 36%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sp-leaf), var(--sp-leaf-bright));
}

.sp-cat-bg--rich .sp-page-lead {
  color: var(--sp-forest-mid);
  opacity: 0.92;
}

.sp-cat-bg--rich .sp-backlink {
  font-weight: 600;
  color: var(--sp-leaf);
}

.sp-cat-bg--rich .sp-backlink:hover {
  color: var(--sp-forest);
}

.sp-subgrid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .sp-subgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sp-subcard {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(227, 213, 196, 0.95);
  background: linear-gradient(165deg, #ffffff 0%, var(--sp-cream) 100%);
  padding: 2rem 1.75rem 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(12, 34, 26, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}

.sp-subcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sp-gold) 0%, var(--sp-leaf) 100%);
  opacity: 0.85;
}

.sp-subcard:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 60, 0.55);
  box-shadow: var(--sp-shadow-soft);
}

.sp-subcard__k {
  padding-left: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-gold);
}

.sp-subcard__t {
  margin-top: 0.75rem;
  padding-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sp-ink);
}

.sp-subcard__more {
  margin-top: auto;
  padding-top: 2rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sp-leaf);
}

/* Muitas subcategorias (ex.: especiarias) — cartões compactos em grelha densa */
.sp-subgrid--compact {
  gap: 0.85rem;
  margin-top: 2.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 520px) {
  .sp-subgrid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .sp-subgrid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .sp-subgrid--compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.sp-subgrid--compact .sp-subcard {
  flex-direction: row;
  align-items: center;
  padding: 0.9rem 1.1rem 0.9rem 0.95rem;
  border-radius: 0.85rem;
  min-height: 3rem;
}

.sp-subgrid--compact .sp-subcard::before {
  width: 4px;
}

.sp-subgrid--compact .sp-subcard:hover {
  transform: translateY(-2px);
}

.sp-subgrid--compact .sp-subcard__t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0;
  padding-left: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
}

.sp-subgrid--compact .sp-subcard__arr {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sp-leaf);
  opacity: 0.85;
}

.sp-subgrid--compact .sp-subcard:hover .sp-subcard__arr {
  opacity: 1;
}

/* Grelha de produtos (subcategoria / lista) */
.sp-prod-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

@media (min-width: 520px) {
  .sp-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .sp-prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Títulos de grupo (ex.: tripas salgadas / secas na subcategoria Vaca) */
.sp-prod-section-head {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.sp-prod-section-head:first-child .sp-prod-section-head__title {
  margin-top: 0;
}

.sp-prod-section-head__title {
  margin: 1.75rem 0 0.35rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(42, 107, 82, 0.22);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-leaf);
  line-height: 1.35;
}

.sp-cat-bg--rich .sp-prod-section-head__title {
  color: var(--sp-forest-mid);
  border-bottom-color: rgba(196, 154, 60, 0.35);
}

.sp-prod-card {
  margin: 0;
  list-style: none;
  border-radius: 1rem;
  border: 1px solid rgba(227, 213, 196, 0.9);
  background: linear-gradient(145deg, #ffffff 0%, rgba(250, 246, 239, 0.65) 100%);
  padding: 1.15rem 1.25rem;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.sp-prod-card:hover {
  border-color: rgba(196, 154, 60, 0.45);
  box-shadow: 0 8px 28px rgba(12, 34, 26, 0.08);
  transform: translateY(-2px);
}

.sp-prod-card .sp-prod-btn {
  width: 100%;
}

.sp-prod-card--plain {
  font-weight: 600;
  color: var(--sp-forest-mid);
  font-size: 0.9375rem;
  line-height: 1.45;
}

/* Cartões de produto — vista rica (paleta discreta, sem barras coloridas) */
.sp-cat-bg--rich .sp-prod-grid {
  gap: 1.1rem;
}

.sp-cat-bg--rich .sp-prod-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(227, 213, 196, 0.95);
  background: linear-gradient(150deg, #ffffff 0%, rgba(250, 246, 239, 0.88) 100%);
  padding: 1.15rem 1.35rem;
  box-shadow: 0 1px 3px rgba(12, 34, 26, 0.05);
}

.sp-cat-bg--rich .sp-prod-card:hover {
  border-color: rgba(42, 107, 82, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12, 34, 26, 0.08);
}

.sp-cat-bg--rich .sp-prod-btn {
  color: var(--sp-forest-mid);
}

.sp-cat-bg--rich .sp-prod-btn:hover {
  color: var(--sp-leaf);
}

/* ——— Categoria (HTML gerado em categoria.js) ——— */
.sp-cat-wrap {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.sp-cat-wrap--narrow {
  max-width: 48rem;
}

.sp-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sp-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sp-backlink:hover {
  color: var(--sp-forest);
}

.sp-backlink:hover .sp-backlink__ic {
  transform: translateX(-3px);
}

.sp-backlink__ic {
  display: inline-block;
  transition: transform 0.2s ease;
}

.sp-page-h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--sp-ink);
}

.sp-page-lead {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--sp-muted);
}

.sp-prod-shell {
  margin-top: 3rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(227, 213, 196, 0.95);
  background: var(--sp-white);
  padding: 0.5rem 1.5rem;
  box-shadow: var(--sp-shadow);
}

@media (min-width: 640px) {
  .sp-prod-shell {
    padding: 0.5rem 2.5rem;
  }
}

.sp-prod-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-prod-list li {
  border-bottom: 1px solid var(--sp-mist);
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--sp-ink);
}

.sp-prod-list li:last-child {
  border-bottom: none;
}

.sp-prod-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--sp-forest-mid);
  transition: color 0.2s ease;
}

.sp-prod-btn:hover {
  color: var(--sp-leaf);
}

.sp-prod-btn__name {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.sp-prod-btn:hover .sp-prod-btn__name {
  border-color: var(--sp-gold);
}

.sp-prod-btn__tag {
  margin-left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sp-prod-btn:hover .sp-prod-btn__tag {
  opacity: 1;
}

.sp-cat-error {
  color: var(--sp-muted);
}

.sp-cat-error a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sp-leaf);
}

.sp-cat-error a:hover {
  text-decoration: underline;
}

.sp-header-block {
  margin-top: 2.5rem;
}

.sp-header-block--tight {
  max-width: 42rem;
}
