/* GO SHOP — frontend */

.go-shop-free-shipping-bar {
	margin: 12px 0;
	font-size: 14px;
}
.go-shop-fsb__msg {
	margin: 0 0 6px;
}
.go-shop-fsb__msg--success {
	color: #1a7f37;
	font-weight: 600;
}
.go-shop-fsb__track {
	background: #eee;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
}
.go-shop-fsb__fill {
	background: #1a7f37;
	height: 100%;
	transition: width 0.3s ease;
}

.go-shop-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 2px 8px;
	border-radius: 4px;
	line-height: 1.6;
	margin-right: 4px;
}
.go-shop-badge-wrap--single {
	margin-bottom: 8px;
}
.go-shop-gift-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	background: #ffd700;
	color: #111;
	margin-right: 4px;
}
.go-shop-gift-notice {
	margin: 8px 0;
	font-size: 13px;
}

.go-shop-transferencia,
.go-shop-cuotas {
	font-size: 13px;
	margin: 2px 0;
}
.go-shop-transferencia__label {
	font-weight: 600;
}

.go-shop-size-guide {
	margin: 10px 0;
}
.go-shop-size-guide__trigger {
	background: none;
	border: none;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
	font-size: 13px;
}
.go-shop-size-guide__content {
	margin-top: 8px;
}
.go-shop-size-guide__content[hidden] {
	display: none;
}

/* Hover image: relies on the product-loop anchor being position:relative.
   WooCommerce's default loop markup uses these classes; if a theme/builder
   renders different markup the selector below may need adjusting. */
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	position: relative;
	display: block;
}
.go-shop-hover-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
.woocommerce ul.products li.product a:hover .go-shop-hover-image,
.woocommerce ul.products li.product.go-shop-hover-active .go-shop-hover-image {
	opacity: 1;
}
