.imgProduct{
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f5f5f5;
}

.imgProduct img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: .3s all ease;
}

.imgProduct img:hover{
	opacity: .8;
	transform: scale(1.1, 1.1);
}

.badgeNew{
	background:#F0AD4E !important;
	color:white !important;
}

.searchDropdown{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #dee2e6;
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
	z-index: 9999;
	max-height: 320px;
	overflow-y: auto;
}

.searchDropdown__item a{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	color: #333;
	text-decoration: none;
	transition: background .15s;
}

.searchDropdown__item a:hover{
	background: #f8f9fa;
}

.searchDropdown__img{
	width: 40px;
	height: 40px;
	object-fit: cover;
	flex-shrink: 0;
}

.searchDropdown__noimg{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	color: #aaa;
	flex-shrink: 0;
}

.searchDropdown__name{
	font-size: .85rem;
	text-transform: uppercase;
}

.searchDropdown__active > a{
	background: #f0f0f0;
}

.searchDropdown__empty{
	padding: 12px 16px;
	color: #999;
	font-size: .85rem;
	text-align: center;
}

/*=============================================
Barra de filtros
=============================================*/

.filterSelect{
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.filterPriceMin,
.filterPriceMax{
	font-size: .8rem;
}

.filterPriceMin::-webkit-outer-spin-button,
.filterPriceMin::-webkit-inner-spin-button,
.filterPriceMax::-webkit-outer-spin-button,
.filterPriceMax::-webkit-inner-spin-button{
	-webkit-appearance: none;
	margin: 0;
}

.filterPriceMin[type=number],
.filterPriceMax[type=number]{
	-moz-appearance: textfield;
}

/*=============================================
Botón flotante WhatsApp
=============================================*/

.wsFloatBtn{
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	box-shadow: 0 4px 12px rgba(0,0,0,.25);
	z-index: 9999;
	text-decoration: none;
	transition: transform .2s, box-shadow .2s;
}

.wsFloatBtn:hover{
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

/*=============================================
Product Card
=============================================*/

.productCard{
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
	transition: box-shadow .2s, transform .2s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.productCard:hover{
	box-shadow: 0 6px 20px rgba(0,0,0,.14);
	transform: translateY(-3px);
}

.productCard .imgProduct{
	border-radius: 0;
	margin-bottom: 0;
}

.productCard__body{
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.productCard__name{
	font-size: .82rem;
	font-weight: 700;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	margin-bottom: 8px;
	line-height: 1.4;
}

.productCard__name:hover{
	color: #444;
	text-decoration: none;
}

.productCard__price{
	text-align: center;
	margin-bottom: 8px;
}

.productCard__offer{
	font-size: 1rem;
	font-weight: 700;
}

.productCard__original{
	font-size: .8rem;
	color: #aaa;
	text-decoration: line-through;
	margin-left: 5px;
}

.productCard__badges{
	text-align: center;
	margin-bottom: 8px;
}

.productCard__actions{
	margin-top: auto;
}

.btn-buynow{
	background: #28a745;
	border: none;
	color: #fff !important;
	line-height: 1.2;
	padding-top: 6px;
	padding-bottom: 6px;
}

.btn-buynow:hover,
.btn-buynow:focus{
	background: #1e7e34;
	color: #fff !important;
}

.btn-buynow small{
	display: block;
	font-size: .68rem;
	opacity: .9;
}