/* ============================================================
   BTP Catalog — Public Styles
   ============================================================ */

:root {
	--btp-primary: #ff1694;
	--btp-dark: #16181d;
	--btp-text: #333333;
	--btp-gray: #f8f9fa;
	--btp-border: #eeeeee;
	--btp-radius: 12px;
	--btp-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btp-grid, .product-grid {
	display: grid;
	gap: 25px;
	margin: 30px 0;
}

.btp-grid--categories {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.btp-grid--products, .product-grid {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Favorite button floating */
.btp-btn-fav--floating {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(5px);
	border: 0;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	z-index: 10;
	font-size: 18px;
	color: var(--btp-dark);
}

.btp-btn-fav--floating:hover {
	background: #fff;
	transform: scale(1.1);
	color: var(--btp-primary);
}

.btp-btn-fav--floating.is-active {
	background: var(--btp-primary);
	color: #fff;
}

/* Category Card */
.btp-cat-card {
	display: block;
	text-decoration: none;
	background: #fff;
	border-radius: var(--btp-radius);
	overflow: hidden;
	box-shadow: var(--btp-shadow);
	transition: transform 0.3s ease;
}

.btp-cat-card:hover {
	transform: translateY(-5px);
}

.btp-cat-card__image {
	aspect-ratio: 16/9;
	background: var(--btp-gray);
}

.btp-cat-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btp-cat-card__placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	font-size: 40px;
	font-weight: 900;
	color: var(--btp-primary);
	opacity: 0.2;
}

.btp-cat-card__info {
	padding: 20px;
	text-align: center;
}

.btp-cat-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	color: var(--btp-dark);
}

.btp-cat-card__count {
	font-size: 13px;
	color: #999;
}

/* Product Card */
.btp-product-card {
	background: #fff;
	border-radius: var(--btp-radius);
	overflow: hidden;
	box-shadow: var(--btp-shadow);
	display: flex;
	flex-direction: column;
	position: relative;
	border: 1px solid var(--btp-border);
}

.btp-product-card--featured {
	border-color: var(--btp-primary);
}

.btp-product-card__link {
	text-decoration: none;
	color: inherit;
	flex-grow: 1;
}

.btp-product-card__image {
	aspect-ratio: 4/5;
	background: var(--btp-gray);
	position: relative;
	overflow: hidden;
}

.btp-product-card__image img,
.btp-product-card__image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btp-product-card__badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--btp-primary);
	color: #fff;
	padding: 5px 12px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 900;
	z-index: 2;
}

.btp-product-card__placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	font-size: 50px;
}

.btp-product-card__content {
	padding: 20px;
	text-align: center;
}

.btp-product-card__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: var(--btp-dark);
}

.btp-product-card__price {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.btp-product-card__price-old {
	text-decoration: line-through;
	color: #bbb;
	font-size: 14px;
}

.btp-product-card__price-current {
	font-weight: 900;
	font-size: 20px;
	color: var(--btp-primary);
}

.btp-product-card__actions {
	padding: 0 20px 20px;
}

/* Button */
.btp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: 0;
}

.btp-btn--full {
	width: 100%;
}

.btp-btn--primary {
	background: var(--btp-primary);
	color: #fff;
}

.btp-btn-whatsapp {
	background: #25d366;
	color: #fff;
}

.btp-btn-whatsapp:hover {
	background: #1eb956;
	transform: scale(1.02);
}

/* Empty states */
.btp-no-results, .btp-empty {
	text-align: center;
	padding: 40px;
	background: #fff;
	border-radius: var(--btp-radius);
	color: #999;
	border: 2px dashed #eee;
}

/* Responsive */
@media (max-width: 960px) {
	.btp-grid--products, .product-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}
}

@media (max-width: 768px) {
	.btp-grid {
		gap: 15px;
		margin: 20px 0;
	}
	
	.btp-grid--categories, .btp-grid--products, .product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.btp-product-card__content {
		padding: 12px;
	}

	.btp-product-card__title {
		font-size: clamp(14px, 4vw, 16px);
		margin-bottom: 5px;
	}

	.btp-product-card__price-current {
		font-size: clamp(15px, 4.5vw, 18px);
	}

	.btp-product-card__actions {
		padding: 0 12px 12px;
		gap: 0;
	}

	.btp-btn {
		padding: 10px 15px;
		font-size: 13px;
	}

	.btp-btn--full {
		width: 100%;
	}

	.btp-btn-fav--small {
		width: 100%;
		height: 40px;
	}

	.btp-single-product__title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.btp-grid--categories, .btp-grid--products, .product-grid {
		grid-template-columns: repeat(2, 1fr); /* Mantener 2 columnas pero reducir gaps */
		gap: 10px;
	}

	.btp-product-card__actions {
		padding: 0 8px 12px;
	}
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.btp-testimonials {
	width: 100%;
	overflow: hidden;
	padding: 40px 0;
	position: relative;
}

.btp-testimonials::before,
.btp-testimonials::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	width: 150px;
	z-index: 2;
	pointer-events: none;
}

.btp-testimonials::before {
	left: 0;
	background: linear-gradient(to right, #f8f9fa, transparent);
}

.btp-testimonials::after {
	right: 0;
	background: linear-gradient(to left, #f8f9fa, transparent);
}





.btp-testimonials__viewport {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
}

.btp-testimonials__viewport:active {
	cursor: grabbing;
}

/* Ocultar scrollbar */
.btp-testimonials__viewport::-webkit-scrollbar {
	display: none;
}
.btp-testimonials__viewport {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.btp-testimonials__track {
	display: flex;
	gap: 30px;
	width: max-content;
	padding: 10px 40px; /* Padding extra para que el snap no pegue al borde */
	transition: opacity 0.3s ease;
}


/* Solo animar si tiene esta clase (puesta por JS si sobra contenido) */
.btp-testimonials__track.is-animated {
	animation: btp-marquee 40s linear infinite;
}

.btp-testimonials__track.is-paused {
	animation-play-state: paused !important;
}

.btp-testimonials__viewport.is-grabbing {
	cursor: grabbing;
	scroll-snap-type: none; /* Desactivar snap durante el drag manual para fluidez */
}


/* Centrar si no hay suficientes para animar */
.btp-testimonials:not(.has-scroll) .btp-testimonials__track {
    margin: 0 auto;
    justify-content: center;
    width: 100%;
}

.btp-testimonials__track:hover {
	animation-play-state: paused;
}


.btp-testimonial-card {
	background: #fff;
	border-radius: 24px;
	padding: 30px;
	width: 380px;
	flex-shrink: 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border: 1px solid rgba(0,0,0,0.03);
	transition: transform 0.3s ease;
	scroll-snap-align: center;
}




.btp-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(255, 22, 148, 0.1);
	border-color: rgba(255, 22, 148, 0.2);
}

.btp-testimonial-card__header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.btp-testimonial-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--btp-primary);
}

.btp-testimonial-card__avatar-placeholder {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--btp-primary);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 20px;
}

.btp-testimonial-card__info {
	flex: 1;
}

.btp-testimonial-card__name {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--btp-dark);
}

.btp-testimonial-card__stars {
	color: var(--btp-primary);
	font-size: 14px;
	margin-top: 2px;
}

.btp-testimonial-card__body {
	position: relative;
}

.btp-testimonial-card__text {
	margin: 0;
	color: #6d747e;
	font-size: 15px;
	line-height: 1.6;
	font-style: italic;
}

@keyframes btp-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-50% - 15px)); } /* -50% because we duplicated the items */
}

@media (max-width: 768px) {
	.btp-testimonial-card {
		width: 300px;
		padding: 20px;
	}
	.btp-testimonials__track {
		gap: 20px;
	}
	@keyframes btp-marquee {
		from { transform: translateX(0); }
		to { transform: translateX(calc(-50% - 10px)); }
	}
}


/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.btp-single-product {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	animation: btp-fade-in 0.6s ease-out;
}

.btp-single-product__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* Media Section */
.btp-single-product__media {
	position: sticky;
	top: 100px;
}

.btp-single-product__main-wrap {
	aspect-ratio: 4/5;
	background: var(--btp-gray);
	border-radius: var(--btp-radius);
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	box-shadow: var(--btp-shadow);
	border: 1px solid var(--btp-border);
}

.btp-single-product__main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.btp-single-product__badge--sale {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--btp-primary);
	color: #fff;
	padding: 8px 16px;
	border-radius: 6px;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 1px;
}

.btp-single-product__thumbs {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 10px;
}

.btp-single-product__thumb {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	background: var(--btp-gray);
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.btp-single-product__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btp-single-product__thumb.is-active {
	border-color: var(--btp-primary);
	transform: scale(1.05);
}

.btp-single-product__video-icon {
	width: 100%; height: 100%;
	display: grid; place-items: center;
	font-size: 24px;
}

/* Details Section */
.btp-single-product__breadcrumb {
	font-size: 13px;
	color: #999;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.btp-single-product__breadcrumb a { color: inherit; text-decoration: none; }

.btp-single-product__title {
	font-size: 42px;
	font-weight: 900;
	line-height: 1.1;
	margin: 0 0 15px;
	color: var(--btp-dark);
}

.btp-single-product__meta {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 30px;
	font-size: 14px;
}

.btp-status-dot {
	display: inline-block;
	width: 8px; height: 8px;
	border-radius: 50%;
	margin-right: 5px;
}
.btp-status-dot--success { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }

.btp-single-product__price-wrap {
	display: flex;
	align-items: baseline;
	gap: 15px;
	margin-bottom: 40px;
}

.btp-single-product__price-old {
	font-size: 20px;
	color: #bbb;
	text-decoration: line-through;
}

.btp-single-product__price-current {
	font-size: 40px;
	font-weight: 900;
	color: var(--btp-primary);
}

.btp-single-product__excerpt {
	color: #666;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 40px;
	border-left: 3px solid var(--btp-gray);
	padding-left: 20px;
}

.btp-single-product__actions {
	display: flex;
	gap: 15px;
	margin-bottom: 50px;
}

.btp-btn--large {
	padding: 18px 32px;
	font-size: 16px;
}

.btp-btn-fav {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	border: 2px solid var(--btp-border);
	background: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 24px;
	color: #ccc;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btp-btn-fav:hover {
	border-color: var(--btp-primary);
	color: var(--btp-primary);
	transform: scale(1.05);
}

.btp-btn-fav.is-active {
	background: var(--btp-primary);
	border-color: var(--btp-primary);
	color: #fff;
	animation: btp-pop 0.3s ease;
}

/* Tabs / Description */
.btp-single-product__tabs {
	border-top: 1px solid var(--btp-border);
	padding-top: 40px;
}

.btp-tab-btn {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--btp-dark);
}

.btp-tab-content {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}

@keyframes btp-fade-in {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes btp-pop {
	0% { transform: scale(1); }
	50% { transform: scale(1.4); }
	100% { transform: scale(1); }
}

.btp-wa-float {
	background: transparent !important;
	box-shadow: none !important;
	width: auto !important;
	height: auto !important;
}
.btp-wa-float img {
	width: 65px;
	height: 65px;
	object-fit: contain;
	filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btp-wa-float:hover img {
	transform: scale(1.1) rotate(5deg);
}

/* Responsive grid improvements */
@media (max-width: 960px) {
	.btp-single-product__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.btp-single-product__media {
		position: static;
	}
	.btp-single-product__title {
		font-size: 32px;
	}
}

/* ============================================================
   ZOOM / LIGHTBOX
   ============================================================ */
.btp-zoom-overlay {
	position: fixed; inset: 0; z-index: 100000;
	background: rgba(0,0,0,0.95);
	display: grid; place-items: center;
	padding: 40px;
	cursor: zoom-out;
}

.btp-zoom-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

.btp-zoom-img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: 8px;
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
	transform: scale(0.9);
	animation: btp-zoom-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.btp-zoom-close {
	position: absolute; top: 30px; right: 30px;
	font-size: 40px; color: #fff; cursor: pointer;
	line-height: 1; opacity: 0.7; transition: opacity 0.2s;
}
.btp-zoom-close:hover { opacity: 1; }

@keyframes btp-zoom-in {
	to { transform: scale(1); }
}

/* Pointer cursor for zoomable image */
.btp-single-product__main-wrap { cursor: zoom-in; }

/* ============================================================
   HEADER FAV BUTTON
   ============================================================ */
.btp-header-fav-btn {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.1);
	width: 44px; height: 44px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	position: relative; cursor: pointer;
	transition: all 0.2s ease;
	color: #fff;
	padding: 0;
}
.btp-header-fav-btn:hover {
	background: rgba(255,255,255,0.05);
	border-color: var(--btp-primary);
	color: var(--btp-primary);
	transform: translateY(-2px);
}

.btp-header-fav-btn__icon { font-size: 18px; }

.btp-header-fav-btn__count {
	position: absolute;
	top: -5px; right: -5px;
	background: var(--btp-primary);
	color: #fff;
	font-size: 10px; font-weight: 900;
	min-width: 18px; height: 18px;
	border-radius: 9px;
	display: flex; align-items: center; justify-content: center;
	padding: 0 4px;
	box-shadow: 0 2px 5px rgba(255, 22, 148, 0.4);
}

/* ============================================================
   DRAWER (SIDE PANEL)
   ============================================================ */
.btp-drawer {
	position: fixed; inset: 0; z-index: 1000000;
	visibility: hidden; transition: visibility 0.4s;
}
.btp-drawer.is-active { visibility: visible; }

.btp-drawer__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
	opacity: 0; transition: opacity 0.4s ease;
}
.btp-drawer.is-active .btp-drawer__overlay { opacity: 1; }

.btp-drawer__content {
	position: absolute; top: 0; right: 0; bottom: 0;
	width: 100%; max-width: 400px;
	background: #fff;
	box-shadow: -10px 0 30px rgba(0,0,0,0.1);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex; flex-direction: column;
}
.btp-drawer.is-active .btp-drawer__content { transform: translateX(0); }

.btp-drawer__header {
	padding: 20px 25px;
	display: flex; align-items: center; justify-content: space-between;
	border-bottom: 1px solid var(--btp-border);
}
.btp-drawer__header h3 { margin: 0; font-size: 20px; font-weight: 900; color: var(--btp-dark); }

.btp-drawer__close {
	background: transparent; border: 0;
	font-size: 32px; cursor: pointer; color: #999;
	line-height: 1; transition: color 0.2s;
}
.btp-drawer__close:hover { color: var(--btp-dark); }

.btp-drawer__body {
	flex: 1; overflow-y: auto; padding: 25px;
}

/* Currency Switcher */
.btp-currency-switcher {
	display: inline-flex;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border-radius: 50px;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btp-currency-btn {
	background: transparent;
	border: none;
	padding: 4px 12px;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
	opacity: 0.6;
}

.btp-currency-btn img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	border-radius: 2px;
}

.btp-currency-btn:hover {
	opacity: 1;
}

.btp-currency-btn.is-active {
	background: #fff;
	color: var(--btp-dark);
	opacity: 1;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
	.btp-currency-btn span {
		display: none; /* Solo banderas en móvil si hay poco espacio */
	}
}

/* Live Search */
.btp-search-live {
	position: relative;
	width: 100%;
	max-width: 400px;
}
.btp-search-live__bar {
	position: relative;
	display: flex;
	align-items: center;
}
.btp-search-live__input {
	width: 100%;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50px;
	padding: 10px 45px 10px 20px;
	color: #fff;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}
.btp-search-live__input:focus {
	background: rgba(255,255,255,0.15);
	border-color: var(--btp-primary);
	box-shadow: 0 0 15px rgba(255,22,148,0.2);
}
.btp-search-live__icon {
	position: absolute;
	right: 18px;
	color: var(--btp-primary);
	pointer-events: none;
	display: flex;
	align-items: center;
	filter: drop-shadow(0 0 5px rgba(255,22,148,0.3));
}
.btp-search-live__icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--btp-primary);
}
.btp-search-live__results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	z-index: 1000;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
}
.btp-search-live__results.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.btp-search-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	gap: 15px;
	text-decoration: none;
	border-bottom: 1px solid #f5f5f5;
	transition: background 0.2s ease;
}
.btp-search-item:last-child {
	border-bottom: 0;
}
.btp-search-item:hover {
	background: #fdf2f8;
}
.btp-search-item__img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	background: #eee;
}
.btp-search-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.btp-search-item__info {
	flex: 1;
	min-width: 0;
}
.btp-search-item__title {
	font-size: 14px;
	font-weight: 700;
	color: var(--btp-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 2px;
}
.btp-search-item__price {
	font-size: 13px;
	color: var(--btp-primary);
	font-weight: 800;
}
.btp-search-loading, .btp-search-no-results {
	padding: 30px;
	text-align: center;
	color: #666;
	font-size: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 480px) {
	.btp-search-live {
		max-width: 100%;
	}
}

.site-header .nav-wrap {
	display: flex;
	align-items: center;
}

.site-header .brand { order: 1; }
.header-search-wrap {
	flex: 1;
	max-width: 400px;
	margin: 0 20px;
	order: 2;
}
.site-header .main-nav { order: 3; }
.site-header .nav-actions { order: 4; }

@media (max-width: 1024px) {
	.site-header .nav-wrap {
		flex-wrap: wrap;
		justify-content: space-between;
		padding-bottom: 15px;
	}
	.site-header .brand { order: 1; }
	.site-header .menu-toggle { order: 2; }
	.site-header .nav-actions { order: 3; }
	.header-search-wrap {
		width: 92%;
		max-width: none;
		margin: 15px auto 0;
		order: 10; /* Se va al final de la fila en móvil */
	}
	.site-header .main-nav { display: none; } /* En móvil el nav se maneja por el toggle */
}


.btp-hero-btn {
	padding: 18px 40px !important;
	font-size: 18px !important;
	border-radius: 50px !important;
	background: linear-gradient(90deg, #ff1694, #ff4faf) !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 15px !important;
	position: relative !important;
	overflow: hidden !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	box-shadow: 0 10px 30px rgba(255, 22, 148, 0.4) !important;
	text-transform: uppercase !important;
	font-weight: 900 !important;
}

.btp-hero-btn svg {
	transition: transform 0.3s ease !important;
}

.btp-hero-btn:hover {
	transform: scale(1.05) translateY(-5px) !important;
	box-shadow: 0 15px 40px rgba(255, 22, 148, 0.6) !important;
}

.btp-hero-btn:hover svg {
	transform: translateX(8px) !important;
}

/* Brillo animado (Shimmer) */
.btp-hero-btn::after {
	content: "" !important;
	position: absolute !important;
	top: -50% !important;
	left: -50% !important;
	width: 200% !important;
	height: 200% !important;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	) !important;
	transform: rotate(45deg) !important;
	animation: btp-shimmer 3s infinite !important;
}

@keyframes btp-shimmer {
	0% { left: -100%; top: -100%; }
	100% { left: 100%; top: 100%; }
}

.btp-drawer__footer {
	padding: 25px; border-top: 1px solid var(--btp-border);
}

/* WhatsApp Bubble Fix */
.btp-wa-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}
.btp-wa-float:hover {
	transform: scale(1.1);
	background-color: #128c7e;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}
.btp-wa-float svg {
	width: 60%;
	height: 60%;
	display: block;
	margin: 0;
}
@media (max-width: 768px) {
	.btp-wa-float {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
}

/* Favorite Item in List */
.btp-fav-item {
	display: flex; gap: 15px; margin-bottom: 20px;
	animation: btp-fade-in 0.3s ease forwards;
}

.btp-fav-item__img {
	width: 80px; height: 100px;
	border-radius: 8px; overflow: hidden; flex-shrink: 0;
	background: var(--btp-gray);
}
.btp-fav-item__img img { width: 100%; height: 100%; object-fit: cover; }

.btp-fav-item__info { flex: 1; min-width: 0; }
.btp-fav-item__title {
	font-size: 15px; font-weight: 700; color: var(--btp-dark);
	margin: 0 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.btp-fav-item__price { font-weight: 800; color: var(--btp-primary); font-size: 14px; }

.btp-fav-item__remove {
	background: transparent; border: 0; color: #ccc;
	font-size: 12px; cursor: pointer; padding: 5px 0;
	text-decoration: underline;
}
.btp-fav-item__remove:hover { color: #ff5252; }

/* Empty state in Drawer */
.btp-fav-empty {
	text-align: center; padding: 40px 20px; color: #999;
}
.btp-fav-empty-icon { font-size: 50px; margin-bottom: 15px; display: block; opacity: 0.3; }

/* Loading state */
.btp-drawer__loading {
	height: 100%; display: grid; place-items: center;
}
.btp-spinner {
	width: 30px; height: 30px;
	border: 3px solid var(--btp-gray);
	border-top-color: var(--btp-primary);
	border-radius: 50%;
	animation: btp-spin 0.8s linear infinite;
}
@keyframes btp-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.btp-testimonials {
	padding: 40px 0;
}
.btp-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}
.btp-testimonial-card {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	position: relative;
	border: 1px solid var(--btp-border);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}
.btp-testimonial-card:hover {
	transform: translateY(-5px);
}
.btp-testimonial-card__header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
.btp-testimonial-card__info {
	flex: 1;
}
.btp-testimonial-card__stars {
	color: var(--btp-primary);
	font-size: 14px;
	margin-top: 2px;
	letter-spacing: 2px;
}
.btp-testimonial-card__text {
	font-size: 15px;
	line-height: 1.6;
	color: #444;
	margin: 0;
}
.btp-testimonial-card__avatar, 
.btp-testimonial-card__avatar-placeholder {
	width: 56px; height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #eee;
}
.btp-testimonial-card__name {
	margin: 0;
	font-size: 16px; font-weight: 800;
	color: var(--btp-dark);
}

@media (max-width: 768px) {
	.btp-testimonials__grid {
		grid-template-columns: 1fr;
	}
}
