/*
Theme Name: Labora Livros
Author: Deyvid Pereira
Author URI: https://agenciafuse.com.br
Description: Tema WordPress focado em livraria digital com WooCommerce.
Version: 1.0.0
Text Domain: labora-livros
*/

:root {
	--labora-brand-gradient: linear-gradient(135deg, #338e65 0%, #74ddae 100%);
}

.labora-main-menu,
.labora-main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.labora-main-menu > li {
	position: relative;
}

.labora-main-menu > li > a {
	text-transform: uppercase;
	font-weight: 900;
}

.labora-main-menu a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	color: #18152d;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.labora-main-menu a:hover {
	color: #1d8a63;
}

.labora-main-menu .current-menu-item > a,
.labora-main-menu .current-menu-ancestor > a,
.labora-main-menu .current_page_item > a,
.labora-main-menu .current_page_ancestor > a,
.labora-main-menu .current_page_parent > a {
	background: var(--labora-brand-gradient);
	color: #fff;
}

.labora-main-menu .menu-item-has-children > a::after {
	content: "";
	display: inline-flex;
	width: 7px;
	height: 7px;
	margin-left: 2px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
}

.labora-main-menu .sub-menu {
	position: static;
	padding-left: 12px;
}

.labora-main-menu .sub-menu a {
	padding: 6px 0;
	font-size: 14px;
}

@media (max-width: 1023px) {
	.labora-main-menu a {
		display: flex;
		width: 100%;
		padding: 10px 12px;
	}

	.labora-main-menu .sub-menu {
		margin-top: 2px;
		padding-left: 14px;
	}
}

@media (min-width: 1024px) {
	.labora-main-menu .sub-menu {
		position: absolute;
		left: 0;
		top: 100%;
		display: none;
		min-width: 220px;
		padding: 10px 14px;
		border: 1px solid #e8e7f3;
		border-radius: 14px;
		background: #fff;
		box-shadow: 0 10px 30px rgba(22, 20, 43, 0.08);
		z-index: 30;
	}

	.labora-main-menu .sub-menu .sub-menu {
		left: calc(100% + 10px);
		top: -10px;
	}

	.labora-main-menu li:hover > .sub-menu,
	.labora-main-menu li:focus-within > .sub-menu {
		display: block;
	}
}

.woocommerce-mini-cart {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-mini-cart li {
	position: relative;
	padding: 10px;
	border: 1px solid #eceaf5;
	border-radius: 12px;
	background: #faf9ff;
	list-style: none;
}

.woocommerce-mini-cart li > a:not(.remove) {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 12px;
	align-items: center;
	padding-right: 24px;
	color: #1e1a3f;
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-mini-cart li > a:not(.remove):hover {
	color: #1d8a63;
}

.woocommerce-mini-cart img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: 10px;
}

.woocommerce-mini-cart li .quantity {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: #5f5b7a;
}

.woocommerce-mini-cart li .quantity .amount {
	color: #1d8a63;
	font-weight: 700;
}

.woocommerce-mini-cart li > a.remove {
	position: absolute;
	right: 8px;
	top: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	color: #5f5b7a !important;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
}

.woocommerce-mini-cart li > a.remove:hover {
	background: #f0edff;
	color: #1d8a63 !important;
}

.woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 6px 0 4px;
	padding-top: 12px;
	border-top: 1px solid #eceaf5;
	color: #18152d;
	font-size: 14px;
	font-weight: 600;
}

.woocommerce-mini-cart__total .amount {
	color: #1d8a63;
	font-size: 16px;
}

.woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.labora-mini-cart-panel .woocommerce-mini-cart__buttons a,
.labora-mini-cart-panel .woocommerce-mini-cart__buttons a.button,
.labora-mini-cart-panel .woocommerce-mini-cart__buttons a.checkout {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	font-weight: 600;
	border: 1px solid transparent;
	text-decoration: none !important;
	box-shadow: none !important;
}

.labora-mini-cart-panel .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
	background: #f4f2fb !important;
	border-color: #e1ddef !important;
	color: #4b4767 !important;
}

.labora-mini-cart-panel .woocommerce-mini-cart__buttons .button.checkout.wc-forward {
	background: var(--labora-brand-gradient) !important;
	border-color: #338e65 !important;
	color: #fff !important;
}

.labora-mini-cart-panel .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
	background: #f7e8f8 !important;
	border-color: #1d8a63 !important;
	color: #1d8a63 !important;
}

.labora-mini-cart-panel .woocommerce-mini-cart__buttons .button.checkout.wc-forward:hover {
	filter: brightness(0.95);
	color: #fff !important;
}

.labora-mini-cart-panel .woocommerce-mini-cart__empty-message {
	margin: 0;
	padding: 14px;
	border: 1px dashed #d9d4ef;
	border-radius: 12px;
	background: #faf9ff;
	color: #5f5b7a;
	text-align: center;
}

@media (max-width: 640px) {
	.woocommerce-mini-cart li > a:not(.remove) {
		grid-template-columns: 56px 1fr;
		gap: 10px;
		padding-right: 20px;
		font-size: 14px;
	}

	.woocommerce-mini-cart img {
		width: 56px;
		height: 56px;
	}

	.woocommerce-mini-cart__buttons {
		grid-template-columns: 1fr;
	}
}

.labora-topbar-wrapper {
	position: relative;
	z-index: 20;
}

.labora-topbar {
	border: 0;
}

.labora-social-icons a {
	background: var(--labora-brand-gradient);
	border: 1px solid #338e65;
	color: #fff;
}

.labora-social-icons a:hover {
	background: var(--labora-brand-gradient);
	border-color: #338e65;
}

.labora-cart-button {
	background: var(--labora-brand-gradient);
	border-color: #338e65;
	color: #fff;
}

.labora-cart-button:hover {
	background: var(--labora-brand-gradient);
	border-color: #338e65;
}

.material-icons {
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "liga";
}

.labora-social-icons .material-icons,
.labora-cart-button .material-icons {
	color: #fff;
}

.labora-featured-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.labora-featured-card:hover {
	transform: translateY(-3px);
	border-color: #d9d4ef;
	box-shadow: 0 12px 28px rgba(30, 26, 63, 0.1);
}

.labora-featured-card img {
	transition: transform 0.35s ease, filter 0.35s ease;
}

.labora-featured-card:hover img {
	transform: scale(1.03);
	filter: saturate(1.04);
}

.labora-featured-card .amount {
	color: #2f2a55;
	font-size: 1em;
	font-weight: 800;
}

.labora-featured-card .button {
	background: var(--labora-brand-gradient);
	border: 1px solid #338e65;
}

.labora-featured-card .button:hover {
	background: var(--labora-brand-gradient);
	border-color: #338e65;
}

.labora-footer-gradient {
	background: linear-gradient(135deg, #338e65 0%, #74ddae 100%);
	background-size: 160% 160%;
	animation: laboraFooterGradientFlow 44s ease-in-out infinite alternate;
}

@keyframes laboraFooterGradientFlow {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}

body {
	background-image: linear-gradient(135deg, #f2f3f5 0%, #f7f8f9 25%, #e8eaed 50%, #f4f5f7 75%, #edeef1 100%);
	background-size: 300% 300%;
	animation: laboraBackgroundShift 28s ease-in-out infinite;
}

@keyframes laboraBackgroundShift {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
	}
}

/* ==========================================================================
   Shop page
   ========================================================================== */

.labora-shop-results {
	transition: opacity 0.2s ease;
}

.labora-shop-results.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

.labora-shop-search-input:focus {
	box-shadow: 0 0 0 3px rgba(116, 221, 174, 0.22);
}

.labora-shop-checkbox:focus + .labora-shop-checkbox-box {
	box-shadow: 0 0 0 3px rgba(116, 221, 174, 0.28);
}

.labora-shop-checkbox-box .material-icons {
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.labora-shop-checkbox:checked + .labora-shop-checkbox-box .material-icons {
	opacity: 1;
	transform: scale(1);
}

.labora-shop-sidebar select,
.labora-shop-toolbar select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239A99AD'><path d='M5.5 7.5l4.5 4.5 4.5-4.5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 18px;
	padding-right: 38px !important;
}

.labora-shop-price-slider {
	touch-action: none;
}

.labora-shop-price-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 26px;
	margin: 0;
	padding: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	pointer-events: none;
	outline: none;
}

.labora-shop-price-input::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
	border: 0;
}

.labora-shop-price-input::-moz-range-track {
	height: 4px;
	background: transparent;
	border: 0;
}

.labora-shop-price-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 18px;
	width: 18px;
	border-radius: 999px;
	background: #fff;
	border: 3px solid #1d8a63;
	box-shadow: 0 2px 6px rgba(30, 26, 63, 0.18);
	cursor: pointer;
	pointer-events: auto;
	margin-top: -7px;
	transition: transform 0.15s ease;
}

.labora-shop-price-input::-webkit-slider-thumb:hover,
.labora-shop-price-input:focus::-webkit-slider-thumb {
	transform: scale(1.08);
}

.labora-shop-price-input::-moz-range-thumb {
	height: 18px;
	width: 18px;
	border-radius: 999px;
	background: #fff;
	border: 3px solid #1d8a63;
	box-shadow: 0 2px 6px rgba(30, 26, 63, 0.18);
	cursor: pointer;
	pointer-events: auto;
}

.labora-shop-price-input--max {
	z-index: 2;
}

.labora-shop-price-input--min {
	z-index: 3;
}

.labora-shop-price .amount {
	color: #2f2a55;
	font-weight: 800;
}

.labora-shop-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.labora-shop-card-media img {
	transition: transform 0.35s ease, filter 0.35s ease;
}

.labora-shop-card:hover .labora-shop-card-media img {
	filter: saturate(1.05);
}

.labora-shop-card-price .amount,
.labora-shop-card-price bdi {
	color: #1d8a63;
	font-size: 1em;
	font-weight: 900;
}

.labora-shop-card-price del {
	opacity: 0.5;
	margin-right: 6px;
	font-size: 0.6em;
	font-weight: 700;
}

.labora-shop-best-seller {
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	border-radius: 0 !important;
	letter-spacing: 0.5px;
}

.labora-shop-grid--list .labora-shop-card {
	border-color: #ECEAF7;
}

@media (max-width: 1023px) {
	.labora-shop-sidebar {
		position: static;
	}
}

/* ==========================================================================
   Single product
   ========================================================================== */

.labora-single-rating-stars .star-rating {
	float: none;
	display: inline-block;
	margin: 0;
	margin-left: auto;
	color: #1d8a63;
	font-size: 20px;
	letter-spacing: 1px;
}

.labora-single-rating-stars .star-rating::before {
	color: #d8d4ea;
}

.labora-single-default-cart form.cart {
	margin: 0;
}

.labora-single-default-cart .quantity {
	margin-right: 10px;
}

.labora-single-default-cart .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 999px;
	border: 1px solid #338e65;
	background: var(--labora-brand-gradient);
	padding: 0 24px;
	color: #fff;
	font-weight: 700;
}

.labora-single-default-cart .button:hover {
	border-color: #338e65;
	background: var(--labora-brand-gradient);
}

.labora-single-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px !important;
	padding: 0 !important;
	border: 0 !important;
}

.labora-single-tabs ul.tabs::before,
.labora-single-tabs ul.tabs::after {
	display: none !important;
}

.labora-single-tabs ul.tabs li {
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #f4f2fb !important;
	padding: 0 !important;
}

.labora-single-tabs ul.tabs li::before,
.labora-single-tabs ul.tabs li::after {
	display: none !important;
}

.labora-single-tabs ul.tabs li a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px !important;
	color: #5f5b7a !important;
	font-size: 14px;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.labora-single-tabs ul.tabs li.active {
	background: var(--labora-brand-gradient) !important;
}

.labora-single-tabs ul.tabs li.active a {
	color: #fff !important;
}

.labora-single-tabs .woocommerce-Tabs-panel {
	margin: 0 !important;
	padding: 0 !important;
	color: #5f5b7a;
	line-height: 1.7;
}

.labora-single-tabs .woocommerce-Tabs-panel h2:first-child {
	margin-top: 0;
	color: #2f2a55;
	font-size: 24px;
	font-weight: 800;
}

@media (max-width: 767px) {
	.labora-single-tabs ul.tabs li a {
		min-height: 38px;
		padding: 0 14px !important;
		font-size: 12px;
	}
}

/* ==========================================================================
   WooCommerce notices
   ========================================================================== */

.woocommerce-notices-wrapper {
	margin: 0 auto 16px;
	width: 100%;
	max-width: 1280px;
	padding: 0 16px;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin: 0 0 10px !important;
	border: 1px solid #d9d4ef;
	border-radius: 14px;
	background: #fff;
	padding: 10px 12px !important;
	color: #2f2a55;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-notices-wrapper .woocommerce-error::before {
	display: none;
}

.labora-notice-content {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	align-items: center;
	gap: 10px;
}

.labora-notice-icon {
	font-size: 18px;
	color: #8fb427;
}

.labora-notice-text {
	font-size: 14px;
	font-weight: 500;
	color: #4b4767;
}

.labora-notice-button.button,
.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-info .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-error .button.wc-forward {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	margin-left: auto;
	border: 1px solid #e1ddef !important;
	border-radius: 10px;
	background: #f4f2fb !important;
	padding: 0 14px;
	color: #4b4767 !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
}

.labora-notice-button.button:hover,
.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward:hover,
.woocommerce-notices-wrapper .woocommerce-info .button.wc-forward:hover,
.woocommerce-notices-wrapper .woocommerce-error .button.wc-forward:hover {
	border-color: #1d8a63 !important;
	background: #f7e8f8 !important;
	color: #1d8a63 !important;
}

.woocommerce-notices-wrapper .woocommerce-error {
	border-color: #f4ced2;
	background: #fff8f8;
}

.woocommerce-notices-wrapper .woocommerce-error .labora-notice-icon {
	color: #d85066;
}

@media (min-width: 768px) {
	.woocommerce-notices-wrapper {
		padding: 0 32px;
	}
}

@media (min-width: 1024px) {
	.woocommerce-notices-wrapper {
		padding: 0;
	}
}

@media (max-width: 640px) {
	.woocommerce-notices-wrapper .woocommerce-message,
	.woocommerce-notices-wrapper .woocommerce-info,
	.woocommerce-notices-wrapper .woocommerce-error {
		flex-direction: column;
		align-items: stretch;
	}

	.labora-notice-content {
		flex: 0 1 auto;
	}

	.labora-notice-button.button,
	.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward,
	.woocommerce-notices-wrapper .woocommerce-info .button.wc-forward,
	.woocommerce-notices-wrapper .woocommerce-error .button.wc-forward {
		width: 100%;
		margin-left: 0;
		align-self: stretch;
	}
}

/* ==========================================================================
   WPC Product Bundles (kit de livros)
   ========================================================================== */

.single-product .labora-single-default-cart {
	width: 100%;
	margin-left: 0;
}

.single-product .labora-single-default-cart .woosb-wrap.woosb-bundled {
	width: 100% !important;
	margin: 0 0 12px !important;
	padding: 12px !important;
	border: 1px solid #eceaf7 !important;
	border-radius: 14px !important;
	background: #fff !important;
}

.single-product .labora-single-default-cart .woosb-products.woosb-products-layout-list {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #eceaf7 !important;
	border-radius: 12px !important;
	background: #faf9ff !important;
	overflow: hidden !important;
}

.single-product .labora-single-default-cart .woosb-item-product.woosb-product {
	display: grid !important;
	grid-template-columns: 52px minmax(0, 1fr) auto !important;
	gap: 10px !important;
	align-items: start !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 10px 12px !important;
	border: 0 !important;
	border-bottom: 1px solid #eceaf7 !important;
	box-sizing: border-box !important;
}

.single-product .labora-single-default-cart .woosb-item-product.woosb-product:last-child {
	border-bottom: 0 !important;
}

.single-product .labora-single-default-cart .woosb-thumb {
	width: 52px !important;
	float: none !important;
	margin: 0 !important;
}

.single-product .labora-single-default-cart .woosb-thumb-ori img {
	display: block !important;
	width: 52px !important;
	min-width: 52px !important;
	max-width: 52px !important;
	height: 70px !important;
	border-radius: 8px !important;
	object-fit: cover !important;
}

.single-product .labora-single-default-cart .woosb-title {
	min-width: 0 !important;
	float: none !important;
	width: auto !important;
}

.single-product .labora-single-default-cart .woosb-name,
.single-product .labora-single-default-cart .woosb-name a {
	color: #2f2a55 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	text-decoration: none !important;
}

.single-product .labora-single-default-cart .woosb-availability,
.single-product .labora-single-default-cart .woosb-availability .stock {
	margin: 3px 0 0 !important;
	color: #2e7a45 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

.single-product .labora-single-default-cart .woosb-price {
	float: none !important;
	width: auto !important;
	margin: 0 0 0 auto !important;
	text-align: right !important;
}

.single-product .labora-single-default-cart .woosb-price .woocommerce-Price-amount {
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #2f2a55 !important;
}

.single-product .labora-single-default-cart .woosb-price del .woocommerce-Price-amount {
	opacity: 0.55 !important;
}

.single-product .labora-single-default-cart .woosb-price ins {
	text-decoration: none !important;
}

.single-product .labora-single-default-cart .woosb-price ins .woocommerce-Price-amount {
	color: #1d8a63 !important;
}

.single-product .labora-single-default-cart > .stock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #edf8f2;
	color: #23643a;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.single-product .labora-single-default-cart form.cart {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	align-items: center !important;
}

.single-product .labora-single-default-cart form.cart .quantity {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0 8px;
	border: 1px solid #d6d1e8;
	border-radius: 999px;
	background: #fff;
	margin: 0 !important;
}

.single-product .labora-single-default-cart form.cart .quantity .qty {
	width: 64px;
	height: 40px;
	border: 0;
	background: transparent;
	padding: 0 6px;
	color: #2f2a55;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	outline: none;
}

.single-product .labora-single-default-cart form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product .labora-single-default-cart form.cart .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product .labora-single-default-cart form.cart .quantity .qty[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.single-product .labora-single-default-cart form.cart .single_add_to_cart_button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 46px !important;
	border-radius: 999px !important;
	border: 1px solid #338e65 !important;
	background: var(--labora-brand-gradient) !important;
	padding: 0 24px !important;
	color: #fff !important;
	font-weight: 700 !important;
}

.single-product .flex.flex-col.items-start.gap-4 > .text-\[38px\] {
	font-size: clamp(28px, 3.1vw, 36px) !important;
	line-height: 1.05 !important;
}

.single-product .flex.flex-col.items-start.gap-4 > .text-\[38px\] del .woocommerce-Price-amount {
	opacity: 0.55;
	font-size: 0.74em;
	font-weight: 700;
}

.single-product .flex.flex-col.items-start.gap-4 > .text-\[38px\] ins {
	text-decoration: none;
}

.single-product .flex.flex-col.items-start.gap-4 > .text-\[38px\] ins .woocommerce-Price-amount {
	font-weight: 900;
}

@media (max-width: 767px) {
	.single-product .labora-single-default-cart {
		width: 100%;
	}

	.single-product .labora-single-default-cart .woosb-item-product.woosb-product {
		grid-template-columns: 48px minmax(0, 1fr) !important;
	}

	.single-product .labora-single-default-cart .woosb-thumb-ori img {
		width: 48px !important;
		min-width: 48px !important;
		max-width: 48px !important;
		height: 66px !important;
	}

	.single-product .labora-single-default-cart .woosb-price {
		grid-column: 2 !important;
		margin-left: 0 !important;
		text-align: left !important;
	}

	.single-product .labora-single-default-cart form.cart {
		flex-direction: column !important;
		align-items: stretch !important;
	}

	.single-product .labora-single-default-cart form.cart .single_add_to_cart_button {
		width: 100% !important;
	}
}

/* ==========================================================================
   Brand gradient overrides (utilitarios Tailwind e backgrounds solidos)
   ========================================================================== */

.bg-brandBlue,
.bg-brandPink,
.bg-brandGreen,
.bg-brandMint {
	background-color: transparent !important;
	background-image: var(--labora-brand-gradient) !important;
}

.hover\:bg-brandBlue:hover,
.hover\:bg-brandPink:hover,
.hover\:bg-brandGreen:hover,
.hover\:bg-brandMint:hover {
	background-color: transparent !important;
	background-image: var(--labora-brand-gradient) !important;
}

.peer:checked ~ .peer-checked\:bg-brandPink,
.peer:checked ~ .peer-checked\:bg-brandBlue,
.peer:checked ~ .peer-checked\:bg-brandGreen,
.peer:checked ~ .peer-checked\:bg-brandMint {
	background-color: transparent !important;
	background-image: var(--labora-brand-gradient) !important;
}
