/* ============================================================
   Sou Pechincha — frontend
   Paleta e componentes replicando o site original (Horizons).
   ============================================================ */

:root {
	--sp-primary: #f97316;
	--sp-primary-dark: #ea580c;
	--sp-primary-soft: #ffedd5;
	--sp-danger: #f43f5e;
	--sp-green: #16a34a;
	--sp-ink: #17181c;
	--sp-text: #33343a;
	--sp-muted: #6b7280;
	--sp-border: #e7e8ec;
	--sp-bg: #ffffff;
	--sp-bg-gray: #f4f5f7;
	--sp-footer: #253345;
	--sp-radius: 14px;
	--sp-radius-sm: 10px;
	--sp-shadow: 0 1px 2px rgba(16, 24, 40, .05);
	--sp-shadow-md: 0 8px 24px rgba(16, 24, 40, .09);
	--sp-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--sp-font);
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--sp-text);
	background: var(--sp-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--sp-ink); line-height: 1.2; margin: 0; }
:focus-visible { outline: 2px solid var(--sp-primary); outline-offset: 2px; border-radius: 4px; }

.sp-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.sp-container--narrow { max-width: 860px; }

/* ---------- Botões ---------- */
.sp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--sp-font);
	font-size: 14px;
	font-weight: 700;
	border: 0;
	border-radius: var(--sp-radius-sm);
	padding: 11px 22px;
	cursor: pointer;
	transition: background .18s ease, transform .12s ease;
	white-space: nowrap;
}
.sp-btn--primary { background: var(--sp-primary); color: #fff; }
.sp-btn--primary:hover { background: var(--sp-primary-dark); }
.sp-btn:active { transform: scale(.98); }

.sp-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--sp-ink);
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: 999px;
	padding: 8px 16px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.sp-pill:hover { border-color: var(--sp-primary); color: var(--sp-primary); }

/* ---------- Header ---------- */
.sp-header {
	background: var(--sp-primary);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 60;
}
.sp-header__inner {
	display: flex;
	align-items: center;
	gap: 26px;
	min-height: 62px;
}
.sp-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 800;
	font-size: 18px;
	color: #fff;
	flex-shrink: 0;
}
.sp-header__brand-img { max-height: 42px; width: auto; border-radius: 8px; }
.sp-header__brand-icon {
	display: inline-flex;
	background: #fff;
	color: var(--sp-primary);
	border-radius: 9px;
	padding: 5px;
}
.sp-header__nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
}
.sp-header__nav > a,
.sp-header__dropdown > button {
	color: rgba(255, 255, 255, .95);
	font-size: 14px;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 8px;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: var(--sp-font);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: background .15s ease;
}
.sp-header__nav > a:hover,
.sp-header__dropdown > button:hover { background: rgba(255, 255, 255, .14); }

.sp-header__dropdown { position: relative; }
.sp-header__dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 210px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--sp-shadow-md);
	padding: 8px;
	display: none;
	z-index: 70;
	max-height: 340px;
	overflow: auto;
}
.sp-header__dropdown.is-open .sp-header__dropdown-menu { display: block; }
.sp-header__dropdown-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--sp-text);
	font-size: 14px;
	font-weight: 500;
}
.sp-header__dropdown-menu a:hover { background: var(--sp-primary-soft); color: var(--sp-primary-dark); }

.sp-header__actions { display: flex; align-items: center; gap: 14px; }
.sp-header__search {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 9px;
	overflow: hidden;
	width: 230px;
}
.sp-header__search input {
	border: 0;
	padding: 9px 12px;
	font-size: 13.5px;
	font-family: var(--sp-font);
	flex: 1;
	min-width: 0;
	color: var(--sp-ink);
}
.sp-header__search input:focus { outline: none; }
.sp-header__search button {
	background: none;
	border: 0;
	color: var(--sp-muted);
	padding: 8px 10px;
	cursor: pointer;
	display: inline-flex;
}
.sp-header__fav {
	position: relative;
	display: inline-flex;
	color: #fff;
	padding: 6px;
}
.sp-header__fav-count {
	position: absolute;
	top: -2px;
	right: -4px;
	background: #fff;
	color: var(--sp-primary);
	font-size: 10px;
	font-weight: 800;
	border-radius: 999px;
	min-width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.sp-header__toggle { display: none; }

/* ---------- Hero (banners) ---------- */
.sp-hero { position: relative; overflow: hidden; background: var(--sp-ink); }
.sp-hero__track { display: flex; transition: transform .5s ease; }
.sp-hero__slide {
	min-width: 100%;
	min-height: clamp(420px, 42vw, 560px);
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
}
/* Enquadramento vertical da imagem (definido por banner no painel). */
.sp-hero__slide--topo { background-position: center top; }
.sp-hero__slide--centro { background-position: center center; }
.sp-hero__slide--baixo { background-position: center bottom; }
.sp-hero__slide--alto { background-position: center 25%; }
.sp-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 12, 16, .28) 0%, rgba(10, 12, 16, 0) 22%),
		linear-gradient(90deg, rgba(10, 12, 16, .62) 0%, rgba(10, 12, 16, .28) 55%, rgba(10, 12, 16, .08) 100%);
}
.sp-hero__content { position: relative; z-index: 2; width: 100%; padding-top: 24px; }
.sp-hero__title {
	color: #fff;
	font-size: clamp(28px, 4.4vw, 44px);
	font-weight: 800;
	max-width: 640px;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .3);
}
.sp-hero__subtitle {
	color: rgba(255, 255, 255, .92);
	font-size: clamp(15px, 1.8vw, 18px);
	margin: 10px 0 22px;
	max-width: 560px;
}
.sp-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: rgba(255, 255, 255, .85);
	color: var(--sp-ink);
	border: 0;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s ease;
}
.sp-hero__arrow:hover { background: #fff; }
.sp-hero__arrow--prev { left: 14px; }
.sp-hero__arrow--next { right: 14px; }
.sp-hero__dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 7px;
}
.sp-hero__dots button {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, .55);
	cursor: pointer;
	padding: 0;
	transition: width .2s ease, background .2s ease;
}
.sp-hero__dots button.is-active { background: #fff; width: 22px; }

/* ---------- Seções ---------- */
.sp-section { padding: 52px 0; }
.sp-section--gray { background: var(--sp-bg-gray); }
.sp-section--blog { padding-bottom: 72px; }
.sp-page-head { padding-top: 40px; }
.sp-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.sp-section__title {
	font-size: clamp(21px, 2.6vw, 27px);
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 10px;
}
.sp-section__title-icon { color: var(--sp-primary); display: inline-flex; }
.sp-section__desc { color: var(--sp-muted); font-size: 14px; margin: 6px 0 0; }

/* ---------- Categorias ---------- */
.sp-cats {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 26px 14px;
}
.sp-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}
.sp-cat__circle {
	width: 78px;
	height: 78px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--sp-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--sp-ink);
	transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.sp-cat:hover .sp-cat__circle {
	border-color: var(--sp-primary);
	color: var(--sp-primary);
	box-shadow: var(--sp-shadow-md);
	transform: translateY(-2px);
}
.sp-cat__name { font-size: 13.5px; font-weight: 600; color: var(--sp-ink); }

/* ---------- Grid ---------- */
.sp-grid { display: grid; gap: 22px; }
.sp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sp-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Card de produto ---------- */
.sp-card {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .18s ease, transform .18s ease;
}
.sp-card:hover { box-shadow: var(--sp-shadow-md); transform: translateY(-3px); }
.sp-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: #fff;
	padding: 14px;
}
.sp-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.sp-card__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #d3d5db;
}
.sp-card__badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--sp-danger);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 9px;
	border-radius: 999px;
	z-index: 2;
}
.sp-card__body { padding: 4px 16px 10px; flex: 1; }
.sp-card__title {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 40px;
}
.sp-card__title a:hover { color: var(--sp-primary-dark); }
.sp-card__prices { margin-top: 10px; display: flex; flex-direction: column; }
.sp-card__old { color: #9aa0aa; font-size: 12.5px; }
.sp-card__price { color: var(--sp-primary); font-size: 21px; font-weight: 800; }
.sp-card__footer {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 16px 16px;
}
.sp-card__fav {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: var(--sp-radius-sm);
	border: 1px solid var(--sp-border);
	background: #fff;
	color: var(--sp-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color .15s ease, border-color .15s ease;
}
.sp-card__fav:hover { color: var(--sp-danger); border-color: var(--sp-danger); }
.sp-card__fav.is-active { color: var(--sp-danger); border-color: var(--sp-danger); }
.sp-card__fav.is-active svg { fill: var(--sp-danger); }
.sp-card__cta { flex: 1; padding: 10px 14px; }

/* ---------- Ordenação / paginação ---------- */
.sp-sort select {
	font-family: var(--sp-font);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sp-ink);
	border: 1px solid var(--sp-border);
	border-radius: 999px;
	padding: 8px 14px;
	background: #fff;
	cursor: pointer;
}
.sp-pagination { margin-top: 34px; text-align: center; }
.sp-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	margin: 0 3px;
	border: 1px solid var(--sp-border);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--sp-ink);
	background: #fff;
}
.sp-pagination .page-numbers.current { background: var(--sp-primary); border-color: var(--sp-primary); color: #fff; }
.sp-pagination .page-numbers:hover:not(.current) { border-color: var(--sp-primary); color: var(--sp-primary); }
.sp-empty { color: var(--sp-muted); background: var(--sp-bg-gray); border-radius: var(--sp-radius); padding: 34px; text-align: center; }

/* ---------- Card de post ---------- */
.sp-post-card {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	overflow: hidden;
	transition: box-shadow .18s ease, transform .18s ease;
}
.sp-post-card:hover { box-shadow: var(--sp-shadow-md); transform: translateY(-3px); }
.sp-post-card__media { display: block; aspect-ratio: 16 / 10; background: var(--sp-bg-gray); }
.sp-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sp-post-card__body { padding: 16px; }
.sp-post-card__title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sp-post-card__title a:hover { color: var(--sp-primary-dark); }
.sp-post-card__excerpt { color: var(--sp-muted); font-size: 13px; margin: 8px 0 0; }

/* ---------- Card de loja ---------- */
.sp-loja-card {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 24px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: box-shadow .18s ease;
}
.sp-loja-card:hover { box-shadow: var(--sp-shadow-md); }
.sp-loja-card__logo { height: 62px; display: flex; align-items: center; color: #c6c9d0; }
.sp-loja-card__logo img { max-height: 62px; width: auto; }
.sp-loja-card__name { font-size: 16px; font-weight: 700; }
.sp-loja-card__desc { color: var(--sp-muted); font-size: 13px; margin: 0; }

/* ---------- Trilha de navegação ---------- */
.sp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--sp-muted);
	margin-bottom: 22px;
}
.sp-breadcrumb a { font-weight: 600; }
.sp-breadcrumb a:hover { color: var(--sp-primary); }
.sp-breadcrumb__current { color: var(--sp-ink); font-weight: 600; }

/* ---------- Single produto ---------- */
.sp-single__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: start;
}
.sp-single__image {
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 26px;
	background: #fff;
}
.sp-single__image img { width: 100%; object-fit: contain; aspect-ratio: 1/1; }
.sp-single__title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.sp-single__excerpt { color: var(--sp-muted); margin: 14px 0 0; }
.sp-single__pricebox {
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 18px 20px;
	margin-top: 22px;
}
.sp-single__old { color: #9aa0aa; font-size: 15px; margin-right: 10px; }
.sp-single__price { color: var(--sp-primary); font-size: 30px; font-weight: 800; }
.sp-single__saving { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.sp-single__offbadge {
	background: var(--sp-danger);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 999px;
}
.sp-single__economia { color: var(--sp-green); font-size: 13.5px; font-weight: 600; }
.sp-single__verified {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: var(--sp-radius);
	padding: 14px 18px;
	margin-top: 16px;
}
.sp-single__verified strong { display: inline-flex; align-items: center; gap: 7px; color: var(--sp-ink); font-size: 14px; }
.sp-single__verified p { margin: 6px 0 0; font-size: 13px; color: var(--sp-muted); }
.sp-single__lojas-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin: 26px 0 12px;
}
.sp-single__loja {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 14px 16px;
	margin-bottom: 10px;
}
.sp-single__loja-info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sp-single__loja-info img { max-height: 34px; width: auto; border-radius: 8px; }
.sp-single__content { margin-top: 48px; max-width: 900px; }
.sp-single__content img { border-radius: var(--sp-radius-sm); }

/* ---------- Artigo genérico ---------- */
.sp-article__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--sp-ink);
	margin-bottom: 28px;
	transition: color .15s ease;
}
.sp-article__back:hover { color: var(--sp-primary); }
.sp-article__title { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin-bottom: 14px; }
.sp-article__meta {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-bottom: 26px;
	font-size: 14px;
	font-weight: 600;
	color: var(--sp-muted);
}
.sp-article__meta-item { display: inline-flex; align-items: center; gap: 7px; }
.sp-article__meta-item svg { color: var(--sp-primary); flex-shrink: 0; }
.sp-article__thumb { border-radius: var(--sp-radius); overflow: hidden; margin-bottom: 26px; }
.sp-article__content { font-size: 16px; }
.sp-article__content a { color: var(--sp-primary-dark); text-decoration: underline; }

/* ---------- Rodapé ---------- */
.sp-footer { background: var(--sp-footer); color: rgba(255, 255, 255, .82); margin-top: 40px; }
.sp-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 34px;
	padding: 54px 0 38px;
}
.sp-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #fff;
	font-weight: 800;
	font-size: 17px;
}
.sp-footer__logo-img { max-height: 38px; width: auto; border-radius: 8px; }
.sp-footer__logo-icon {
	display: inline-flex;
	background: var(--sp-primary);
	color: #fff;
	border-radius: 8px;
	padding: 5px;
}
.sp-footer__brand p { font-size: 13.5px; margin: 12px 0 0; }
.sp-footer__col h4 {
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.sp-footer__col ul { list-style: none; margin: 0; padding: 0; }
.sp-footer__col li { margin-bottom: 10px; }
.sp-footer__col a { font-size: 13.5px; transition: color .15s ease; }
.sp-footer__col a:hover { color: var(--sp-primary); }
.sp-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 20px 0 26px;
	text-align: center;
	font-size: 12.5px;
}
.sp-footer__bottom p { margin: 4px 0; }
.sp-footer__disclaimer { color: rgba(255, 255, 255, .55); }
.sp-footer__credits { color: rgba(255, 255, 255, .45); font-size: 12px; }
.sp-footer__credits strong { color: rgba(255, 255, 255, .7); font-weight: 700; }

/* ---------- Galeria do produto ---------- */
.sp-gallery { outline: none; }
.sp-gallery__main {
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 26px;
	background: #fff;
	position: relative;
}
.sp-gallery__main img { width: 100%; object-fit: contain; aspect-ratio: 1/1; }
.sp-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .92);
	color: var(--sp-ink);
	border: 1px solid var(--sp-border);
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color .15s ease, border-color .15s ease, box-shadow .15s ease;
	z-index: 2;
}
.sp-gallery__arrow:hover { color: var(--sp-primary); border-color: var(--sp-primary); box-shadow: var(--sp-shadow-md); }
.sp-gallery__arrow--prev { left: 12px; }
.sp-gallery__arrow--next { right: 12px; }
.sp-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.sp-gallery__thumb {
	width: 68px;
	height: 68px;
	padding: 6px;
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius-sm);
	cursor: pointer;
	transition: border-color .15s ease;
}
.sp-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.sp-gallery__thumb:hover { border-color: #c8cbd2; }
.sp-gallery__thumb.is-active { border-color: var(--sp-primary); box-shadow: 0 0 0 1px var(--sp-primary); }

/* ---------- Ações do single (favoritar / compartilhar / acessos) ---------- */
.sp-single__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.sp-single__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--sp-font);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--sp-ink);
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius-sm);
	padding: 10px 16px;
	cursor: pointer;
	transition: color .15s ease, border-color .15s ease;
}
.sp-single__action:hover { border-color: var(--sp-primary); color: var(--sp-primary); }
.sp-single__action.is-active { color: var(--sp-danger); border-color: var(--sp-danger); }
.sp-single__action.is-active svg { fill: var(--sp-danger); }
.sp-single__hits {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--sp-muted);
	font-size: 13px;
	font-weight: 600;
}

/* ---------- Preço por loja ---------- */
.sp-single__loja-nome { font-weight: 700; }
.sp-single__loja-preco {
	color: var(--sp-primary);
	font-weight: 800;
	font-size: 15px;
	background: var(--sp-primary-soft);
	border-radius: 999px;
	padding: 3px 11px;
}

/* ---------- Relacionados ---------- */
.sp-single__related { margin-top: 56px; }
.sp-single__related .sp-section__title { margin-bottom: 22px; }

/* ---------- Toast ---------- */
.sp-toast {
	position: fixed;
	bottom: 26px;
	left: 50%;
	transform: translate(-50%, 12px);
	background: var(--sp-ink);
	color: #fff;
	font-family: var(--sp-font);
	font-size: 14px;
	font-weight: 600;
	padding: 11px 20px;
	border-radius: 999px;
	box-shadow: var(--sp-shadow-md);
	opacity: 0;
	transition: opacity .25s ease, transform .25s ease;
	z-index: 90;
}
.sp-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
	.sp-grid--4 { grid-template-columns: repeat(3, 1fr); }
	.sp-cats { grid-template-columns: repeat(4, 1fr); }
	.sp-header__search { width: 180px; }
	.sp-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.sp-grid--4, .sp-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.sp-cats { grid-template-columns: repeat(3, 1fr); gap: 20px 10px; }
	.sp-cat__circle { width: 64px; height: 64px; }
	.sp-single__grid { grid-template-columns: 1fr; gap: 26px; }
	.sp-section { padding: 38px 0; }
	.sp-hero__slide { min-height: clamp(340px, 62vw, 420px); }
	.sp-hero__content { padding-top: 12px; }

	.sp-header__inner { flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; gap: 12px; }
	.sp-header__toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 4.5px;
		background: none;
		border: 0;
		padding: 8px;
		cursor: pointer;
		order: 3;
		margin-left: auto;
	}
	.sp-header__toggle span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; display: block; }
	.sp-header__nav {
		display: none;
		order: 5;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding-bottom: 10px;
	}
	.sp-header__nav.is-open { display: flex; }
	.sp-header__nav > a, .sp-header__dropdown > button { width: 100%; justify-content: flex-start; }
	.sp-header__dropdown-menu { position: static; box-shadow: none; border-radius: 10px; margin-top: 4px; }
	.sp-header__actions { order: 4; width: 100%; }
	.sp-header__search { flex: 1; width: auto; }
	.sp-footer__grid { grid-template-columns: 1fr; gap: 26px; padding: 40px 0 28px; }
}

@media (max-width: 480px) {
	.sp-card__title { font-size: 13.5px; }
	.sp-card__price { font-size: 18px; }
	.sp-card__footer { padding: 0 12px 12px; gap: 8px; }
	.sp-card__body { padding: 4px 12px 8px; }
	.sp-cats { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.sp-hero__track { transition: none; }
	.sp-card, .sp-post-card, .sp-cat__circle { transition: none; }
}
