/* Integração robusta com Hello Elementor, Elementor e WooCommerce */
.single-product .site-main,
.single-product .content-area,
.single-product .woocommerce-notices-wrapper { max-width: none; }
.single-product .site-main { width: 100%; }
.wb-product { width: min(100% - 32px, 1280px); margin: 0 auto 48px; }
.wb-product figure, .wb-product form, .wb-product p { margin-top: 0; }
.wb-product button, .wb-product input, .wb-product select, .wb-product textarea { font: inherit; }
.wb-product button { text-transform: none; }
.wb-product img { box-shadow: none; }
.wb-product .woocommerce-notices-wrapper { margin-bottom: 16px; }
@media (max-width: 767px) { .wb-product { width: 100%; padding: 0 10px 80px; } }

/* =========================================================================
   Winkbuy — Página de produto
   Tokens no :root. Para trocar a identidade, mexa só aqui.
   ========================================================================= */

.wb-product {
	--wb-accent: #4d4df8;
	--wb-accent-hover: #6868fa;
	--wb-accent-soft: rgba(77, 77, 248, .12);
	--wb-accent-soft-hover: rgba(77, 77, 248, .2);
	--wb-success: #00a650;
	--wb-danger: #e5342a;
	--wb-warning: #f5a623;

	--wb-text: #1a1a1a;
	--wb-text-muted: #737373;
	--wb-text-faint: #999;
	--wb-surface: #fff;
	--wb-bg: #f2f2f2;
	--wb-border: #e6e6e6;
	--wb-border-strong: #cfcfcf;

	--wb-radius: 10px;
	--wb-radius-sm: 6px;
	--wb-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .05);

	--wb-gap: 20px;
	--wb-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	font-family: var(--wb-font);
	color: var(--wb-text);
	line-height: 1.45;
}

.wb-product *,
.wb-product *::before,
.wb-product *::after { box-sizing: border-box; }

.wb-product :focus-visible {
	outline: 2px solid var(--wb-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.wb-product .screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ---------- Breadcrumb ---------- */
.wb-breadcrumb {
	font-size: 13px;
	color: var(--wb-text-muted);
	padding: 10px 0 14px;
}
.wb-breadcrumb a { color: var(--wb-text-muted); text-decoration: none; }
.wb-breadcrumb a:hover { color: var(--wb-accent); text-decoration: underline; }
.wb-crumb-sep { margin: 0 6px; color: var(--wb-border-strong); }

/* ---------- Layout ---------- */
.wb-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wb-gap);
	background: var(--wb-surface);
	border: 1px solid var(--wb-border);
	border-radius: var(--wb-radius);
	padding: var(--wb-gap);
	box-shadow: var(--wb-shadow);
}

@media (min-width: 900px) {
	.wb-layout {
		grid-template-columns: minmax(0, 1.35fr) minmax(340px, .85fr);
		gap: 32px;
		padding: 28px;
	}
	.wb-col-buy { position: sticky; top: 90px; align-self: start; }
}

/* =========================================================================
   GALERIA
   ========================================================================= */
.wb-gallery { display: grid; gap: 12px; }

@media (min-width: 768px) {
	.wb-gallery {
		grid-template-columns: 72px minmax(0, 1fr);
		align-items: start;
	}
}

.wb-thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	order: 2;
	scrollbar-width: thin;
	padding-bottom: 4px;
}
@media (min-width: 768px) {
	.wb-thumbs {
		order: 1;
		flex-direction: column;
		overflow-x: visible;
		overflow-y: auto;
		max-height: 520px;
		padding-right: 4px;
	}
}

.wb-thumb {
	flex: 0 0 auto;
	width: 60px; height: 60px;
	padding: 2px;
	border: 1px solid var(--wb-border);
	border-radius: var(--wb-radius-sm);
	background: var(--wb-surface);
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.wb-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.wb-thumb:hover { border-color: var(--wb-accent); }
.wb-thumb.is-active {
	border-color: var(--wb-accent);
	box-shadow: 0 0 0 1px var(--wb-accent);
}

.wb-stage {
	order: 1;
	position: relative;
	background: var(--wb-surface);
	border-radius: var(--wb-radius-sm);
	overflow: hidden;
}
@media (min-width: 768px) { .wb-stage { order: 2; } }

.wb-stage-track {
	display: flex;
	transition: transform .3s cubic-bezier(.4, 0, .2, 1);
	touch-action: pan-y;
}
.wb-slide {
	flex: 0 0 100%;
	margin: 0;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wb-surface);
}
.wb-slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto; height: auto;
	object-fit: contain;
	display: block;
}
@media (min-width: 768px) {
	.wb-slide { cursor: zoom-in; }
}

.wb-stage-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px; height: 36px;
	display: none;
	align-items: center; justify-content: center;
	font-size: 22px; line-height: 1;
	color: var(--wb-text);
	background: rgba(255, 255, 255, .9);
	border: 1px solid var(--wb-border);
	border-radius: 50%;
	cursor: pointer;
}
.wb-stage:hover .wb-stage-nav { display: flex; }
.wb-stage-nav--prev { left: 8px; }
.wb-stage-nav--next { right: 8px; }
.wb-stage-nav[disabled] { opacity: .35; cursor: default; }

.wb-stage-expand {
	position: absolute;
	right: 8px; bottom: 8px;
	width: 34px; height: 34px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid var(--wb-border);
	border-radius: var(--wb-radius-sm);
	cursor: pointer;
	font-size: 16px;
}

.wb-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 10px 0 2px;
}
@media (min-width: 768px) { .wb-dots { display: none; } }
.wb-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--wb-border-strong);
	transition: background .2s ease, width .2s ease;
}
.wb-dot.is-active { background: var(--wb-accent); width: 18px; border-radius: 3px; }

.wb-lightbox {
	position: fixed; inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .92);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
}
.wb-lightbox[hidden] { display: none; }
.wb-lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.wb-lightbox-close {
	position: absolute; top: 16px; right: 20px;
	width: 40px; height: 40px;
	font-size: 28px; line-height: 1;
	color: #fff; background: transparent; border: 0; cursor: pointer;
}

/* =========================================================================
   BUYBOX
   ========================================================================= */
.wb-eyebrow {
	font-size: 13px;
	color: var(--wb-text-muted);
	display: flex; align-items: center; gap: 6px;
	margin-bottom: 6px;
}
.wb-sep { color: var(--wb-border-strong); }

.wb-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 8px;
	color: var(--wb-text);
}
@media (min-width: 900px) { .wb-title { font-size: 22px; } }

.wb-rating-line {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; color: var(--wb-text-muted);
	text-decoration: none;
	margin-bottom: 14px;
}
.wb-rating-line:hover .wb-rating-count { text-decoration: underline; }

.wb-stars {
	position: relative;
	display: inline-block;
	color: var(--wb-border-strong);
	letter-spacing: 1px;
	font-size: 14px;
}
.wb-stars::before {
	content: "★★★★★";
	position: absolute; left: 0; top: 0;
	width: var(--wb-fill, 0%);
	overflow: hidden;
	color: var(--wb-accent);
	white-space: nowrap;
}

/* ---------- Preço ---------- */
.wb-price-block { margin: 14px 0 18px; }
.wb-price-was { font-size: 14px; color: var(--wb-text-faint); min-height: 18px; }
.wb-price-was[hidden] { display: none; }
.wb-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.wb-price-now {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: -.5px;
	color: var(--wb-text);
}
.wb-price-now .woocommerce-Price-currencySymbol { font-size: .6em; margin-right: 2px; }
.wb-discount {
	font-size: 15px;
	font-weight: 600;
	color: var(--wb-success);
}
.wb-discount[hidden] { display: none; }
.wb-installments { font-size: 15px; color: var(--wb-success); margin-top: 4px; }
.wb-installments[hidden] { display: none; }
.wb-pix { font-size: 14px; color: var(--wb-text-muted); margin-top: 6px; }
.wb-pix strong { color: var(--wb-text); }

/* ---------- Swatches ---------- */
.wb-swatch-group { margin-bottom: 16px; }
.wb-swatch-head {
	display: flex; gap: 6px; align-items: baseline;
	font-size: 14px; margin-bottom: 8px;
}
.wb-swatch-label { color: var(--wb-text-muted); }
.wb-swatch-selected { font-weight: 600; }
.wb-swatch-options { display: flex; flex-wrap: wrap; gap: 8px; }

.wb-swatch {
	position: relative;
	background: var(--wb-surface);
	border: 1px solid var(--wb-border-strong);
	border-radius: var(--wb-radius-sm);
	cursor: pointer;
	padding: 0;
	transition: border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.wb-swatch--text {
	min-width: 44px;
	padding: 8px 12px;
	font-size: 14px;
	color: var(--wb-text);
}
.wb-swatch--color { width: 52px; height: 52px; overflow: hidden; }
.wb-swatch--color img,
.wb-swatch-chip { width: 100%; height: 100%; display: block; object-fit: cover; }

.wb-swatch:hover { border-color: var(--wb-accent); }
.wb-swatch[aria-checked="true"] {
	border-color: var(--wb-accent);
	box-shadow: 0 0 0 1px var(--wb-accent);
}
.wb-swatch.is-unavailable {
	opacity: .4;
	border-style: dashed;
	cursor: not-allowed;
}
.wb-swatch.is-unavailable::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top left, transparent 47%, var(--wb-border-strong) 47%, var(--wb-border-strong) 53%, transparent 53%);
	pointer-events: none;
}

.wb-reset {
	background: none; border: 0; padding: 0;
	color: var(--wb-accent); font-size: 13px; cursor: pointer;
	text-decoration: underline;
}
.wb-reset[hidden] { display: none; }

.wb-availability {
	font-size: 13px;
	color: var(--wb-danger);
	margin: 0 0 10px;
	min-height: 18px;
}
.wb-availability:empty { display: none; }

.wb-stock { font-size: 14px; color: var(--wb-text-muted); margin-bottom: 12px; }
.wb-stock.is-low { color: var(--wb-danger); font-weight: 600; }
.wb-stock:empty { display: none; }

/* ---------- Quantidade ---------- */
.wb-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wb-qty-label { font-size: 14px; color: var(--wb-text-muted); }
.wb-qty {
	display: inline-flex; align-items: center;
	border: 1px solid var(--wb-border-strong);
	border-radius: var(--wb-radius-sm);
	overflow: hidden;
}
.wb-qty-btn {
	width: 38px; height: 38px;
	border: 0; background: var(--wb-surface);
	font-size: 18px; line-height: 1; cursor: pointer;
	color: var(--wb-text);
}
.wb-qty-btn:hover:not([disabled]) { background: var(--wb-bg); }
.wb-qty-btn[disabled] { color: var(--wb-text-faint); cursor: default; }
.wb-qty-input {
	width: 48px; height: 38px;
	border: 0;
	border-left: 1px solid var(--wb-border);
	border-right: 1px solid var(--wb-border);
	text-align: center;
	font-size: 15px;
	-moz-appearance: textfield;
}
.wb-qty-input::-webkit-outer-spin-button,
.wb-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- Botões ---------- */
.wb-actions { display: grid; gap: 10px; margin-bottom: 20px; }

.wb-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: var(--wb-radius-sm);
	cursor: pointer;
	transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.wb-btn--primary { background: var(--wb-accent); color: #fff; }
.wb-btn--primary:hover:not([disabled]) { background: var(--wb-accent-hover); }
.wb-btn--secondary { background: var(--wb-accent-soft); color: var(--wb-accent); }
.wb-btn--secondary:hover:not([disabled]) { background: var(--wb-accent-soft-hover); }
.wb-btn--ghost {
	width: auto; min-height: 40px;
	background: transparent;
	color: var(--wb-accent);
	border-color: var(--wb-accent);
	font-size: 14px;
	padding: 8px 16px;
}
.wb-btn--ghost:hover { background: var(--wb-accent-soft); }
.wb-btn[disabled] { opacity: .45; cursor: not-allowed; }

/* Formulário nativo (kill switch ligado no engine do Woo) */
.wb-form--native .quantity { margin-bottom: 12px; }
.wb-form--native .single_add_to_cart_button {
	width: 100%;
	min-height: 48px;
	background: var(--wb-accent);
	color: #fff;
	border-radius: var(--wb-radius-sm);
	font-weight: 600;
}

/* ---------- Frete ---------- */
.wb-shipping {
	border-top: 1px solid var(--wb-border);
	padding-top: 16px;
	margin-bottom: 16px;
}
.wb-shipping-head { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.wb-shipping-form { display: flex; gap: 8px; }
.wb-cep {
	flex: 1 1 auto;
	min-width: 0;
	height: 40px;
	padding: 0 12px;
	font-size: 15px;
	font-family: inherit;
	border: 1px solid var(--wb-border-strong);
	border-radius: var(--wb-radius-sm);
	background: var(--wb-surface);
	color: var(--wb-text);
}
.wb-cep-help {
	display: inline-block;
	font-size: 13px;
	color: var(--wb-accent);
	margin-top: 8px;
	text-decoration: none;
}
.wb-cep-help:hover { text-decoration: underline; }

.wb-shipping-results { margin-top: 12px; font-size: 14px; }
.wb-rate {
	display: flex; justify-content: space-between; gap: 12px;
	padding: 8px 0;
	border-bottom: 1px dashed var(--wb-border);
}
.wb-rate:last-child { border-bottom: 0; }
.wb-rate-cost { font-weight: 600; color: var(--wb-success); white-space: nowrap; }
.wb-shipping-error { color: var(--wb-danger); }

/* ---------- Selos ---------- */
.wb-trust {
	list-style: none;
	margin: 0 0 16px;
	padding: 16px 0 0;
	border-top: 1px solid var(--wb-border);
	display: grid; gap: 12px;
}
.wb-trust-item { display: flex; gap: 10px; align-items: flex-start; }
.wb-trust-icon { font-size: 16px; line-height: 1.3; color: var(--wb-success); }
.wb-trust-body { display: flex; flex-direction: column; font-size: 13px; color: var(--wb-text-muted); }
.wb-trust-body strong { color: var(--wb-accent); font-weight: 600; font-size: 14px; }

.wb-meta {
	display: flex; justify-content: space-between; align-items: center;
	gap: 12px;
	font-size: 13px;
	color: var(--wb-text-faint);
	border-top: 1px solid var(--wb-border);
	padding-top: 12px;
}
.wb-share {
	background: none; border: 0; padding: 0;
	color: var(--wb-accent); font-size: 13px; cursor: pointer;
}

/* =========================================================================
   BLOCOS INFERIORES
   ========================================================================= */
.wb-lower { margin-top: var(--wb-gap); }
.wb-section {
	background: var(--wb-surface);
	border: 1px solid var(--wb-border);
	border-radius: var(--wb-radius);
	padding: 24px;
	margin-bottom: var(--wb-gap);
	box-shadow: var(--wb-shadow);
}
.wb-section-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 18px;
}

/* Ficha técnica */
.wb-specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.wb-specs-table tr:nth-child(odd) { background: #fafafa; }
.wb-specs-table th,
.wb-specs-table td {
	text-align: left;
	padding: 12px 14px;
	vertical-align: top;
	border: 0;
}
.wb-specs-table th { width: 40%; font-weight: 600; color: var(--wb-text-muted); }
.wb-spec-row.is-hidden { display: none; }

.wb-more {
	margin-top: 14px;
	background: none;
	border: 0;
	padding: 8px 0;
	color: var(--wb-accent);
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
}
.wb-more:hover { text-decoration: underline; }

/* Descrição */
.wb-desc-body {
	position: relative;
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	overflow: hidden;
}
.wb-desc-body.is-clamped { max-height: 340px; }
.wb-desc-body img { max-width: 100%; height: auto; display: block; margin: 12px auto; }
.wb-desc-body table { max-width: 100%; }
.wb-desc-fade {
	display: none;
	position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--wb-surface));
	pointer-events: none;
}
.wb-desc-body.is-clamped .wb-desc-fade { display: block; }

/* Avaliações */
.wb-reviews-summary {
	display: grid;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}
@media (min-width: 600px) {
	.wb-reviews-summary { grid-template-columns: 160px minmax(0, 1fr); }
}
.wb-reviews-score { text-align: center; }
.wb-score-number { display: block; font-size: 46px; font-weight: 300; line-height: 1; }
.wb-reviews-score .wb-stars { font-size: 18px; margin: 6px 0; }
.wb-score-count { display: block; font-size: 13px; color: var(--wb-text-muted); }

.wb-reviews-bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.wb-bar-row { display: grid; grid-template-columns: 14px 1fr 30px; gap: 10px; align-items: center; font-size: 12px; color: var(--wb-text-muted); }
.wb-bar { height: 8px; background: var(--wb-bg); border-radius: 4px; overflow: hidden; }
.wb-bar-fill { display: block; height: 100%; background: var(--wb-accent); }
.wb-bar-count { text-align: right; }

/* =========================================================================
   BARRA FIXA MOBILE
   ========================================================================= */
.wb-sticky {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 9990;
	display: flex; align-items: center; gap: 12px;
	padding: 10px 14px;
	padding-bottom: calc(10px + env(safe-area-inset-bottom));
	background: var(--wb-surface);
	border-top: 1px solid var(--wb-border);
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .1);
	transform: translateY(100%);
	transition: transform .25s ease;
}
.wb-sticky[hidden] { display: none; }
.wb-sticky.is-visible { transform: translateY(0); }
@media (min-width: 900px) { .wb-sticky { display: none !important; } }

.wb-sticky-info { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.wb-sticky-price { font-size: 18px; font-weight: 600; white-space: nowrap; }
.wb-sticky-sub { font-size: 12px; color: var(--wb-success); }
.wb-sticky-cta { width: auto; flex: 0 0 auto; min-width: 140px; min-height: 44px; }

/* =========================================================================
   RELACIONADOS
   ========================================================================= */
.wb-product .related.products,
.wb-product .up-sells {
	background: var(--wb-surface);
	border: 1px solid var(--wb-border);
	border-radius: var(--wb-radius);
	padding: 24px;
	margin-top: var(--wb-gap);
}
.wb-product .related.products > h2,
.wb-product .up-sells > h2 { font-size: 20px; font-weight: 600; margin: 0 0 18px; }

/* =========================================================================
   ACESSIBILIDADE / MOVIMENTO
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	.wb-product *,
	.wb-sticky,
	.wb-stage-track { transition: none !important; animation: none !important; }
}

/* Refinamento visual: experiência premium de e-commerce. */
.single-product { background: #f6f7fb; }
.wb-product {
	--wb-accent: #4d4df8; --wb-accent-hover: #6868fa; --wb-accent-active: #3d3dd8; --wb-accent-soft: rgba(77, 77, 248, .1); --wb-accent-soft-hover: rgba(77, 77, 248, .16);
	--wb-text: #171725; --wb-text-muted: #68687a; --wb-bg: #f6f7fb; --wb-border: #e8e8ef; --wb-border-strong: #d5d5e0;
	--wb-radius: 16px; --wb-radius-sm: 10px; --wb-shadow: 0 10px 30px rgba(29, 27, 53, .06);
	width: min(100% - 40px, 1360px); margin-bottom: 64px;
}
.wb-breadcrumb { padding: 22px 2px 12px; font-size: 12px; }
.wb-assurance { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 20px; margin: 0 0 16px; color: #59586c; font-size: 12px; font-weight: 600; }
.wb-assurance span { display: inline-flex; align-items: center; gap: 7px; }
.wb-assurance span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #20a765; box-shadow: 0 0 0 3px rgba(32, 167, 101, .12); }
.wb-layout { border: 0; border-radius: 20px; padding: 16px; gap: 28px; box-shadow: var(--wb-shadow); }
@media (min-width: 900px) { .wb-layout { grid-template-columns: minmax(0, 1.22fr) minmax(385px, .78fr); padding: 24px; gap: 40px; } .wb-col-buy { padding: 8px 4px 4px 0; } }
.wb-gallery { gap: 14px; }
.wb-stage { border: 1px solid #f0f0f4; border-radius: 14px; background: #fafafd; }
.wb-slide { background: #fafafd; }
.wb-stage-expand { width: 38px; height: 38px; right: 14px; bottom: 14px; border-radius: 50%; box-shadow: 0 4px 12px rgba(25, 23, 45, .12); }
.wb-stage-nav { width: 42px; height: 42px; border: 0; box-shadow: 0 4px 14px rgba(25, 23, 45, .12); }
.wb-thumb { width: 66px; height: 66px; padding: 4px; border-radius: 10px; }
.wb-thumb.is-active { border-color: var(--wb-accent); box-shadow: 0 0 0 2px rgba(77, 77, 248, .16); }
.wb-eyebrow { color: var(--wb-accent); font-size: 12px; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; margin-bottom: 9px; }
.wb-title { max-width: 26ch; overflow-wrap: anywhere; font-size: clamp(22px, 1.8vw, 30px); line-height: 1.2; letter-spacing: -.025em; font-weight: 720; margin-bottom: 12px; }
.wb-rating-line { background: #fafafd; border-radius: 8px; padding: 6px 9px; margin-bottom: 16px; }
.wb-stars, .wb-stars::before { color: #f0a500; }
.wb-price-block { border-top: 1px solid var(--wb-border); border-bottom: 1px solid var(--wb-border); padding: 18px 0; margin: 0 0 22px; }
.wb-price-was { font-size: 13px; }
.wb-price-now { font-size: clamp(31px, 2.6vw, 38px); line-height: 1.05; font-weight: 760; letter-spacing: -.035em; }
.wb-discount { padding: 4px 7px; border-radius: 6px; background: #e9f8ef; font-size: 12px; }
.wb-installments { margin-top: 9px; font-size: 14px; font-weight: 600; }
.wb-pix { display: inline-flex; margin-top: 9px; padding: 6px 9px; color: #258c58; background: #f0faf4; border-radius: 6px; font-size: 13px; }
.wb-pix strong { color: #167543; margin-right: 4px; }
.wb-swatch-group { margin-bottom: 20px; }
.wb-variation-products { margin: 0 0 22px; }
.wb-variation-products-title { margin: 0 0 10px; color: var(--wb-text); font-size: 14px; font-weight: 650; }
.wb-variation-products-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.wb-variation-product { display: flex; align-items: center; min-width: 0; gap: 10px; padding: 7px; border: 1px solid var(--wb-border-strong); border-radius: 7px; color: var(--wb-text); background: #fff; text-align: left; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.wb-variation-product:hover { border-color: var(--wb-accent); background: #fcfbff; }
.wb-variation-product.is-active { border-color: var(--wb-accent); box-shadow: 0 0 0 2px rgba(77, 77, 248, .16); background: #faf8ff; }
.wb-variation-product img { width: 48px; height: 48px; flex: 0 0 48px; object-fit: cover; border-radius: 5px; background: #f5f5f8; }
.wb-variation-product-details { display: grid; min-width: 0; gap: 3px; }
.wb-variation-product-details strong { overflow: hidden; color: var(--wb-text); font-size: 12px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.wb-variation-product-price { color: var(--wb-accent); font-size: 13px; font-weight: 700; }
.wb-swatch-head { font-size: 14px; margin-bottom: 10px; }
.wb-swatch-label { color: var(--wb-text); font-weight: 650; }
.wb-swatch--text { min-width: 52px; padding: 9px 14px; font-size: 13px; font-weight: 600; }
.wb-swatch--color { width: 54px; height: 54px; }
.wb-swatch--image { width: 68px; height: 68px; overflow: hidden; border-radius: 7px; background: #fff; }
.wb-swatch--image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wb-swatch[aria-checked="true"] { box-shadow: 0 0 0 2px rgba(77, 77, 248, .16); }
.wb-purchase { margin: 18px 0 22px; padding-top: 18px; border-top: 1px solid var(--wb-border); }
.wb-qty-row { padding: 0; border: 0; border-radius: 0; justify-content: space-between; margin: 0 0 12px; }
.wb-qty-label { color: var(--wb-text); font-size: 13px; font-weight: 700; }
.wb-qty { width: 142px; min-width: 142px; height: 48px; border: 1px solid rgba(77, 77, 248, .38); border-radius: 9px; background: #fff; box-shadow: 0 3px 10px rgba(77, 77, 248, .08); }
.wb-qty-btn { width: 44px; height: 46px; flex: 0 0 44px; padding: 0; border-radius: 0; background: var(--wb-accent-soft); color: var(--wb-accent); font-size: 22px; font-weight: 700; transition: background .15s ease, color .15s ease; }
.wb-qty-btn:hover:not([disabled]) { background: var(--wb-accent); color: #fff; }
.wb-qty-btn:active:not([disabled]) { background: var(--wb-accent-active); }
.wb-qty-input { min-width: 0; width: 52px; height: 46px; color: var(--wb-text); background: #fff; border-color: rgba(77, 77, 248, .18); font-size: 16px; font-weight: 700; }
.wb-actions { gap: 10px; margin: 0; }
.wb-btn { min-height: 54px; padding: 13px 16px; border-radius: 9px; font-size: 15px; font-weight: 720; line-height: 1.2; letter-spacing: .003em; }
.wb-btn--primary { box-shadow: 0 8px 18px rgba(77, 77, 248, .24); }
.wb-btn--primary:hover:not([disabled]) { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(77, 77, 248, .31); }
.wb-btn--primary:active:not([disabled]) { transform: translateY(0); background: var(--wb-accent-active); box-shadow: 0 4px 10px rgba(77, 77, 248, .22); }
.wb-btn--secondary { background: #fff; border-color: var(--wb-accent); color: var(--wb-accent); }
.wb-btn--secondary:hover:not([disabled]) { background: var(--wb-accent-soft); }
.wb-swatch, .wb-thumb, .wb-qty, .wb-qty-btn, .wb-cep { border-radius: 7px; }
.wb-qty { overflow: hidden; }
.wb-shipping { margin-top: 4px; padding: 18px; border: 1px solid var(--wb-border); border-radius: 12px; background: #fcfcfe; }
.wb-shipping-head { color: var(--wb-text); font-size: 14px; }
.wb-cep { border-radius: 8px; height: 40px; }
.wb-btn--ghost { min-height: 40px; border-radius: 7px; }
.wb-cep-help { font-size: 12px; }
.wb-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 18px 0; }
.wb-trust-item { display: block; padding: 8px; border-radius: 8px; }
.wb-trust-icon { display: block; margin-bottom: 5px; }
.wb-trust-body strong { color: var(--wb-text); font-size: 12px; }
.wb-trust-body span { font-size: 11px; line-height: 1.35; }
.wb-meta { padding-top: 16px; }
.wb-lower { margin-top: 28px; max-width: 920px; }
.wb-section { border: 0; border-radius: 16px; padding: clamp(20px, 3vw, 32px); margin-bottom: 18px; box-shadow: var(--wb-shadow); }
.wb-section-title { font-size: 21px; letter-spacing: -.02em; margin-bottom: 20px; }
.wb-specs-table { border: 1px solid var(--wb-border); border-radius: 10px; overflow: hidden; }
.wb-specs-table th, .wb-specs-table td { padding: 13px 16px; }
.wb-specs-table tr:nth-child(odd) { background: #f9f9fc; }
.wb-desc-body { color: #404052; }
@media (max-width: 899px) { .wb-trust { grid-template-columns: 1fr; gap: 2px; } .wb-trust-item { display: flex; padding: 6px 0; } .wb-trust-icon { margin: 0 8px 0 0; } .wb-product { width: min(100% - 20px, 680px); } }
@media (max-width: 500px) { .wb-layout { padding: 12px; border-radius: 14px; } .wb-assurance { gap: 5px 14px; font-size: 11px; } .wb-title { font-size: 25px; } .wb-price-now { font-size: 34px; } .wb-shipping { padding: 14px; } }
@media (max-width: 420px) { .wb-variation-products-list { grid-template-columns: 1fr; } }

/* Modo nativo: os selects seguem ativos, mas a escolha passa a ser visual. */
.wb-native-swatches { margin: 0 0 20px; }
.wb-native-swatch-group:last-child { margin-bottom: 0; }
.wb-native-visual-variations .variations { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

/* Hierarquia e responsividade finais da area de compra. */
.wb-btn { transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease, opacity .15s ease; }
.wb-btn--secondary { background: #fff; border-color: rgba(77, 77, 248, .55); color: var(--wb-accent); box-shadow: none; }
.wb-btn--secondary:hover:not([disabled]) { background: var(--wb-accent-soft); border-color: var(--wb-accent); }
.wb-btn[disabled] { opacity: .46; box-shadow: none; transform: none; }

.wb-form--native form.cart,
.wb-form--native .woocommerce-variation-add-to-cart { gap: 10px; }
.wb-form--native .quantity { margin: 0 0 10px; }
.wb-form--native .quantity .qty { min-height: 48px; border: 1px solid rgba(77, 77, 248, .38); border-radius: 9px; color: var(--wb-text); font-weight: 700; }
.wb-form--native .single_add_to_cart_button { min-height: 54px; border: 0; border-radius: 9px; background: var(--wb-accent); box-shadow: 0 8px 18px rgba(77, 77, 248, .24); font-size: 15px; font-weight: 700; }
.wb-form--native .single_add_to_cart_button:hover { background: var(--wb-accent-hover); }

.wb-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
.wb-cart-row { display: grid; grid-template-columns: 142px minmax(0, 1fr); align-items: end; gap: 10px; }
.wb-cart-row .wb-qty-row { align-items: flex-start; flex-direction: column; gap: 6px; margin: 0; }
.wb-cart-row .wb-btn { min-width: 0; min-height: 48px; }

@media (max-width: 1023px) {
	.wb-layout { grid-template-columns: minmax(0, 1fr); }
	.wb-col-buy { position: static; padding: 4px 2px 2px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
	.wb-product { width: min(100% - 32px, 820px); }
	.wb-layout { padding: 22px; gap: 30px; }
	.wb-title { max-width: 32ch; }
}

@media (max-width: 767px) {
	.wb-product { width: 100%; padding: 0 12px 88px; margin-bottom: 32px; }
	.wb-breadcrumb { padding: 14px 2px 9px; }
	.wb-assurance { margin-bottom: 11px; }
	.wb-layout { padding: 12px; gap: 20px; border-radius: 14px; }
	.wb-title { max-width: none; font-size: clamp(21px, 6.2vw, 25px); line-height: 1.23; }
	.wb-price-block { padding: 15px 0; margin-bottom: 18px; }
	.wb-price-now { font-size: clamp(30px, 9vw, 35px); }
	.wb-swatch-group { margin-bottom: 16px; }
	.wb-swatch--image { width: 62px; height: 62px; }
	.wb-purchase { margin: 16px 0 20px; padding-top: 16px; }
	.wb-qty-row { min-height: 48px; }
	.wb-btn { min-height: 52px; }
	.wb-shipping { padding: 14px; }
}

@media (max-width: 420px) {
	.wb-product { padding-right: 9px; padding-left: 9px; }
	.wb-layout { padding: 10px; }
	.wb-eyebrow { font-size: 11px; }
	.wb-rating-line { font-size: 12px; }
	.wb-swatch-options { gap: 7px; }
	.wb-swatch--image { width: 58px; height: 58px; }
	.wb-swatch--text { min-width: 46px; padding: 8px 11px; font-size: 12px; }
	.wb-qty { width: 138px; min-width: 138px; }
	.wb-btn { padding-right: 12px; padding-left: 12px; font-size: 14px; }
	.wb-cart-row { grid-template-columns: 138px minmax(0, 1fr); gap: 8px; }
}

/* Estados interativos consistentes para todos os botoes. */
.wb-product .wb-btn--primary,
.wb-product .single_add_to_cart_button,
.wb-product a.button,
.wb-product button.button,
.wb-product input.button {
	border-color: var(--wb-accent);
	background: var(--wb-accent);
	color: #fff;
	box-shadow: 0 8px 18px rgba(77, 77, 248, .24);
}
.wb-product .wb-btn--secondary {
	border-color: rgba(77, 77, 248, .58);
	background: #fff;
	color: var(--wb-accent);
	box-shadow: none;
}
.wb-product .wb-btn--ghost {
	border-color: var(--wb-accent);
	background: transparent;
	color: var(--wb-accent);
	box-shadow: none;
}

.wb-thumb,
.wb-swatch,
.wb-stage-nav,
.wb-stage-expand,
.wb-lightbox-close,
.wb-reset,
.wb-share,
.wb-more {
	transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease, opacity .15s ease;
}
.wb-reset { margin-left: -8px; padding: 6px 8px; border-radius: 7px; text-decoration: none; }
.wb-share { margin: -6px -8px; padding: 6px 8px; border-radius: 7px; }
.wb-more { margin-left: -10px; padding-right: 10px; padding-left: 10px; border-radius: 7px; }
.wb-stage-nav,
.wb-stage-expand { color: var(--wb-accent); }
.wb-lightbox-close { border-radius: 50%; }

@media (hover: hover) and (pointer: fine) {
	.wb-product .wb-btn--primary:hover:not(:disabled),
	.wb-product .single_add_to_cart_button:hover:not(:disabled),
	.wb-product a.button:hover,
	.wb-product button.button:hover:not(:disabled),
	.wb-product input.button:hover:not(:disabled) {
		border-color: var(--wb-accent);
		background: var(--wb-accent-hover);
		color: #fff;
		box-shadow: 0 10px 22px rgba(77, 77, 248, .32);
		transform: translateY(-1px);
	}
	.wb-product .wb-btn--secondary:hover:not(:disabled) {
		border-color: var(--wb-accent);
		background: var(--wb-accent-soft);
		color: var(--wb-accent-hover);
		box-shadow: 0 6px 14px rgba(77, 77, 248, .12);
		transform: translateY(-1px);
	}
	.wb-product .wb-btn--ghost:hover:not(:disabled) {
		border-color: var(--wb-accent);
		background: var(--wb-accent-soft-hover);
		color: var(--wb-accent);
		box-shadow: 0 4px 10px rgba(77, 77, 248, .1);
	}
	.wb-qty-btn:hover:not(:disabled) { background: var(--wb-accent-soft-hover); color: var(--wb-accent); }
	.wb-thumb:hover {
		border-color: var(--wb-accent);
		background: var(--wb-accent-soft);
		box-shadow: 0 5px 14px rgba(77, 77, 248, .15);
		transform: translateY(-1px);
	}
	.wb-swatch:hover:not(:disabled) {
		border-color: var(--wb-accent);
		background: var(--wb-accent-soft);
		box-shadow: 0 5px 14px rgba(77, 77, 248, .14);
		transform: translateY(-1px);
	}
	.wb-swatch[aria-checked="true"]:hover { box-shadow: 0 0 0 2px rgba(77, 77, 248, .2), 0 6px 15px rgba(77, 77, 248, .16); }
	.wb-stage-nav:hover,
	.wb-stage-expand:hover { border-color: var(--wb-accent); background: var(--wb-accent-soft-hover); color: var(--wb-accent); box-shadow: 0 6px 14px rgba(77, 77, 248, .14); }
	.wb-reset:hover,
	.wb-share:hover,
	.wb-more:hover { background: var(--wb-accent-soft); color: var(--wb-accent-hover); text-decoration: none; }
	.wb-lightbox-close:hover { background: rgba(255, 255, 255, .14); color: #fff; transform: rotate(5deg); }
}

.wb-product .wb-btn:active:not(:disabled),
.wb-product .single_add_to_cart_button:active:not(:disabled),
.wb-product a.button:active,
.wb-product button.button:active:not(:disabled),
.wb-product input.button:active:not(:disabled) {
	border-color: var(--wb-accent-active);
	background: var(--wb-accent-active);
	color: #fff;
	box-shadow: 0 4px 10px rgba(77, 77, 248, .2);
	transform: translateY(0) scale(.985);
}
.wb-product .wb-btn--secondary:active:not(:disabled) { color: #fff; }
.wb-qty-btn:active:not(:disabled) { background: var(--wb-accent-active); color: #fff; }
.wb-thumb:active,
.wb-swatch:active:not(:disabled),
.wb-stage-expand:active { transform: scale(.97); }
.wb-stage-nav:active { background: var(--wb-accent-active); color: #fff; }

.wb-product button:disabled,
.wb-product input:disabled,
.wb-product .disabled {
	cursor: not-allowed;
}
.wb-product .wb-btn:disabled,
.wb-product .single_add_to_cart_button:disabled,
.wb-product button.button:disabled,
.wb-product input.button:disabled {
	border-color: rgba(77, 77, 248, .3);
	background: rgba(77, 77, 248, .11);
	color: #7777d6;
	box-shadow: none;
	transform: none;
}
.wb-product .wb-btn--primary:disabled,
.wb-product .single_add_to_cart_button:disabled {
	border-color: #b8b8fc;
	background: #b8b8fc;
	color: #fff;
}

@media (hover: none) {
	.wb-product .wb-btn--primary:hover:not(:active):not(:disabled),
	.wb-product .single_add_to_cart_button:hover:not(:active):not(:disabled),
	.wb-product a.button:hover:not(:active),
	.wb-product button.button:hover:not(:active):not(:disabled),
	.wb-product input.button:hover:not(:active):not(:disabled) {
		border-color: var(--wb-accent);
		background: var(--wb-accent);
		box-shadow: 0 8px 18px rgba(77, 77, 248, .24);
		transform: none;
	}
	.wb-product .wb-btn--secondary:hover:not(:active):not(:disabled) { border-color: rgba(77, 77, 248, .58); background: #fff; color: var(--wb-accent); box-shadow: none; transform: none; }
	.wb-product .wb-btn--ghost:hover:not(:active):not(:disabled) { background: transparent; color: var(--wb-accent); box-shadow: none; }
	.wb-qty-btn:hover:not(:active):not(:disabled) { background: var(--wb-accent-soft); color: var(--wb-accent); }
	.wb-thumb:hover:not(:active),
	.wb-swatch:hover:not(:active):not(:disabled) { background: #fff; transform: none; }
}
