/* =========================================================
   BTP Theme — main.css
   Base visual de la landing + extensiones (hero overlay,
   WhatsApp flotante, soporte Elementor, estados extra)
   ========================================================= */

:root {
	--bg: #f3f3f5;
	--surface: #ffffff;
	--dark: var(--btp-dark, #090b10);
	--dark-2: #11151d;
	--text: #1c1f25;
	--muted: #666b73;
	--lime: var(--btp-lime, #c9f209);
	--lime-2: #b4ef00;
	--pink: var(--btp-pink, #ff1694);
	--orange: #ff8b1f;
	--line: #e5e6eb;
	--shadow: 0 18px 48px rgba(0, 0, 0, .12);
	--radius: 24px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	background: var(--bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	width: 100%;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

/* ===== CONTAINERS RESPONSIVE ===== */
/* Container estándar: ancho cómodo con respiración lateral. */
.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 40px);
}

/* Container amplio para grids densos / productos. */
.container-wide {
	width: 100%;
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 40px);
}

/* Container fluido: 100% del viewport (hero full-bleed, banners, strips). */
.container-fluid {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0 clamp(16px, 2vw, 32px);
}

/* En pantallas 4K / ultrawide, permite ocupar más espacio. */
@media (min-width: 1920px) {
	.container {
		max-width: 1600px;
	}

	.container-wide {
		max-width: 1820px;
	}
}

/* Secciones full-bleed: rompen el container para ocupar toda la pantalla. */
.full-bleed {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* ---------- Topbar ---------- */
.topbar {
	background: var(--lime);
	color: #10130c;
	font-weight: 700;
	font-size: 13px;
}

.topbar-inner {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(9, 11, 16, .94);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.nav-wrap {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 94px;
	position: relative;
}

.brand img,
.brand .custom-logo {
	width: 92px;
	height: 92px;
	object-fit: contain;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}

.main-nav a,
.main-nav .menu-item a {
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: .04em;
	position: relative;
}

.main-nav a.active,
.main-nav a:hover,
.main-nav .current-menu-item a {
	color: var(--lime);
}

.main-nav a.active::after,
.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 3px;
	border-radius: 999px;
	background: var(--lime);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.icon-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .16);
	background: transparent;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
}

.icon-btn:hover {
	background: rgba(255, 255, 255, .08);
	border-color: var(--lime);
	color: var(--lime);
}

.cart-count,
.btp-fav-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--pink);
	color: #fff;
	min-width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

/* ---------- Botones ---------- */
.cta-small,
.buy-btn,
.offer-btn,
.btp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 14px;
	padding: 14px 22px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}

.cta-small:hover,
.buy-btn:hover,
.offer-btn:hover,
.btp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(255, 22, 148, .28);
}

.cta-small {
	padding: 14px 20px;
}

.menu-toggle {
	display: none;
	margin-left: auto;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, .14);
	background: transparent;
	padding: 10px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 2px;
	background: #fff;
	margin: 6px 0;
	border-radius: 999px;
}

/* ---------- Hero (full-width) ---------- */
.hero-section {
	padding: 0;
	background: linear-gradient(180deg, #101219 0%, #161922 100%);
}

.hero-section .container,
.hero-section .container-fluid {
	padding: 0;
}

.hero-shell {
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	position: relative;
	width: 100%;
	min-height: clamp(320px, 55vw, 720px);
	display: block;
}

.hero-image {
	width: 100%;
	height: 100%;
	min-height: clamp(320px, 55vw, 720px);
	object-fit: cover;
	display: block;
}

.hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 34px 40px;
	background: linear-gradient(0deg, rgba(9, 11, 16, .82) 0%, rgba(9, 11, 16, 0) 100%);
	color: #fff;
}

.hero-overlay h1 {
	margin: 0 0 8px;
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -.02em;
	line-height: .95;
}

.hero-overlay h1 ::after {
	content: "";
}

.hero-overlay p {
	margin: 0 0 18px;
	font-size: 18px;
	max-width: 560px;
	color: #e7eaf0;
}

/* ---------- Secciones generales ---------- */
.section {
	padding: 34px 0;
}

.section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.section-head h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 46px);
	text-transform: uppercase;
	line-height: .98;
	font-weight: 900;
	letter-spacing: -.03em;
}

.section-head h2 span {
	color: var(--pink);
}

.section-head>a {
	color: var(--pink);
	font-weight: 800;
}

/* ---------- Categorías ---------- */
.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.category-card {
	position: relative;
	min-height: 250px;
	padding: 28px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.category-card img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 56%;
	height: 100%;
	object-fit: cover;
}

.category-copy {
	position: relative;
	z-index: 1;
	width: 48%;
}

.category-copy h3 {
	margin: 0 0 10px;
	font-size: 34px;
	text-transform: uppercase;
	font-style: italic;
	font-weight: 900;
	line-height: .95;
}

.category-copy p {
	margin: 0 0 18px;
	color: rgba(0, 0, 0, .78);
	line-height: 1.45;
	font-weight: 600;
}

.category-copy a {
	display: inline-flex;
	padding: 12px 18px;
	border-radius: 999px;
	background: #fff;
	color: var(--pink);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
}

.category-card:nth-child(4n+1) {
	background: linear-gradient(135deg, #d8f54f, #b7e800);
}

.category-card:nth-child(4n+2) {
	background: linear-gradient(135deg, #ffb8de, #ff4faf);
}

.category-card:nth-child(4n+3) {
	background: linear-gradient(135deg, #d6f481, #c6ef33);
}

.category-card:nth-child(4n+4) {
	background: linear-gradient(135deg, #ffb34f, #ff7e00);
}

/* ---------- Productos ---------- */
.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

@media (min-width: 700px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1000px) {
	.product-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

@media (min-width: 1280px) {
	.product-grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 20px;
	}
}

@media (min-width: 1920px) {
	.product-grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 24px;
	}
}

.product-card {
	position: relative;
	background: var(--surface);
	border-radius: 22px;
	border: 1px solid var(--line);
	padding: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, .1);
}

.product-card a.product-link {
	color: inherit;
	display: block;
}

.product-card img {
	width: 100%;
	aspect-ratio: 1 / 1.18;
	object-fit: contain;
	margin-bottom: 10px;
}

.product-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.3;
}

.price {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 900;
	color: var(--text);
}

.price small {
	font-size: 13px;
	color: #7d838c;
	text-decoration: line-through;
	margin-left: 8px;
	font-weight: 700;
}

.price[data-currency="UYU"] .price-value::before {
	content: "$ ";
}

.swatches {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.swatch {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, .08);
}

.buy-btn {
	width: 100%;
	padding: 12px 14px;
	background: linear-gradient(90deg, var(--lime), #b8ed13);
	color: #151913;
	font-size: 13px;
	margin-top: auto;
}

.buy-btn.wa {
	background: linear-gradient(90deg, #25d366, #1fb856);
	color: #fff;
	margin-top: 8px;
}

.fav {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 16px;
	transition: all .2s ease;
	color: #8a8f96;
}

.fav:hover {
	border-color: var(--pink);
	color: var(--pink);
	transform: scale(1.08);
}

.fav.active {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.fav.pulse {
	animation: btp-pulse .4s ease;
}

@keyframes btp-pulse {
	50% {
		transform: scale(1.25);
	}
}

.tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--pink);
	color: #fff;
	padding: 7px 10px;
	border-radius: 10px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 800;
	z-index: 2;
}

.tag.offer {
	background: var(--orange);
}

.tag.featured {
	background: var(--dark);
}

/* ---------- Banner oferta ---------- */
.offer-banner {
	display: grid;
	grid-template-columns: 320px 1fr 220px;
	align-items: center;
	border-radius: 32px;
	overflow: hidden;
	background: linear-gradient(135deg, #ff1694 0%, #ff4fa1 50%, #ff1694 100%);
	color: #fff;
	box-shadow: var(--shadow);
	position: relative;
	min-height: 480px;

	display: none
}

.offer-visual {
	height: 100%;
	position: relative;
	background: #000;
	overflow: hidden;
}

.offer-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%;
	/* Mantiene la cara de la modelo visible */
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-banner:hover .offer-visual img {
	transform: scale(1.05);
}

.offer-copy {
	padding: 40px 10px 40px 40px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--lime);
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.1em;
	font-size: 14px;
}

.offer-copy h2 {
	margin: 0 0 16px;
	font-size: clamp(40px, 4.5vw, 72px);
	line-height: 0.95;
	text-transform: uppercase;
	font-weight: 900;
}

.offer-copy h2 strong {
	color: var(--lime);
	display: block;
}

.offer-copy p {
	max-width: 600px;
	margin: 0 0 28px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.offer-badge {
	justify-self: center;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: #c7f21b;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 8px solid rgba(255, 255, 255, 0.2);
	font-weight: 900;
	line-height: 1;
	transform: rotate(12deg);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offer-badge strong {
	display: block;
	font-size: 52px;
	margin-bottom: -2px;
}

.offer-badge span {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}


/* ---------- Testimonios ---------- */
.trust-head {
	align-items: flex-start;
}

.trust-inline {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	justify-content: flex-end;
	color: #2d3238;
	font-weight: 700;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.testimonial-card {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.person {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}

.person img {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	object-fit: cover;
}

.person h3 {
	margin: 0 0 4px;
	font-size: 18px;
}

.person p {
	margin: 0;
	color: var(--pink);
	letter-spacing: .2em;
}

.testimonial-card>p {
	margin: 0;
	line-height: 1.6;
	color: #454a52;
}

/* ---------- Beneficios (franja full-width) ---------- */
.benefits-strip {
	width: 100%;
	background: var(--lime);
	padding: 28px 0;
	color: #151913;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: center;
}

.benefits-grid div {
	display: grid;
	gap: 6px;
}

.benefits-grid strong {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.benefits-grid span {
	color: rgba(0, 0, 0, .74);
	font-weight: 700;
	font-size: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: #0d1016;
	color: #f1f3f6;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr .85fr .85fr 1fr;
	gap: 28px;
	padding: 40px 0 26px;
}

.footer-brand img {
	width: 120px;
	margin-bottom: 18px;
}

.footer-brand p {
	max-width: 320px;
	color: #c1c5cc;
	line-height: 1.7;
}

.socials {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.socials a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(201, 242, 9, .4);
	display: grid;
	place-items: center;
	color: var(--lime);
	font-size: 14px;
	font-weight: 800;
}

.site-footer h3 {
	margin: 0 0 14px;
	font-size: 18px;
	text-transform: uppercase;
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.site-footer li,
.site-footer a {
	color: #c1c5cc;
}

.site-footer a:hover {
	color: var(--lime);
}

.footer-bottom {
	text-align: center;
	padding: 16px 0 22px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	color: #a0a5ad;
}

/* ---------- WhatsApp flotante ---------- */
.btp-wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	display: grid;
	place-items: center;
	box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
	z-index: 100;
	transition: transform .2s ease;
}

.btp-wa-float:hover {
	transform: scale(1.08);
}

/* ---------- Selector de moneda ---------- */
.btp-currency-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0, 0, 0, .06);
	border-radius: 999px;
	padding: 4px;
}

.btp-currency-switcher button {
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #10130c;
	transition: all .2s ease;
}

.btp-currency-switcher button.active {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.btp-flag {
	width: 22px;
	height: 16px;
	border-radius: 3px;
	display: inline-block;
}

.btp-flag-br {
	background: linear-gradient(180deg, #009c3b 0 60%, #fedf00 60% 100%);
	position: relative;
}

.btp-flag-br::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, #002776 18%, transparent 19%);
}

.btp-flag-uy {
	background: repeating-linear-gradient(180deg, #fff 0 2px, #0038a8 2px 4px);
	position: relative;
}

.btp-flag-uy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
	height: 45%;
	background: #fff;
}

/* ---------- Empty state ---------- */
.btp-empty {
	padding: 40px;
	text-align: center;
	background: #fff;
	border: 2px dashed var(--line);
	border-radius: 16px;
	color: var(--muted);
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Search form ---------- */
.btp-search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btp-search-input {
	flex: 1;
	padding: 14px 18px;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s ease;
}

.btp-search-input:focus {
	outline: none;
	border-color: var(--pink);
	box-shadow: 0 0 0 3px rgba(255, 22, 148, .15);
}

.btp-search-submit {
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--pink), #ff3d9d);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	font-size: 13px;
	transition: transform .2s ease;
}

.btp-search-submit:hover {
	transform: translateY(-2px);
}

/* ---------- Pagination ---------- */
.btp-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.btp-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	background: #fff;
	border: 1.5px solid var(--line);
	font-weight: 800;
	color: var(--text);
	transition: all .2s ease;
}

.btp-pagination .page-numbers:hover,
.btp-pagination .page-numbers.current {
	background: var(--pink);
	color: #fff;
	border-color: var(--pink);
}

.btp-pagination .page-numbers.dots {
	border: 0;
	background: transparent;
}

/* ---------- Posts fallback ---------- */
.btp-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.btp-post-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.btp-post-card img {
	width: 100%;
}

.btp-post-card h2,
.btp-post-card .excerpt {
	padding: 0 18px;
}

.btp-post-card h2 {
	margin-top: 16px;
}

/* ---------- Compatibilidad Elementor ---------- */
.elementor-active .site-main {
	overflow-x: clip;
}

.elementor-section-stretched {
	width: 100vw !important;
}

.elementor .product-grid,
.elementor .category-grid {
	gap: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.offer-banner {
		grid-template-columns: 280px 1fr;
		padding-right: 0;
		min-height: 420px;
	}

	.offer-badge {
		position: absolute;
		right: 30px;
		bottom: 30px;
		width: 120px;
		height: 120px;
		border-width: 4px;
		transform: rotate(-8deg);
		scale: 0.8;
	}

	.offer-badge strong {
		font-size: 38px;
	}

	.offer-copy {
		padding: 40px 30px;
	}




	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.btp-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.menu-toggle {
		display: block;
	}

	.nav-actions {
		margin-left: auto;
	}

	.main-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: calc(100% + 12px);
		display: none;
		flex-direction: column;
		align-items: flex-start;
		padding: 18px;
		border-radius: 22px;
		background: #12161d;
		box-shadow: var(--shadow);
	}

	.main-nav.open {
		display: flex;
	}

	.main-nav a.active::after,
	.main-nav a:hover::after {
		display: none;
	}

	.trust-inline {
		justify-content: flex-start;
	}

	.testimonial-grid,
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.btp-posts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.topbar-inner {
		justify-content: center;
		padding: 8px 0;
	}

	.brand img,
	.brand .custom-logo {
		width: 74px;
		height: 74px;
	}

	.nav-wrap {
		min-height: 82px;
	}

	.cta-small {
		display: none;
	}

	.section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.category-grid,
	.product-grid,
	.testimonial-grid,
	.btp-posts-grid {
		grid-template-columns: 1fr;
	}

	.category-copy {
		width: 52%;
	}

	.category-card img {
		width: 52%;
	}

	.offer-banner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.offer-visual {
		height: 320px;
	}

	.offer-visual img {
		object-position: center 10%;
	}

	.offer-copy {
		padding: 35px 24px;
		text-align: center;
	}

	.offer-copy h2 {
		font-size: 48px;
	}

	.offer-copy p {
		font-size: 18px;
		margin-bottom: 24px;
	}

	.offer-badge {
		position: relative;
		right: auto;
		bottom: auto;
		top: -30px;
		margin: 0 auto -20px;
		transform: rotate(5deg);
		scale: 1;
		width: 130px;
		height: 130px;
	}

	.hero-overlay {
		padding: 20px;
	}

	.hero-overlay h1 {
		font-size: 28px;
	}

	.hero-overlay p {
		font-size: 15px;
	}
}

/* ---------- Footer Redesign ---------- */
.site-footer {
	background: #121418;
	color: #fff;
	padding: 70px 0 0;
	font-family: 'Inter', sans-serif;
	border-top: 5px solid #c7f21b;
}

.site-footer .container {
	padding-left: clamp(24px, 5vw, 60px);
	padding-right: clamp(24px, 5vw, 60px);
}

.site-footer h3 {
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 60px;
}

.footer-brand {
	position: relative;
}

.footer-brand .footer-logo img,
.footer-brand .custom-logo {
	max-width: 150px;
	height: auto;
	margin-bottom: 25px;
	display: block;
}

.footer-desc {
	color: #a1a1a1;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 320px;
}

.footer-socials {
	display: flex;
	gap: 14px;
}

.social-circle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid #c7f21b;
	color: #c7f21b;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-circle svg {
	width: 20px;
	height: 20px;
}

.social-circle:hover {
	background: #c7f21b;
	color: #121418;
	transform: translateY(-4px) scale(1.05);
}

.footer-links ul,
.footer-contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #a1a1a1;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #c7f21b;
	padding-left: 5px;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #a1a1a1;
	font-size: 14px;
	margin-bottom: 18px;
}

.footer-contact a {
	color: #a1a1a1;
	text-decoration: none;
}

.footer-contact a:hover {
	color: #c7f21b;
}

.contact-icon {
	color: #c7f21b;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon svg {
	width: 22px;
	height: 22px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 28px 0;
	text-align: center;
	background: #0d0f12;
}

.footer-bottom p {
	color: #666;
	font-size: 12px;
	margin: 0;
	letter-spacing: 0.05em;
}

@media (min-width: 761px) {
	.footer-links:first-of-type {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
		padding-left: 50px;
	}
}

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 30px;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.footer-socials {
		justify-content: flex-start;
	}

	.contact-list li {
		justify-content: flex-start;
	}

	.footer-brand .footer-desc {
		margin-left: 0;
		margin-right: 0;
	}

	.footer-links:first-of-type {
		border-left: 0;
		padding-left: 0;
	}
}

/* ---------- Swiper Carousel ---------- */
.btp-carousel-section {
	padding: 40px 0 60px;
}

.btp-main-carousel {
	border-radius: 24px;
	overflow: hidden;
	height: 480px;
	background: #000;
}

.btp-slide-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.slide-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btp-slide-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
	z-index: 2;
}

.slide-content {
	position: relative;
	z-index: 10;
	padding: 0 80px;
	max-width: 800px;
}

.slide-tag {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 99px;
	background: #c7f21b;
	color: #000;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 11px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

.slide-tag.pink {
	background: #ff1694;
	color: #fff;
}

.slide-content h2 {
	color: #fff;
	font-size: 56px;
	line-height: 1.1;
	margin: 0 0 16px;
	font-weight: 900;
}

.slide-content p {
	color: #ccc;
	font-size: 18px;
	margin-bottom: 32px;
	max-width: 450px;
}

.btp-btn-white {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 36px;
	border-radius: 999px;
	background: var(--pink, #ff1694);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.1em;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(255, 22, 148, 0.3);
}

.btp-btn-white span {
	position: relative;
	z-index: 2;
}

.btn-arrow {
	position: relative;
	z-index: 2;
	transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Brillo shimmer */
.btp-btn-white::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	transform: skewX(-25deg);
	transition: 0.5s;
	z-index: 1;
}

.btp-btn-white:hover {
	background: #c7f21b;
	color: #000;
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 10px 25px rgba(199, 242, 27, 0.4);
}

.btp-btn-white:hover::before {
	left: 150%;
	transition: 0.6s ease-in-out;
}

.btp-btn-white:hover .btn-arrow {
	transform: translateX(6px);
}

.btp-btn-white:active {
	transform: translateY(-1px) scale(0.98);
}

/* Swiper overrides */
.swiper-pagination-bullet {
	background: #fff !important;
	opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
	background: #c7f21b !important;
	opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
}

@media (max-width: 768px) {
	.btp-main-carousel {
		height: 400px;
		border-radius: 16px;
	}

	.slide-content {
		padding: 0 30px;
		text-align: center;
		margin: 0 auto;
	}

	.btp-slide-inner::before {
		background: rgba(0, 0, 0, 0.6);
	}

	.slide-content h2 {
		font-size: 36px;
	}

	.slide-content p {
		font-size: 16px;
		margin: 0 auto 24px;
	}
}

/* ============================================================
   ANIMATIONS & REVEAL SYSTEM
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
	will-change: transform, opacity;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-zoom {
	opacity: 0;
	transform: scale(0.92);
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-zoom.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Stagger delays for grids */
.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}