/**
 * Commerce — busca fina, sidecart estilo Americanas, loja.
 */

/* Search expand styles vivem em header.css (sempre carregado). */

/* ========== Sidecart — claro (branco / texto preto) ========== */
.pg-sidecart {
	position: fixed;
	inset: 0;
	z-index: 10060;
	pointer-events: none;
	visibility: hidden;
}

.pg-sidecart.is-open {
	pointer-events: auto;
	visibility: visible;
}

.pg-sidecart__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.pg-sidecart.is-open .pg-sidecart__backdrop {
	opacity: 1;
}

.pg-sidecart__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(420px, 100vw);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: -18px 0 48px rgba(0, 0, 0, 0.18);
	color: #111;
	transform: translateX(104%);
	transition: transform 0.34s var(--pg-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.pg-sidecart.is-open .pg-sidecart__panel {
	transform: translateX(0);
}

.pg-sidecart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.15rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
}

.pg-sidecart__title {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--pg-font-heading);
	font-size: 1.45rem;
	font-weight: 600;
	color: #111;
	letter-spacing: -0.02em;
}

.pg-sidecart__count {
	display: inline-grid;
	place-items: center;
	min-width: 1.55rem;
	height: 1.55rem;
	padding: 0 0.4rem;
	border-radius: 999px;
	background: var(--pg-accent, #111111);
	color: #fff;
	font-family: var(--pg-font-body);
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
}

.pg-sidecart__close {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: transparent;
	position: relative;
	cursor: pointer;
	flex: 0 0 auto;
}

.pg-sidecart__close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 1.5px;
	background: #111;
}

.pg-sidecart__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.pg-sidecart__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.pg-sidecart__body {
	flex: 1;
	min-height: 0;
	overflow: auto;
	display: flex;
	flex-direction: column;
	background: #fff;
}

.pg-sidecart__empty {
	margin: auto;
	text-align: center;
	padding: 2.5rem 1.5rem;
	display: grid;
	gap: 1rem;
	justify-items: center;
	color: #333;
}

.pg-sidecart__empty p {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111;
}

.pg-sidecart__empty .pg-btn {
	margin-top: 0.15rem;
}

.pg-sidecart__list {
	list-style: none;
	margin: 0;
	padding: 0.85rem 1.1rem 1.25rem;
	display: grid;
	gap: 0;
	flex: 1;
}

.pg-sidecart__item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 0.85rem;
	padding: 0.95rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pg-sidecart__item:last-child {
	border-bottom: 0;
}

.pg-sidecart__thumb img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	display: block;
	background: #f3f3f3;
}

.pg-sidecart__name {
	display: block;
	font-family: var(--pg-font-body);
	font-size: 0.92rem;
	font-weight: 600;
	color: #111;
	text-decoration: none;
	margin-bottom: 0.55rem;
	line-height: 1.3;
}

.pg-sidecart__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.pg-sidecart__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 2px;
	overflow: hidden;
}

.pg-sidecart__qty button {
	width: 30px;
	height: 30px;
	border: 0;
	background: #f5f5f5;
	color: #111;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
}

.pg-sidecart__qty button:hover {
	background: #ebebeb;
}

.pg-sidecart__qty input {
	width: 36px;
	height: 30px;
	border: 0 !important;
	border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
	border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #111 !important;
	text-align: center;
	box-shadow: none !important;
	padding: 0 !important;
	-moz-appearance: textfield;
	font-size: 0.85rem !important;
}

.pg-sidecart__qty input::-webkit-outer-spin-button,
.pg-sidecart__qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pg-sidecart__price {
	color: #111;
	font-weight: 750;
	font-size: 0.95rem;
}

.pg-sidecart__remove {
	margin-top: 0.45rem;
	border: 0;
	background: transparent;
	color: #777;
	font-size: 0.72rem;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pg-sidecart__remove:hover {
	color: #111;
}

.pg-sidecart__footer {
	margin-top: auto;
	padding: 1rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: #fafafa;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.pg-sidecart__coupon {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.45rem;
	margin-bottom: 0.75rem;
}

.pg-sidecart__coupon input {
	min-height: 40px !important;
	padding: 0.55rem 0.75rem !important;
	background: #fff !important;
	border: 1px solid rgba(0, 0, 0, 0.14) !important;
	color: #111 !important;
	border-radius: 2px !important;
	box-shadow: none !important;
}

.pg-sidecart .pg-btn--soft {
	background: #111;
	color: #fff !important;
	border: 1px solid #111;
	min-height: 40px;
	padding: 0.55rem 0.9rem;
}

.pg-sidecart__coupon-msg {
	margin: 0 0 0.65rem;
	font-size: 0.8rem;
	color: #b45309;
}

.pg-sidecart__coupon-msg.is-error {
	color: #c0392b;
}

.pg-sidecart__coupons {
	list-style: none;
	margin: 0 0 0.85rem;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}

.pg-sidecart__coupons li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.45rem 0.65rem;
	background: rgba(232, 93, 4, 0.08);
	border: 1px solid rgba(232, 93, 4, 0.22);
	font-size: 0.82rem;
	color: #111;
}

.pg-sidecart__coupons button {
	border: 0;
	background: transparent;
	color: #666;
	cursor: pointer;
	font-size: 0.75rem;
}

.pg-sidecart__totals {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 0.95rem;
}

.pg-sidecart__row {
	display: flex;
	justify-content: space-between;
	color: #555;
	font-size: 0.9rem;
}

.pg-sidecart__row strong {
	color: #111;
}

.pg-sidecart__row--discount strong {
	color: #1f7a4d;
}

.pg-sidecart__row--total {
	padding-top: 0.35rem;
	border-top: 0;
	font-size: 1rem;
	color: #111;
	font-weight: 650;
}

.pg-sidecart__row--total strong {
	color: #111;
	font-size: 1.25rem;
}

.pg-sidecart__note {
	margin: 0.2rem 0 0;
	font-size: 0.72rem;
	color: #888;
}

.pg-sidecart__actions {
	display: grid;
	gap: 0.65rem;
}

.pg-sidecart__actions .pg-btn--block {
	margin-top: 0 !important;
}

.pg-sidecart__actions .pg-btn--primary {
	min-height: 3.15rem;
	font-size: 0.8rem;
	border: 0 !important;
	box-shadow: none !important;
}

.pg-sidecart__actions .pg-btn--ghost {
	border: 0 !important;
	border-radius: 0 !important;
	color: #444 !important;
	background: transparent !important;
	min-height: auto;
	padding: 0.35rem 0 !important;
	text-decoration: underline !important;
	text-underline-offset: 3px;
	letter-spacing: 0.04em;
	transform: none !important;
}

.pg-sidecart__actions .pg-btn--ghost:hover {
	color: var(--pg-accent-hot, #111111) !important;
	background: transparent !important;
	transform: none !important;
}

/* ========== Shop / archive / search ========== */

/* Esconde hero quebrado do Blocksy na loja/categoria */
body.woocommerce-shop .hero-section,
body.tax-product_cat .hero-section,
body.tax-product_tag .hero-section,
body.post-type-archive-product .hero-section,
body.search-results.woocommerce .hero-section {
	display: none !important;
}

/* Título/breadcrumb nativos (já temos .pg-catalog-hero) */
body.woocommerce-shop .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_tag .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header,
body.search-results.woocommerce .woocommerce-products-header,
body.woocommerce-shop .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-breadcrumb,
body.post-type-archive-product .woocommerce-breadcrumb,
body.search-results.woocommerce .woocommerce-breadcrumb,
body.woocommerce-shop .woocommerce-products-header__title,
body.search-results.woocommerce .woocommerce-products-header__title,
body.woocommerce-shop h1.page-title,
body.search-results.woocommerce h1.page-title {
	display: none !important;
}

body.woocommerce-shop,
body.tax-product_cat,
body.tax-product_tag,
body.post-type-archive-product,
body.search-results.woocommerce {
	background: #fff;
}

body.woocommerce-shop .site-content,
body.tax-product_cat .site-content,
body.tax-product_tag .site-content,
body.post-type-archive-product .site-content,
body.woocommerce-shop main#main,
body.tax-product_cat main#main,
body.tax-product_tag main#main,
body.search-results .site-content,
body.search-results.woocommerce main.pg-main,
body.search-results.woocommerce main#main {
	background: #fff !important;
	color: #1a1a1a;
}

/* ---- Hero premium (claro) ---- */
.pg-catalog-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 0;
	display: flex;
	align-items: flex-end;
	margin: 0;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
	background:
		radial-gradient(ellipse 55% 80% at 90% 0%, rgba(17, 17, 17, 0.04), transparent 55%),
		linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
}

.pg-catalog-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pg-catalog-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.22;
	filter: saturate(0.9);
}

.pg-catalog-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.88) 100%),
		linear-gradient(0deg, #fff, transparent 60%);
	pointer-events: none;
}

.pg-catalog-hero__inner {
	position: relative;
	z-index: 2;
	width: min(100% - 2.5rem, 1240px);
	margin: 0 auto;
	padding: 1.35rem 0 1.5rem;
}

.pg-catalog-hero__eyebrow {
	display: none;
}

.pg-catalog-hero__title {
	margin: 0;
	font-family: var(--pg-font-heading);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: #111 !important;
}

.pg-catalog-hero__desc {
	margin: 0.85rem 0 0;
	max-width: 36rem;
	color: #5a5a5a;
	font-size: 1.02rem;
	line-height: 1.55;
}

.pg-catalog-hero__bar {
	display: block;
	width: 72px;
	height: 3px;
	margin-top: 1.35rem;
	border-radius: 99px;
	background: var(--pg-gradient-fire, linear-gradient(90deg, #111111, #333333));
}

.pg-catalog-hero__count {
	margin: 0.9rem 0 0;
	color: #8a8a8a;
	font-size: 0.88rem;
	font-weight: 500;
}

/* ---- Layout filtros + grid ---- */
.pg-catalog {
	width: min(100% - 2.5rem, 1240px);
	margin: 0 auto;
	padding: 2.5rem 0 4.5rem;
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.pg-catalog__filters {
	position: sticky;
	top: 7.5rem;
	align-self: start;
}

.pg-catalog__main {
	min-width: 0;
	align-self: start;
}

.pg-catalog__main .woocommerce-info,
.pg-catalog__main .woocommerce-message,
.pg-catalog__main .woocommerce-error,
.pg-catalog__main .wc-block-components-notice-banner {
	margin: 0 0 1.25rem !important;
	width: 100%;
}

.pg-filters {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.1);
	border-radius: 14px;
	padding: 1.25rem 1.2rem 1.35rem;
	box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
}

.pg-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1.15rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.pg-filters__head strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: #111;
	letter-spacing: 0.02em;
}

.pg-filters__clear {
	color: var(--pg-accent-hot, #111111) !important;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none !important;
}

.pg-filters__clear:hover {
	text-decoration: underline !important;
}

.pg-filters__block {
	margin-bottom: 1.15rem;
}

.pg-filters__label {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a8a8a;
}

.pg-filters__select,
.pg-filters__price input {
	width: 100%;
	min-height: 2.55rem;
	padding: 0.55rem 0.75rem;
	border: 1px solid rgba(10, 10, 10, 0.14) !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 0.9rem;
	box-shadow: none !important;
}

.pg-filters__select:focus,
.pg-filters__price input:focus {
	border-color: #111 !important;
	outline: none !important;
	box-shadow: 0 0 0 1px #111 !important;
}

.pg-filters__price {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.45rem;
	align-items: center;
}

.pg-filters__price span {
	color: #b0b0b0;
	text-align: center;
}

.pg-filters__check {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.55rem;
	color: #3a3a3a;
	font-size: 0.9rem;
	cursor: pointer;
}

.pg-filters__check input {
	accent-color: var(--pg-accent-hot, #111111);
}

.pg-filters__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.25rem;
}

.pg-filters__cats a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.45rem 0.55rem;
	border-radius: 8px;
	color: #3a3a3a !important;
	text-decoration: none !important;
	font-size: 0.9rem;
	transition: background 0.15s ease, color 0.15s ease;
}

.pg-filters__cats a:hover {
	background: #f5f5f5;
	color: #111 !important;
}

.pg-filters__cats li.is-active a {
	background: rgba(232, 93, 4, 0.08);
	color: #111 !important;
	font-weight: 600;
}

.pg-filters__cats em {
	font-style: normal;
	font-size: 0.78rem;
	color: #9a9a9a;
}

.pg-filters__submit {
	width: 100%;
	min-height: 2.7rem;
	margin-top: 0.35rem;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 0.9rem !important;
	cursor: pointer;
	box-shadow: none !important;
}

.pg-filters__submit:hover {
	background: #d04f00 !important;
	color: #fff !important;
}

/* ---- Toolbar: classificar + layout ---- */
.pg-catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	flex-wrap: wrap;
	margin: 0 0 1.35rem;
	padding: 0 0 1rem;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.pg-catalog-toolbar__count {
	margin: 0;
	color: #8a8a8a;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pg-catalog-toolbar__controls {
	display: flex;
	align-items: center;
	gap: 0.85rem 1.15rem;
	flex-wrap: wrap;
	margin-left: auto;
}

.pg-catalog-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
}

.pg-catalog-toolbar__sort-label {
	margin: 0;
	color: #5a5a5a;
	font-size: 0.86rem;
	font-weight: 600;
	white-space: nowrap;
}

.pg-catalog-toolbar__select {
	min-width: 10.5rem;
	min-height: 2.4rem;
	padding: 0.4rem 2rem 0.4rem 0.75rem !important;
	border: 1px solid rgba(10, 10, 10, 0.14) !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 0.88rem !important;
	font-weight: 500;
	box-shadow: none !important;
	cursor: pointer;
}

.pg-catalog-toolbar__select:focus {
	border-color: #111 !important;
	outline: none !important;
	box-shadow: 0 0 0 1px #111 !important;
}

.pg-catalog-toolbar__layouts {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.2rem;
	border: 1px solid rgba(10, 10, 10, 0.12);
	border-radius: 10px;
	background: #f7f7f8;
}

.pg-catalog-toolbar__layout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #8a8a8a;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.pg-catalog-toolbar__layout:hover {
	color: #111;
	background: rgba(255, 255, 255, 0.85);
}

.pg-catalog-toolbar__layout[aria-pressed="true"] {
	background: #fff;
	color: #111;
	box-shadow: 0 1px 3px rgba(10, 10, 10, 0.08);
}

.pg-catalog__main .woo-listing-top,
.pg-catalog__main .woocommerce-result-count,
.pg-catalog__main .woocommerce-ordering {
	display: none !important;
}

body.woocommerce-shop #sidebar,
body.tax-product_cat #sidebar,
body.tax-product_tag #sidebar,
body.woocommerce-shop .ct-sidebar,
body.tax-product_cat .ct-sidebar,
body.tax-product_tag .ct-sidebar {
	display: none !important;
}

body.woocommerce-shop .ct-container,
body.tax-product_cat .ct-container,
body.tax-product_tag .ct-container,
body.post-type-archive-product .ct-container {
	max-width: none !important;
	width: 100% !important;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	color: #6a6a6a;
	margin: 0;
}

.woocommerce .woocommerce-ordering select {
	background: #fff !important;
	border: 1px solid rgba(10, 10, 10, 0.14) !important;
	color: #111 !important;
	border-radius: 10px !important;
	min-height: 2.4rem;
	padding: 0.4rem 0.75rem !important;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}

.pg-home-products-wrap {
	position: relative;
	--pg-home-cols: 3;
	--pg-home-m-cols: 2;
	--pg-home-gap: 1.15rem;
}

.pg-home-products.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(var(--pg-home-cols), minmax(0, 1fr));
	gap: var(--pg-home-gap);
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.pg-home-products.woocommerce.columns-2 ul.products,
.pg-home-products.woocommerce.columns-3 ul.products,
.pg-home-products.woocommerce.columns-4 ul.products {
	grid-template-columns: repeat(var(--pg-home-cols), minmax(0, 1fr));
}

/* Desktop carousel */
.pg-home-products-wrap[data-layout="carousel"] .pg-home-products.woocommerce ul.products {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	grid-template-columns: none !important;
}

.pg-home-products-wrap[data-layout="carousel"] .pg-home-products.woocommerce ul.products::-webkit-scrollbar {
	display: none;
}

.pg-home-products-wrap[data-layout="carousel"] .pg-home-products.woocommerce ul.products li.product {
	flex: 0 0 calc((100% - (var(--pg-home-cols) - 1) * var(--pg-home-gap)) / var(--pg-home-cols));
	width: auto !important;
	max-width: none !important;
	scroll-snap-align: start;
}

.pg-home-products__nav {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	margin: 0;
}

.pg-home-products__arrow {
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	pointer-events: auto;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(6px);
	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.pg-home-products__arrow:hover {
	border-color: #fff;
	background: rgba(0, 0, 0, 0.6);
	transform: translateY(-50%) scale(1.04);
}

.pg-home-products__arrow span {
	width: 0.5rem;
	height: 0.5rem;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
}

.pg-home-products__arrow--prev {
	left: 0.35rem;
}

.pg-home-products__arrow--prev span {
	transform: rotate(135deg);
	margin-left: 0.15rem;
}

.pg-home-products__arrow--next {
	right: 0.35rem;
}

.pg-home-products__arrow--next span {
	transform: rotate(-45deg);
	margin-right: 0.15rem;
}

@media (min-width: 768px) {
	.pg-home-products-wrap[data-layout="carousel"] .pg-home-products__nav {
		display: block;
	}
}

.pg-home-products__empty {
	margin: 0;
	padding: 2rem 1rem;
	text-align: center;
	color: var(--pg-text-muted, #6a6a6a);
	font-size: 0.95rem;
	border: 1px dashed rgba(10, 10, 10, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
	.pg-home-products-wrap {
		--pg-home-gap: 0.65rem;
	}

	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product {
		min-width: 0;
		padding-bottom: 0.75rem;
	}

	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .ct-woo-card-title,
	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
		font-size: 0.88rem;
		padding: 0.65rem 0.65rem 0 !important;
	}

	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .price {
		font-size: 0.98rem;
		padding: 0.4rem 0.65rem 0 !important;
	}

	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .price .pg-card-installments,
	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .pg-card-installments {
		font-size: 0.72rem;
		margin-top: 0.25rem !important;
		line-height: 1.3;
	}

	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .button,
	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .add_to_cart_button,
	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .ct-woo-card-actions .button,
	.pg-home-products-wrap .pg-home-products.woocommerce ul.products li.product .ct-woo-card-actions .add_to_cart_button {
		width: calc(100% - 1.3rem) !important;
		max-width: calc(100% - 1.3rem) !important;
		min-height: 2.2rem !important;
		height: auto !important;
		margin: 0.7rem 0 0 0.65rem !important;
		padding: 0.5rem 0.55rem !important;
		font-size: 0.78rem !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}

	.pg-home-products-wrap .pg-home-products__arrow {
		width: 2rem;
		height: 2rem;
		top: 32%;
	}

	.pg-home-products-wrap[data-mobile-layout="grid"] .pg-home-products.woocommerce ul.products,
	.pg-home-products-wrap[data-mobile-layout="grid"] .pg-home-products.woocommerce.columns-2 ul.products,
	.pg-home-products-wrap[data-mobile-layout="grid"] .pg-home-products.woocommerce.columns-3 ul.products,
	.pg-home-products-wrap[data-mobile-layout="grid"] .pg-home-products.woocommerce.columns-4 ul.products {
		display: grid !important;
		flex-wrap: unset !important;
		overflow: visible;
		scroll-snap-type: none;
		gap: var(--pg-home-gap);
		grid-template-columns: repeat(var(--pg-home-m-cols), minmax(0, 1fr));
	}

	.pg-home-products-wrap[data-mobile-layout="grid"] .pg-home-products.woocommerce ul.products li.product {
		flex: unset;
		width: auto !important;
		max-width: none !important;
		scroll-snap-align: unset;
	}

	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products.woocommerce ul.products,
	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products.woocommerce.columns-2 ul.products,
	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products.woocommerce.columns-3 ul.products,
	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products.woocommerce.columns-4 ul.products {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: var(--pg-home-gap);
		grid-template-columns: none !important;
	}

	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products.woocommerce ul.products::-webkit-scrollbar {
		display: none;
	}

	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products.woocommerce ul.products li.product {
		flex: 0 0 calc((100% - (var(--pg-home-m-cols) - 1) * var(--pg-home-gap)) / var(--pg-home-m-cols));
		width: calc((100% - (var(--pg-home-m-cols) - 1) * var(--pg-home-gap)) / var(--pg-home-m-cols)) !important;
		max-width: calc((100% - (var(--pg-home-m-cols) - 1) * var(--pg-home-gap)) / var(--pg-home-m-cols)) !important;
		min-width: 0;
		scroll-snap-align: start;
	}

	.pg-home-products-wrap[data-mobile-layout="carousel"] .pg-home-products__nav {
		display: block;
	}

	.pg-home-products-wrap[data-mobile-layout="grid"] .pg-home-products__nav {
		display: none;
	}
}


.pg-catalog__main[data-pg-layout="grid-3"] .woocommerce ul.products {
	grid-template-columns: repeat(3, 1fr);
}

.pg-catalog__main[data-pg-layout="grid-2"] .woocommerce ul.products {
	grid-template-columns: repeat(2, 1fr);
}

.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products {
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product {
	flex-direction: row !important;
	align-items: stretch;
	padding: 0;
	min-height: 168px;
}

.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product > a:first-of-type {
	flex: 0 0 168px;
	max-width: 168px;
}

.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product a img,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .ct-media-container,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .ct-media-container img {
	width: 168px;
	max-width: 168px;
	aspect-ratio: 1 / 1;
	height: 100%;
	border-radius: 0;
	object-fit: contain;
	object-position: center center;
	background: #f3f3f3;
}

.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .woocommerce-loop-product__title,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .ct-woo-card-title,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .price,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .button,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .add_to_cart_button,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .added_to_cart {
	padding-left: 1.15rem;
	padding-right: 1.15rem;
}

.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .button,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .add_to_cart_button,
.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .added_to_cart {
	width: auto;
	margin: 0.75rem 1.15rem 1.1rem;
	align-self: flex-start;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	display: flex !important;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.1);
	border-radius: 14px;
	padding: 0 0 1.1rem;
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(232, 93, 4, 0.35);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(10, 10, 10, 0.08);
}

/* Mídia do card: quadrado, imagem inteira (sem cortar), fundo branco */
.woocommerce ul.products li.product .ct-media-container {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	height: auto !important;
	min-height: 0 !important;
	padding: 0 !important;
	padding-bottom: 0 !important;
	overflow: hidden !important;
	background: #fff !important;
	line-height: 0;
}

.woocommerce ul.products li.product .ct-media-container img,
.woocommerce ul.products li.product a img {
	position: absolute !important;
	inset: 0 !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
	object-position: center center !important;
	background: transparent !important;
	padding: 0.85rem !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	display: block !important;
}

/* Fallback se o card não usa ct-media-container */
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
	position: relative;
	display: block;
}

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link > img:only-child {
	position: relative !important;
	inset: auto !important;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	padding: 0.85rem !important;
	background: #fff !important;
}

.woocommerce ul.products li.product .onsale,
.woocommerce ul.products li.product .ct-woo-card-extra {
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 6px !important;
	font-size: 0.72rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.35rem 0.55rem !important;
	line-height: 1.2;
	min-height: 0 !important;
	box-shadow: none !important;
}

/* Esconde categoria / meta no card */
.woocommerce ul.products li.product .entry-meta,
.woocommerce ul.products li.product .ct-woo-card-meta,
.woocommerce ul.products li.product .meta-categories,
.woocommerce ul.products li.product .product_meta,
.woocommerce ul.products li.product [class*="categories"] {
	display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .ct-woo-card-title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif) !important;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 1rem 1.1rem 0 !important;
	margin: 0 !important;
	color: #111;
	line-height: 1.3;
	letter-spacing: -0.01em;
	text-align: left;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a,
.woocommerce ul.products li.product .ct-woo-card-title a {
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	padding: 0 !important;
	margin: 0 !important;
	color: inherit !important;
	text-decoration: none !important;
	display: inline;
	text-align: left;
}

.woocommerce ul.products li.product .price {
	display: block;
	padding: 0.5rem 1.1rem 0 !important;
	margin: 0 !important;
	color: #111 !important;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
}

.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins {
	display: none !important;
}

.woocommerce ul.products li.product .price .pg-card-price,
.woocommerce ul.products li.product .pg-card-price {
	display: block;
	padding: 0 !important;
	margin: 0 !important;
	color: #111;
	font-size: inherit;
	font-weight: 700;
	text-align: left;
}

.woocommerce ul.products li.product .pg-card-price .woocommerce-Price-amount {
	color: #111;
	font-weight: 700;
}

.woocommerce ul.products li.product .price .pg-card-installments,
.woocommerce ul.products li.product .pg-card-installments {
	display: block;
	margin: 0.35rem 0 0 !important;
	padding: 0 !important;
	color: #6a6a6a;
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .ct-woo-card-actions .button,
.woocommerce ul.products li.product .ct-woo-card-actions .add_to_cart_button {
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: flex-start !important;
	float: none !important;
	width: calc(100% - 2.2rem) !important;
	max-width: calc(100% - 2.2rem) !important;
	min-height: 2.5rem !important;
	height: auto !important;
	margin: 0.95rem 0 0 1.1rem !important;
	padding: 0.65rem 0.85rem !important;
	line-height: 1.2 !important;
	white-space: normal !important;
	text-align: center !important;
	border-radius: 999px !important;
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	border: 0 !important;
	font-weight: 700 !important;
	font-size: 0.9rem !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
	flex: none !important;
	overflow: visible !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
	background: #d04f00 !important;
	color: #fff !important;
}

/* Sem estoque — botão cinza */
.woocommerce ul.products li.product.outofstock .button,
.woocommerce ul.products li.product.outofstock .add_to_cart_button,
.woocommerce ul.products li.product .button.pg-card-btn--oos,
.woocommerce ul.products li.product .add_to_cart_button.pg-card-btn--oos,
.woocommerce ul.products li.product .ct-woo-card-actions .button.pg-card-btn--oos,
.woocommerce ul.products li.product .ct-woo-card-actions .add_to_cart_button.pg-card-btn--oos {
	background: #c8c8c8 !important;
	color: #4a4a4a !important;
	cursor: default !important;
	pointer-events: none !important;
}

.woocommerce ul.products li.product.outofstock .button:hover,
.woocommerce ul.products li.product.outofstock .add_to_cart_button:hover,
.woocommerce ul.products li.product .button.pg-card-btn--oos:hover,
.woocommerce ul.products li.product .add_to_cart_button.pg-card-btn--oos:hover {
	background: #c8c8c8 !important;
	color: #4a4a4a !important;
}

/* Sidecart já abre — sem "Ver carrinho" feio (card / PDP) */
.woocommerce ul.products li.product a.added_to_cart,
.woocommerce ul.products li.product .added_to_cart,
body.pg-pdp a.added_to_cart,
body.pg-pdp .added_to_cart,
body.pg-pdp .ct-cart-actions .added_to_cart,
body.pg-pdp .woocommerce-message a.button.wc-forward {
	display: none !important;
}

/* Aviso verde "foi adicionado ao carrinho" na PDP */
body.pg-pdp .woocommerce-notices-wrapper .woocommerce-message,
body.pg-pdp .summary > .woocommerce-message,
body.pg-pdp .product > .woocommerce-message {
	display: none !important;
}

/* Wrapper do Blocksy: sem stretch / sem centrar */
.woocommerce ul.products li.product .ct-woo-card-actions {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	margin-inline: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	gap: 0 !important;
	min-height: 0 !important;
	--horizontal-alignment: flex-start;
}

.woocommerce ul.products li.product .ct-woo-card-actions > * {
	flex: none !important;
	padding: 0 !important;
	min-height: 0 !important;
	width: auto !important;
}

.woocommerce ul.products li.product .ct-woo-card-stock {
	padding-inline: 1.1rem;
}

.woocommerce .woocommerce-info,
body.tax-product_cat .woocommerce-info,
body.woocommerce-shop .woocommerce-info {
	background: #f7f7f8 !important;
	border: 1px solid rgba(10, 10, 10, 0.1) !important;
	border-radius: 12px !important;
	color: #3a3a3a !important;
	box-shadow: none !important;
}

.woocommerce .woocommerce-info::before {
	color: var(--pg-accent-hot, #111111) !important;
}

@media (max-width: 980px) {
	.pg-catalog {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.pg-catalog__filters {
		position: static;
	}

	.woocommerce ul.products,
	.pg-catalog__main[data-pg-layout="grid-3"] .woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}

	.pg-catalog__main[data-pg-layout="grid-2"] .woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}

	.pg-catalog-toolbar__layouts [data-pg-layout="grid-3"] {
		display: none;
	}
}

@media (max-width: 560px) {
	.woocommerce ul.products,
	.pg-catalog__main[data-pg-layout="grid-3"] .woocommerce ul.products,
	.pg-catalog__main[data-pg-layout="grid-2"] .woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product {
		flex-direction: column !important;
	}

	.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
	.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product > a:first-of-type,
	.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product a img,
	.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .ct-media-container,
	.pg-catalog__main[data-pg-layout="list"] .woocommerce ul.products li.product .ct-media-container img {
		width: 100%;
		max-width: none;
	}

	.pg-catalog-toolbar {
		align-items: flex-start;
	}

	.pg-catalog-toolbar__controls {
		width: 100%;
		justify-content: space-between;
		margin-left: 0;
	}

	.pg-catalog-hero__inner {
		width: min(100% - 1.5rem, 1240px);
		padding: 1.15rem 0 1.25rem;
	}
}

/* ========== Account (Shopify-like) ========== */
body.woocommerce-account {
	background: #fff;
}

body.woocommerce-account .site-content,
body.woocommerce-account main#main,
body.woocommerce-account main.ct-main,
body.woocommerce-account main.pg-main,
body.woocommerce-account #main-container,
body.woocommerce-account .ct-container {
	background: #fff !important;
	color: #1a1a1a;
}

body.woocommerce-account .entry-header,
body.woocommerce-account .page-title,
body.woocommerce-account h1.entry-title,
body.woocommerce-account .hero-section,
body.woocommerce-account .woocommerce-products-header__title {
	display: none !important;
}

/* Kill Blocksy blue focus / active */
body.woocommerce-account a:focus,
body.woocommerce-account a:active,
body.woocommerce-account button:focus,
body.woocommerce-account button:active,
body.woocommerce-account input:focus,
body.woocommerce-account textarea:focus,
body.woocommerce-account select:focus {
	outline: none !important;
	box-shadow: none !important;
}

body.woocommerce-account a:focus-visible,
body.woocommerce-account button:focus-visible {
	outline: 2px solid var(--pg-accent-hot, #111111) !important;
	outline-offset: 2px !important;
}

body.woocommerce-account input:focus,
body.woocommerce-account textarea:focus,
body.woocommerce-account .input-text:focus {
	border-color: #1a1a1a !important;
	box-shadow: 0 0 0 1px #1a1a1a !important;
	outline: none !important;
}

body.woocommerce-account a {
	-webkit-tap-highlight-color: transparent;
}

/* ---- Account app (logged in): full page ---- */
body.pg-account-app {
	background: #fff !important;
}

body.pg-account-app .pg-site-header,
body.pg-account-app .pg-announcement,
body.pg-account-app .pg-site-footer,
body.pg-account-app .ct-footer,
body.pg-account-app footer.ct-footer,
body.pg-account-app #footer,
body.pg-account-app .site-footer,
body.pg-account-app .pg-whatsapp,
body.pg-account-app .ct-drawer-canvas,
body.pg-account-app [data-footer],
body.pg-account-app .ct-footer-wrapper {
	display: none !important;
}

body.pg-account-app .pg-container,
body.pg-account-app .pg-content-wrap,
body.pg-account-app .pg-entry,
body.pg-account-app .pg-entry__body,
body.pg-account-app article {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.pg-account-app .pg-entry__head,
body.pg-account-app .pg-entry__title {
	display: none !important;
}

body.pg-account-app .site-content,
body.pg-account-app main#main,
body.pg-account-app main.ct-main,
body.pg-account-app main.pg-main,
body.pg-account-app #main-container,
body.pg-account-app .ct-container,
body.pg-account-app .ct-container-full {
	background: #fff !important;
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	border: 0 !important;
}

body.pg-account-app .entry-content,
body.pg-account-app .ct-entry-content,
body.pg-account-app article {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	border-radius: 0 !important;
}

.pg-account-chrome {
	display: flex;
	justify-content: center;
	background: #fff;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
	position: sticky;
	top: 0;
	z-index: 40;
}

.pg-account-chrome__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(100% - 2.5rem, 920px);
	height: 88px;
	margin: 0 auto;
}

.pg-account-chrome__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
	line-height: 0;
	color: #111 !important;
}

.pg-account-chrome__img {
	display: block !important;
	height: 76px !important;
	width: auto !important;
	max-width: 280px;
	max-height: 76px !important;
	object-fit: contain !important;
}

.pg-account-chrome__name {
	font-family: var(--pg-font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.pg-account-chrome__user {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 1.5px solid rgba(10, 10, 10, 0.18);
	border-radius: 999px;
	color: #111 !important;
	text-decoration: none !important;
	background: #fff;
	transition: border-color 0.15s ease, background 0.15s ease;
	flex-shrink: 0;
}

.pg-account-chrome__user:hover,
.pg-account-chrome__user:focus,
.pg-account-chrome__user:active {
	border-color: #111 !important;
	color: #111 !important;
	background: #f7f7f8;
	outline: none !important;
	box-shadow: none !important;
}

body.pg-account-app.logged-in .woocommerce,
body.woocommerce-account.logged-in .woocommerce {
	width: min(100% - 2.5rem, 920px) !important;
	max-width: 920px !important;
	margin: 0 auto !important;
	padding: 2rem 0 3.5rem !important;
	display: block !important;
	float: none !important;
	min-height: calc(100vh - 88px);
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	border-radius: 0 !important;
}

/* Grid real: nav + conteúdo (não depende do float do Woo) */
.pg-account-layout,
body.pg-account-app.logged-in .pg-account-layout,
body.woocommerce-account.logged-in .pg-account-layout {
	display: grid !important;
	grid-template-columns: 140px minmax(0, 1fr) !important;
	gap: 2.25rem !important;
	align-items: start !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: both !important;
}

.pg-account-nav,
.woocommerce-account .woocommerce-MyAccount-navigation,
.pg-account-layout > .woocommerce-MyAccount-navigation,
.pg-account-layout > .pg-account-nav {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-top: 0.5rem;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	grid-column: 1;
}

.pg-account-nav ul,
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.pg-account-nav li,
.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
}

.pg-account-nav a,
.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: inline-block;
	padding: 0 !important;
	color: #8c8c8c !important;
	text-decoration: none !important;
	font-size: 1.1rem;
	font-weight: 500;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	line-height: 1.3;
}

.pg-account-nav a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	color: #111 !important;
	background: transparent !important;
}

.pg-account-nav li.is-active a,
.pg-account-nav li.is-active a:hover,
.pg-account-nav li.is-active a:focus,
.pg-account-nav li.is-active a:active,
.pg-account-nav li.is-active a:visited,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:focus,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:active,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:visited {
	color: #111 !important;
	font-weight: 700;
	background: transparent !important;
	box-shadow: none !important;
}

/* Hide any injected icons in account nav */
.pg-account-nav a::before,
.pg-account-nav a::after,
.woocommerce-account .woocommerce-MyAccount-navigation a::before,
.woocommerce-account .woocommerce-MyAccount-navigation a::after {
	content: none !important;
	display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content,
.pg-account-layout__content,
.pg-account-layout > .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	color: #2a2a2a;
	box-shadow: none !important;
	min-width: 0 !important;
	grid-column: 2;
}

.woocommerce-account .woocommerce-MyAccount-content > a:not(.pg-account-welcome__btn):not(.pg-account-chip):not(.button) {
	color: var(--pg-accent-hot, #111111) !important;
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: var(--pg-font-heading);
	color: #111;
	margin-top: 0;
	letter-spacing: -0.02em;
}

/* Welcome card */
.pg-account-welcome {
	width: 100% !important;
	max-width: 720px;
	box-sizing: border-box;
}

.pg-account-welcome__card {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1.25rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 1.75rem 1.85rem !important;
	background: #fff !important;
	border-radius: 16px !important;
	border: 1px solid rgba(10, 10, 10, 0.08) !important;
	box-shadow: 0 10px 30px rgba(10, 10, 10, 0.05) !important;
	overflow: hidden;
}

.pg-account-welcome__copy {
	flex: 1 1 auto;
	min-width: 0;
}

.pg-account-welcome__copy h2 {
	margin: 0 0 0.3rem;
	font-size: 1.45rem;
	font-weight: 700;
	color: #111;
	font-family: var(--pg-font-heading);
}

.pg-account-welcome__copy p {
	margin: 0;
	color: #6a6a6a;
	font-size: 0.98rem;
}

.pg-account-welcome__btn,
a.pg-account-welcome__btn,
.woocommerce-account .woocommerce-MyAccount-content a.pg-account-welcome__btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-height: 2.7rem;
	padding: 0.75rem 1.45rem !important;
	border-radius: 999px !important;
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 0.94rem !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	border: 0 !important;
	box-shadow: none !important;
	white-space: nowrap;
}

.pg-account-welcome__btn:hover,
a.pg-account-welcome__btn:hover,
.pg-account-welcome__btn:focus,
.pg-account-welcome__btn:active,
.woocommerce-account .woocommerce-MyAccount-content a.pg-account-welcome__btn:hover {
	background: #111 !important;
	color: #fff !important;
	text-decoration: none !important;
	filter: none;
}

/* Profile */
.pg-account-profile {
	display: grid;
	gap: 1.75rem;
	max-width: 720px;
}

.pg-account-block__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.pg-account-block__head h2 {
	margin: 0 !important;
	font-size: 1.2rem !important;
	font-weight: 700;
	color: #111;
}

.pg-account-chip,
a.pg-account-chip,
.woocommerce-account .woocommerce-MyAccount-content a.pg-account-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.1rem;
	padding: 0.4rem 0.95rem !important;
	border-radius: 999px !important;
	border: 1px solid rgba(10, 10, 10, 0.14) !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 0.84rem !important;
	font-weight: 650 !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.pg-account-chip:hover,
a.pg-account-chip:hover {
	border-color: rgba(10, 10, 10, 0.3) !important;
	color: #111 !important;
	text-decoration: none !important;
}

.pg-account-chip--logout,
a.pg-account-chip--logout {
	color: var(--pg-accent-hot, #111111) !important;
	border-color: rgba(232, 93, 4, 0.35) !important;
}

.pg-account-card {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	border-radius: 14px;
	padding: 0.15rem 1.25rem;
	box-shadow: 0 4px 18px rgba(10, 10, 10, 0.03);
}

.pg-account-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.pg-account-card__row:last-child {
	border-bottom: 0;
}

.pg-account-card__label {
	color: #8a8a8a;
	font-size: 0.92rem;
}

.pg-account-card__value {
	color: #111;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: right;
}

.pg-account-card__empty {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 1.1rem 0;
	color: #8a8a8a;
	font-size: 0.95rem;
}

.pg-account-card__addr {
	padding: 1rem 0;
	border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.pg-account-card__addr:last-child {
	border-bottom: 0;
}

.pg-account-card__addr .pg-account-card__label {
	display: block;
	margin-bottom: 0.35rem;
}

.pg-account-card__addr .pg-account-card__value {
	text-align: left;
	line-height: 1.5;
	font-weight: 400;
}

.pg-account-card__pref {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: #111;
	font-weight: 600;
}

.pg-account-card__hint {
	color: #8a8a8a;
	font-size: 0.88rem;
}

.pg-account-profile__foot {
	padding-top: 0.25rem;
}

.pg-account-form {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	border-radius: 14px;
	padding: 1.5rem;
}

.pg-account-form__pass {
	margin: 1.25rem 0;
	padding: 1rem 0 0;
	border: 0;
	border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.pg-account-form__pass legend {
	padding: 0;
	font-weight: 700;
	color: #111;
	margin-bottom: 0.75rem;
}

.pg-account-btn-primary,
.woocommerce-account .button,
.woocommerce-account button.button,
.woocommerce-account .woocommerce-button {
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-weight: 700 !important;
	letter-spacing: 0;
	text-transform: none;
	padding: 0.85rem 1.4rem !important;
	box-shadow: none !important;
}

.woocommerce-account .button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .button:focus,
.woocommerce-account button.button:focus,
.woocommerce-account .button:active,
.woocommerce-account button.button:active {
	background: #d04f00 !important;
	color: #fff !important;
	filter: none;
	box-shadow: none !important;
}

.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea,
.woocommerce-account.woocommerce-page form .form-row input.input-text {
	background: #fff !important;
	border: 1px solid rgba(10, 10, 10, 0.14) !important;
	color: #111 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	min-height: 2.85rem;
	padding: 0.7rem 0.95rem !important;
}

.woocommerce-account form .form-row input.input-text::placeholder,
.woocommerce-account form .form-row textarea::placeholder {
	color: rgba(17, 17, 17, 0.42) !important;
	opacity: 1 !important;
}

.woocommerce-account form .form-row label {
	color: #3a3a3a;
	font-weight: 600;
	font-size: 0.84rem;
}

.woocommerce-account .woocommerce-Address,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	padding: 1.35rem;
	border-radius: 14px;
	box-shadow: none;
}

.woocommerce-account .u-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
	width: 100% !important;
	float: none !important;
}

.pg-account-addresses__note {
	margin: 0 0 1rem;
	color: #6a6a6a;
	font-size: 0.9rem;
	line-height: 1.45;
}

/* Checkout: esconde “enviar para outro endereço” */
.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout .woocommerce-shipping-fields {
	display: none !important;
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
	background: #fff !important;
	border: 1px solid rgba(10, 10, 10, 0.08) !important;
	color: #1a1a1a !important;
	border-radius: 14px;
	overflow: hidden;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
	border-color: rgba(10, 10, 10, 0.08) !important;
	color: #1a1a1a !important;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.1);
	border-radius: 12px;
	color: #1a1a1a;
	box-shadow: none;
}

.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-error::before {
	color: var(--pg-accent-hot, #111111) !important;
}

@media (max-width: 900px) {
	.pg-account-chrome__inner {
		width: min(100% - 1.5rem, 920px);
		height: 80px;
	}

	.pg-account-chrome__img {
		height: 64px !important;
		max-height: 64px !important;
	}

	body.pg-account-app.logged-in .woocommerce,
	body.woocommerce-account.logged-in .woocommerce {
		width: min(100% - 1.5rem, 920px) !important;
		padding-top: 1.35rem !important;
		min-height: auto;
	}

	.pg-account-layout,
	body.pg-account-app.logged-in .pg-account-layout,
	body.woocommerce-account.logged-in .pg-account-layout {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}

	.pg-account-nav,
	.woocommerce-account .woocommerce-MyAccount-navigation,
	.pg-account-layout > .woocommerce-MyAccount-navigation,
	.pg-account-layout__content,
	.pg-account-layout > .woocommerce-MyAccount-content {
		grid-column: 1 !important;
	}

	.pg-account-nav ul,
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1.25rem;
	}

	.pg-account-welcome__card {
		flex-direction: column !important;
		align-items: flex-start !important;
		overflow: visible;
	}
}

@media (max-width: 800px) {
	.woocommerce-account .u-columns {
		grid-template-columns: 1fr;
	}
}

/* ---- Auth (logged out) — keep site header/footer ---- */
body.pg-auth-page,
body.woocommerce-account:not(.logged-in) {
	background: #fff;
}

body.pg-auth-page .site-content,
body.pg-auth-page main#main,
body.pg-auth-page main.ct-main,
body.pg-auth-page main.pg-main,
body.woocommerce-account:not(.logged-in) .site-content,
body.woocommerce-account:not(.logged-in) main#main,
body.woocommerce-account:not(.logged-in) main.ct-main,
body.woocommerce-account:not(.logged-in) main.pg-main {
	background: #fff !important;
}

body.pg-auth-page .entry-header,
body.pg-auth-page .page-title,
body.pg-auth-page h1.entry-title,
body.woocommerce-account:not(.logged-in) .entry-header,
body.woocommerce-account:not(.logged-in) .page-title,
body.woocommerce-account:not(.logged-in) h1.entry-title,
body.woocommerce-account:not(.logged-in) .hero-section {
	display: none !important;
}

body.pg-auth-page .woocommerce,
body.woocommerce-account:not(.logged-in) .woocommerce {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	float: none !important;
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

.pg-auth {
	display: flex;
	justify-content: center;
	padding: 3.5rem 1.25rem 4.5rem;
	min-height: min(70vh, 720px);
	background: #fff;
}

.pg-auth__inner {
	width: 100%;
	max-width: 380px;
	text-align: center;
}

.pg-auth__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	text-decoration: none !important;
	color: #111 !important;
}

.pg-auth__logo img {
	display: block;
	max-height: 42px;
	width: auto;
}

.pg-auth__logo span {
	font-family: var(--pg-font-heading);
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #111;
}

.pg-auth__pane[hidden] {
	display: none !important;
}

.pg-auth__head {
	margin-bottom: 1.5rem;
}

.pg-auth__head h1 {
	font-family: var(--pg-font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #111;
	margin: 0 0 0.4rem;
	line-height: 1.2;
}

.pg-auth__head p {
	margin: 0;
	color: #6a6a6a;
	font-size: 0.98rem;
	line-height: 1.45;
}

.pg-auth__shop-btn,
a.pg-auth__shop-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3rem;
	margin: 0 0 1.15rem;
	padding: 0.85rem 1.25rem !important;
	border-radius: 12px !important;
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 0.98rem !important;
	text-decoration: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

.pg-auth__shop-btn:hover,
a.pg-auth__shop-btn:hover {
	background: #d04f00 !important;
	color: #fff !important;
	text-decoration: none !important;
}

.pg-auth__divider {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0 0 1.25rem;
	color: #9a9a9a;
	font-size: 0.85rem;
}

.pg-auth__divider::before,
.pg-auth__divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(10, 10, 10, 0.1);
}

.pg-auth__form {
	text-align: left;
}

.pg-auth__field {
	margin: 0 0 0.85rem !important;
}

.pg-auth__field label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.pg-auth__form .input-text,
.pg-auth .woocommerce-Input {
	width: 100%;
	min-height: 3rem;
	padding: 0.85rem 1rem !important;
	border: 1px solid rgba(10, 10, 10, 0.16) !important;
	border-radius: 12px !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 0.98rem;
	box-shadow: none !important;
}

.pg-auth__input-wrap {
	position: relative;
	display: block;
}

.pg-auth__input-wrap .input-text {
	padding-right: 3rem !important;
}

.pg-auth__go {
	position: absolute;
	top: 50%;
	right: 0.45rem;
	transform: translateY(-50%);
	width: 2.2rem;
	height: 2.2rem;
	display: grid;
	place-items: center;
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: #111 !important;
	cursor: pointer;
	padding: 0 !important;
	box-shadow: none !important;
}

.pg-auth__form .input-text:focus,
.pg-auth .woocommerce-Input:focus {
	border-color: #111 !important;
	box-shadow: 0 0 0 1px #111 !important;
}

.pg-auth__check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 0.35rem 0 1.1rem;
	font-size: 0.9rem;
	color: #4a4a4a;
	font-weight: 500;
	cursor: pointer;
	line-height: 1.35;
}

.pg-auth__check input {
	margin-top: 0.15rem;
	accent-color: var(--pg-accent-hot, #111111);
}

.pg-auth__submit,
.pg-auth .pg-auth__submit.button,
.pg-auth button.pg-auth__submit {
	width: 100%;
	min-height: 3rem;
	margin-top: 0.15rem;
	background: #111 !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	font-size: 0.98rem !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	box-shadow: none !important;
	cursor: pointer;
}

.pg-auth__submit:hover,
.pg-auth__submit:focus,
.pg-auth__submit:active {
	background: #2a2a2a !important;
	color: #fff !important;
}

.pg-auth__links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 1rem 0 0;
	flex-wrap: wrap;
}

.pg-auth__links a,
.pg-auth__switch {
	color: #111 !important;
	font-size: 0.88rem;
	font-weight: 600;
	background: none !important;
	border: 0 !important;
	padding: 0 !important;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	box-shadow: none !important;
}

.pg-auth__links a:hover,
.pg-auth__switch:hover {
	color: var(--pg-accent-hot, #111111) !important;
}

.pg-auth__hint {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	color: #6a6a6a;
	line-height: 1.5;
	text-align: left;
}

.pg-auth__privacy {
	margin: 2.5rem 0 0;
	text-align: center;
}

.pg-auth__privacy a {
	color: #6a6a6a !important;
	font-size: 0.84rem;
	text-decoration: underline;
	text-underline-offset: 2px;
}

body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper {
	width: min(100% - 2rem, 420px);
	margin: 1rem auto 0;
}

body.woocommerce-account:not(.logged-in) form.lost_reset_password {
	width: min(calc(100% - 2.5rem), 400px);
	margin: 3rem auto;
	padding: 2rem;
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	border-radius: 14px;
}

/* Cart / checkout / account — inputs claros (branco + placeholder preto clarinho) */
body.woocommerce-cart input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input]),
body.woocommerce-cart textarea,
body.woocommerce-cart select:not(.pg-filters__select):not(.pg-catalog-toolbar__select),
body.woocommerce-checkout input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input]),
body.woocommerce-checkout textarea,
body.woocommerce-checkout select:not(.pg-filters__select):not(.pg-catalog-toolbar__select),
body.woocommerce-account input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input]),
body.woocommerce-account textarea,
body.woocommerce-account select:not(.pg-filters__select):not(.pg-catalog-toolbar__select),
body.woocommerce-cart .woocommerce input.input-text,
body.woocommerce-cart .woocommerce textarea,
body.woocommerce-cart .woocommerce select,
body.woocommerce-checkout .woocommerce input.input-text,
body.woocommerce-checkout .woocommerce textarea,
body.woocommerce-checkout .woocommerce select,
body.woocommerce-account .woocommerce input.input-text,
body.woocommerce-account .woocommerce textarea,
body.woocommerce-account .woocommerce select,
.woocommerce-cart form .form-row input.input-text,
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-cart form .form-row textarea,
.woocommerce-checkout form .form-row textarea,
.woocommerce-cart form .form-row select,
.woocommerce-checkout form .form-row select,
.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea,
.woocommerce-account form .form-row select,
.woocommerce-account.woocommerce-page form .form-row input.input-text,
.woocommerce form .input-text,
.woocommerce form textarea,
.woocommerce form select.country_to_state,
.woocommerce form select.state_select,
.woocommerce .select2-container--default .select2-selection--single {
	background: #fff !important;
	border: 1px solid rgba(10, 10, 10, 0.14) !important;
	color: #111 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	min-height: 2.85rem;
	padding: 0.7rem 0.95rem !important;
}

.woocommerce .select2-container--default .select2-selection--single {
	display: flex !important;
	align-items: center;
	padding: 0 0.95rem !important;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #111 !important;
	line-height: 2.85rem !important;
	padding: 0 !important;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
}

body.woocommerce-cart input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input])::placeholder,
body.woocommerce-cart textarea::placeholder,
body.woocommerce-checkout input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input])::placeholder,
body.woocommerce-checkout textarea::placeholder,
body.woocommerce-account input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input])::placeholder,
body.woocommerce-account textarea::placeholder,
body.woocommerce-cart .woocommerce input.input-text::placeholder,
body.woocommerce-cart .woocommerce textarea::placeholder,
body.woocommerce-checkout .woocommerce input.input-text::placeholder,
body.woocommerce-checkout .woocommerce textarea::placeholder,
body.woocommerce-account .woocommerce input.input-text::placeholder,
body.woocommerce-account .woocommerce textarea::placeholder,
.woocommerce-cart form .form-row input.input-text::placeholder,
.woocommerce-checkout form .form-row input.input-text::placeholder,
.woocommerce-cart form .form-row textarea::placeholder,
.woocommerce-checkout form .form-row textarea::placeholder,
.woocommerce-account form .form-row input.input-text::placeholder,
.woocommerce-account form .form-row textarea::placeholder,
.woocommerce form .input-text::placeholder,
.woocommerce form textarea::placeholder,
.pg-auth__form .input-text::placeholder {
	color: rgba(17, 17, 17, 0.42) !important;
	opacity: 1 !important;
}

body.woocommerce-cart input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input]):focus,
body.woocommerce-cart textarea:focus,
body.woocommerce-cart select:focus,
body.woocommerce-checkout input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input]):focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-account input:is([type="text"], [type="email"], [type="tel"], [type="password"], [type="url"], [type="number"], [type="search"]):not([data-pg-search-input]):focus,
body.woocommerce-account textarea:focus,
body.woocommerce-account select:focus,
.woocommerce form .input-text:focus,
.woocommerce form textarea:focus,
.woocommerce form select:focus,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-container--default.select2-container--open .select2-selection--single {
	border-color: rgba(10, 10, 10, 0.35) !important;
	box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2) !important;
	outline: none !important;
	color: #111 !important;
	background: #fff !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	width: min(100% - 2.5rem, 1100px);
	margin: 0 auto;
	padding: 2.75rem 0 4rem;
	color: #1a1a1a;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review {
	background: #fff;
	border: 1px solid rgba(10, 10, 10, 0.08);
	color: #1a1a1a;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	border-color: rgba(10, 10, 10, 0.08) !important;
	color: #1a1a1a !important;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review {
	padding: 1.25rem;
	border-radius: 14px;
}

/* ========== Página do produto (PDP) ========== */
body.single-product.pg-pdp,
body.pg-pdp,
body.pg-pdp #main,
body.pg-pdp .site-main,
body.pg-pdp main,
body.pg-pdp .ct-container,
body.pg-pdp .ct-container-full {
	background: #fff !important;
	color: #1a1a1a;
}

body.pg-pdp .ct-container,
body.pg-pdp .ct-container-full,
body.pg-pdp #content .ct-container,
body.pg-pdp .theme-container {
	width: min(100% - 2.5rem, 1180px);
	margin-inline: auto;
}

/* Menos ar no topo da PDP (Blocksy vertical spacing + hero) */
body.pg-pdp .ct-container-full[data-vertical-spacing*="top"],
body.pg-pdp .ct-container[data-vertical-spacing*="top"],
body.pg-pdp main#main .ct-container-full {
	--theme-content-vertical-spacing: 1.25rem;
	padding-top: 0.75rem !important;
}

body.pg-pdp .hero-section,
body.pg-pdp .entry-header {
	margin: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
}

body.pg-pdp .woocommerce-breadcrumb,
body.pg-pdp .ct-breadcrumbs,
body.pg-pdp nav.woocommerce-breadcrumb {
	width: min(100% - 2.5rem, 1180px);
	margin: 0.35rem auto 0.75rem;
	padding: 0 !important;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8a8175 !important;
	border: 0 !important;
}

body.pg-pdp .woocommerce-breadcrumb a,
body.pg-pdp .ct-breadcrumbs a {
	color: #6f675c !important;
	text-decoration: none;
}

body.pg-pdp .woocommerce-breadcrumb a:hover {
	color: var(--pg-accent-hot, #111111) !important;
}

/* Layout principal: galeria + compra (wrapper do Blocksy) */
body.pg-pdp div.product,
body.pg-pdp .pg-pdp-product {
	width: 100%;
	margin: 0 !important;
	padding: 0 0 2rem !important;
	float: none !important;
	background: #fff !important;
}

body.pg-pdp div.product::before,
body.pg-pdp div.product::after {
	display: none !important;
	content: none !important;
}

body.pg-pdp .product-entry-wrapper,
body.pg-pdp .product-entry-wrapper.is-width-constrained {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	gap: clamp(1.75rem, 4vw, 3.25rem) !important;
	width: min(100% - 2.5rem, 1180px) !important;
	max-width: 1180px !important;
	margin: 0.75rem auto 0 !important;
	box-sizing: border-box;
}

body.pg-pdp .product-entry-wrapper .woocommerce-product-gallery {
	flex: 1 1 52% !important;
	width: 52% !important;
	max-width: 52% !important;
	float: none !important;
	margin: 0 !important;
}

body.pg-pdp .product-entry-wrapper .summary,
body.pg-pdp .product-entry-wrapper .entry-summary {
	flex: 1 1 42% !important;
	width: 42% !important;
	max-width: 48% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0.15rem 0 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Galeria */
body.pg-pdp .woocommerce-product-gallery {
	position: relative;
	border-radius: 20px;
	overflow: visible;
	background: #fff;
	border: 1px solid rgba(40, 28, 12, 0.08);
	box-shadow: 0 10px 36px rgba(40, 28, 12, 0.06);
}

body.pg-pdp .ct-product-gallery-container {
	display: flex;
	flex-direction: column;
	gap: 0;
}

body.pg-pdp .woocommerce-product-gallery .flexy,
body.pg-pdp .woocommerce-product-gallery .flexy-view {
	border-radius: 19px 19px 0 0;
	overflow: hidden;
}

body.pg-pdp .woocommerce-product-gallery:not([data-thumbs]) .flexy,
body.pg-pdp .woocommerce-product-gallery:not([data-thumbs]) .flexy-view,
body.pg-pdp .woocommerce-product-gallery:not([data-thumbs]) .ct-media-container {
	border-radius: 19px;
}

body.pg-pdp .woocommerce-product-gallery__wrapper,
body.pg-pdp .woocommerce-product-gallery__image,
body.pg-pdp .woocommerce-product-gallery .flexy-item figure,
body.pg-pdp .woocommerce-product-gallery > .ct-product-gallery-container > figure {
	margin: 0 !important;
	border-radius: 0;
}

/* Frame da foto principal: quadrado, produto inteiro com folga (não apertado nas bordas) */
body.pg-pdp .woocommerce-product-gallery .flexy-item,
body.pg-pdp .woocommerce-product-gallery .flexy-item .ct-media-container,
body.pg-pdp .woocommerce-product-gallery .woocommerce-product-gallery__image,
body.pg-pdp .woocommerce-product-gallery > .ct-product-gallery-container > figure,
body.pg-pdp .woocommerce-product-gallery > .ct-product-gallery-container > figure .ct-media-container {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	height: auto !important;
	min-height: 0 !important;
	padding: 0 !important;
	padding-bottom: 0 !important;
	overflow: hidden !important;
	background: #fff !important;
	line-height: 0;
}

body.pg-pdp .woocommerce-product-gallery .flexy-item img,
body.pg-pdp .woocommerce-product-gallery .flexy-item .ct-media-container img,
body.pg-pdp .woocommerce-product-gallery .woocommerce-product-gallery__image img,
body.pg-pdp .woocommerce-product-gallery > .ct-product-gallery-container > figure img {
	position: absolute !important;
	inset: 0 !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
	object-position: center center !important;
	border-radius: 0 !important;
	background: transparent !important;
	padding: clamp(1.25rem, 4.5%, 2.25rem) !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	display: block !important;
}

/* Lupa → abre PhotoSwipe do Blocksy/Woo (não inventar outro lightbox) */
body.pg-pdp .ct-product-gallery-container {
	position: relative;
}

body.pg-pdp .woocommerce-product-gallery__trigger {
	position: absolute;
	z-index: 30;
	top: 14px;
	inset-inline-end: 14px;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 18px rgba(40, 28, 12, 0.16);
	color: #1a1a1a;
	text-indent: -9999px;
	overflow: hidden;
	cursor: zoom-in;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

body.pg-pdp .woocommerce-product-gallery__trigger:hover,
body.pg-pdp .woocommerce-product-gallery__trigger:focus-visible {
	background: var(--pg-accent-hot, #111111);
	color: #fff;
	transform: scale(1.04);
	outline: none;
}

body.pg-pdp .woocommerce-product-gallery__trigger:before {
	position: absolute;
	inset: 0;
	content: "";
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
}

/* Sem compartilhar / baixar no lightbox */
body.pg-pdp .pswp__button--share,
body.pg-pdp .pswp__share-modal,
.woocommerce .pswp__button--share,
.woocommerce .pswp__share-modal,
.woocommerce-page .pswp__button--share,
.woocommerce-page .pswp__share-modal {
	display: none !important;
}

/* Thumbs sob a foto (Blocksy flexy-pills + Woo nativo) */
body.pg-pdp .flexy-pills[data-type="thumbs"],
body.pg-pdp .flex-control-thumbs,
body.pg-pdp .woocommerce-product-gallery ol.flex-control-nav {
	display: block !important;
	margin: 0 !important;
	padding: 0.75rem 0.85rem 0.9rem !important;
	background: #fff;
	border-radius: 0 0 19px 19px;
	border-top: 1px solid rgba(40, 28, 12, 0.06);
	box-sizing: border-box;
}

body.pg-pdp .flexy-pills[data-type="thumbs"] ol,
body.pg-pdp .flex-control-thumbs {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 0.55rem;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

body.pg-pdp .flexy-pills[data-type="thumbs"] ol::-webkit-scrollbar,
body.pg-pdp .flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

body.pg-pdp .flexy-pills[data-type="thumbs"] li,
body.pg-pdp .flex-control-thumbs li {
	width: 4.35rem !important;
	flex: 0 0 4.35rem;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	opacity: 1 !important;
}

body.pg-pdp .flexy-pills[data-type="thumbs"] .ct-media-container,
body.pg-pdp .flexy-pills[data-type="thumbs"] img,
body.pg-pdp .flex-control-thumbs img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 !important;
	object-fit: cover;
	border-radius: 11px !important;
	border: 2px solid transparent !important;
	opacity: 0.7;
	cursor: pointer;
	transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	box-sizing: border-box;
}

body.pg-pdp .flexy-pills[data-type="thumbs"] li.active .ct-media-container,
body.pg-pdp .flexy-pills[data-type="thumbs"] li.active img,
body.pg-pdp .flexy-pills[data-type="thumbs"] li:hover .ct-media-container,
body.pg-pdp .flexy-pills[data-type="thumbs"] li:hover img,
body.pg-pdp .flex-control-thumbs img.flex-active,
body.pg-pdp .flex-control-thumbs img:hover {
	opacity: 1;
	border-color: var(--pg-accent-hot, #111111) !important;
}

body.pg-pdp .flexy-pills[data-type="thumbs"] li .ct-media-container:after {
	border-radius: 11px;
	border-width: 0;
}

/* Summary / buy box */
body.pg-pdp .summary.entry-summary,
body.pg-pdp .entry-summary.summary {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0.35rem 0 0 !important;
}

.pg-pdp-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 0.85rem;
}

.pg-pdp-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	background: rgba(232, 93, 4, 0.1);
	color: #c44d00;
	border: 1px solid rgba(232, 93, 4, 0.18);
}

.pg-pdp-badge--esgotado {
	background: rgba(80, 80, 80, 0.08);
	color: #555;
	border-color: rgba(80, 80, 80, 0.12);
}

body.pg-pdp .product_title,
body.pg-pdp .summary .product_title {
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif) !important;
	font-size: clamp(1.55rem, 2.8vw, 2.05rem) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em;
	line-height: 1.18 !important;
	margin: 0 0 0.55rem !important;
	color: #171411 !important;
}

.pg-pdp-subtitle {
	margin: 0 0 1.05rem;
	color: #6b645b;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 0.98rem;
	line-height: 1.5;
	max-width: 42ch;
}

/* Excerpt nativo some — pré-descrição única via .pg-pdp-subtitle */
body.pg-pdp .woocommerce-product-details__short-description {
	display: none !important;
}

body.pg-pdp .summary > .price,
body.pg-pdp .entry-summary > .price,
body.pg-pdp .summary .price,
body.pg-pdp .entry-summary .price {
	margin: 0 0 0.35rem !important;
	padding: 0 !important;
	border: 0 !important;
	color: #171411 !important;
}

body.pg-pdp .price .pg-card-price,
body.pg-pdp .price .woocommerce-Price-amount,
body.pg-pdp .price .amount,
body.pg-pdp .price bdi,
body.pg-pdp .pg-card-price {
	color: #171411 !important;
}

.pg-pdp-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem 0.8rem;
}

.pg-pdp-price del,
.pg-pdp-price__regular {
	color: #9a9186 !important;
	font-size: 1.05rem !important;
	font-weight: 500 !important;
	text-decoration: line-through;
}

.pg-pdp-price ins,
.pg-pdp-price__sale,
.pg-pdp-price__current {
	color: #171411 !important;
	font-size: clamp(1.7rem, 2.6vw, 2.05rem) !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	background: none !important;
	letter-spacing: -0.02em;
}

.pg-pdp-price__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	background: var(--pg-accent-hot, #111111);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

body.pg-pdp .pg-card-installments,
body.pg-pdp .price .pg-card-installments {
	display: block;
	margin: 0.15rem 0 0.85rem !important;
	padding: 0 !important;
	color: #5c564e;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
}

/* Evita parcela fantasma solta fora do .price */
body.pg-pdp .entry-summary > .pg-card-installments,
body.pg-pdp .summary > .pg-card-installments {
	display: none !important;
}

body.pg-pdp .pg-pdp-pay-wrap {
	margin: 0 0 1.15rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
}

.pg-pdp-pix {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.2rem 0;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 0.92rem;
	font-weight: 700;
	color: #171411;
	line-height: 1.2;
}

.pg-pdp-pix__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 8px;
	background: rgba(50, 188, 173, 0.12);
	flex: 0 0 auto;
	line-height: 0;
}

.pg-pdp-pix__svg {
	display: block;
	width: 1.05rem;
	height: 1.05rem;
}

.pg-pdp-pix__text {
	color: #171411;
}

.pg-pdp-pix--modal {
	padding: 0;
	font-size: 1.02rem;
}

.pg-pdp-pay__trigger {
	appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 0.65rem 0.8rem;
	border-radius: 10px;
	background: #fff;
	border: 1px solid rgba(40, 28, 12, 0.14);
	box-shadow: none;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	color: #2a241c;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.pg-pdp-pay__trigger-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
	color: #5c564e;
	line-height: 0;
}

.pg-pdp-pay__trigger-copy {
	flex: 0 1 auto;
	min-width: 0;
	display: grid;
	gap: 0.1rem;
}

.pg-pdp-pay__trigger-label {
	font-weight: 650;
	font-size: 0.9rem;
	line-height: 1.25;
	color: #171411;
}

.pg-pdp-pay__trigger-hint {
	font-size: 0.76rem;
	font-weight: 500;
	color: #8a8175;
	line-height: 1.3;
}

.pg-pdp-pay__trigger-cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	margin-left: 0.15rem;
	padding: 0;
	background: none;
	color: var(--pg-accent-hot, #111111);
	line-height: 0;
}

.pg-pdp-pay__trigger:hover {
	border-color: rgba(40, 28, 12, 0.28);
	background: #fafaf8;
}

.pg-pdp-pay__trigger:hover .pg-pdp-pay__trigger-cta {
	color: #c44d00;
}

.pg-pdp-pay__lead {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a8175;
}

.pg-pdp-pay__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.92rem;
}

.pg-pdp-pay__table tbody tr {
	transition: background 0.15s ease;
}

.pg-pdp-pay__table tbody tr:nth-child(odd) {
	background: #faf8f5;
}

.pg-pdp-pay__table tbody tr:hover {
	background: #f3f0ea;
}

.pg-pdp-pay__table td {
	padding: 0.85rem 1rem;
	border: 0;
	vertical-align: middle;
	color: #171411;
}

.pg-pdp-pay__table td:first-child {
	border-radius: 0;
}

.pg-pdp-pay__parcel {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.28rem 0.35rem;
}

.pg-pdp-pay__n {
	font-weight: 800;
	color: var(--pg-accent-hot, #111111);
	min-width: 1.6rem;
}

.pg-pdp-pay__of {
	color: #8a8175;
	font-size: 0.85rem;
}

.pg-pdp-pay__amt {
	font-weight: 700;
	color: #171411;
}

.pg-pdp-pay__suf {
	color: #7a7268;
	font-size: 0.82rem;
	font-weight: 600;
}

.pg-pdp-pay__total {
	text-align: right;
	white-space: nowrap;
}

.pg-pdp-pay__total-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #9a9186;
	margin-bottom: 0.15rem;
}

.pg-pdp-pay__total-amt {
	display: block;
	font-weight: 700;
	color: #171411;
	font-size: 0.95rem;
}

/* Modal parcelas / PIX */
.pg-pdp-pay-modal {
	position: fixed;
	inset: 0;
	z-index: 10080;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.pg-pdp-pay-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pg-pdp-pay-modal[hidden] {
	display: none !important;
}

.pg-pdp-pay-modal.is-open[hidden] {
	display: grid !important;
}

.pg-pdp-pay-modal__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	padding: 0;
	margin: 0;
	background: rgba(20, 16, 12, 0.52);
	cursor: pointer;
}

.pg-pdp-pay-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 480px);
	max-height: min(88vh, 700px);
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 28px 70px rgba(20, 16, 12, 0.24);
	transform: translateY(10px) scale(0.98);
	transition: transform 0.22s ease;
	overflow: hidden;
}

.pg-pdp-pay-modal.is-open .pg-pdp-pay-modal__panel {
	transform: none;
}

.pg-pdp-pay-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.25rem 1.4rem;
	border-bottom: 1px solid rgba(40, 28, 12, 0.07);
	background: #fff;
}

.pg-pdp-pay-modal__head h3 {
	margin: 0;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: #171411;
	letter-spacing: -0.02em;
}

.pg-pdp-pay-modal__close {
	appearance: none;
	display: inline-grid;
	place-items: center;
	width: 2.15rem;
	height: 2.15rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #f3f0ea;
	color: #4a453e;
	cursor: pointer;
}

.pg-pdp-pay-modal__close:hover {
	background: #ebe6de;
	color: #171411;
}

.pg-pdp-pay-modal__body {
	padding: 1.35rem 1.4rem 1.5rem;
	overflow: auto;
	display: grid;
	gap: 1.25rem;
}

.pg-pdp-pay-modal__deal {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 1.1rem 1.15rem;
	border-radius: 16px;
	background: linear-gradient(160deg, rgba(50, 188, 173, 0.14), rgba(50, 188, 173, 0.05));
	border: 1px solid rgba(50, 188, 173, 0.28);
}

.pg-pdp-pay-modal__deal-note {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #3a403f;
}

.pg-pdp-pay-modal__deal-note .woocommerce-Price-amount,
.pg-pdp-pay-modal__deal-note .amount {
	font-weight: 700;
	color: #171411;
}

.pg-pdp-pay-modal__card {
	display: grid;
	gap: 0.55rem;
}

.pg-pdp-pay-modal__card-note {
	margin: 0;
	font-size: 0.86rem;
	color: #7a7268;
	line-height: 1.4;
}

.pg-pdp-pay-modal__table-wrap {
	max-height: 300px;
	overflow: auto;
	border-radius: 14px;
	border: 1px solid rgba(40, 28, 12, 0.08);
	background: #fff;
}

.pg-pdp-pay-modal__table-wrap::-webkit-scrollbar {
	width: 8px;
}

.pg-pdp-pay-modal__table-wrap::-webkit-scrollbar-thumb {
	background: rgba(40, 28, 12, 0.15);
	border-radius: 8px;
}

body.pg-pay-modal-open {
	overflow: hidden;
}

@media (max-width: 520px) {
	.pg-pdp-pay-modal {
		padding: 0.75rem;
		align-items: end;
	}

	.pg-pdp-pay-modal__panel {
		width: 100%;
		max-height: 92vh;
		border-radius: 18px 18px 12px 12px;
	}

	.pg-pdp-pay__table td {
		padding: 0.75rem 0.8rem;
	}

	.pg-pdp-pay__total-label {
		display: none;
	}
}

/* Buy row */
body.pg-pdp .cart,
body.pg-pdp form.cart {
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.7rem;
	margin: 0 0 1.5rem !important;
	padding: 0 !important;
	border: 0 !important;
}

body.pg-pdp .quantity,
body.pg-pdp .cart .quantity,
body.pg-pdp .quantity[data-type="type-2"] {
	--quantity-width: 8.75rem;
	--quantity-height: 3.15rem;
	position: relative !important;
	display: block !important;
	width: var(--quantity-width) !important;
	height: var(--quantity-height) !important;
	min-height: var(--quantity-height) !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(40, 28, 12, 0.14) !important;
	border-radius: 999px !important;
	background: #fff !important;
	overflow: hidden;
	box-sizing: border-box;
}

body.pg-pdp .quantity .qty,
body.pg-pdp .cart .quantity .qty,
body.pg-pdp .quantity[data-type="type-2"] input.qty {
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 2.4rem !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	box-shadow: none !important;
	text-align: center !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	color: #171411 !important;
	-moz-appearance: textfield;
}

body.pg-pdp .quantity .qty::-webkit-outer-spin-button,
body.pg-pdp .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.pg-pdp .quantity .ct-increase,
body.pg-pdp .quantity .ct-decrease {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%);
	z-index: 2;
	width: 2rem !important;
	height: 2rem !important;
	border-radius: 50% !important;
	background: rgba(232, 93, 4, 0.1) !important;
	color: #171411 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

body.pg-pdp .quantity .ct-decrease {
	left: 0.35rem !important;
	right: auto !important;
}

body.pg-pdp .quantity .ct-increase {
	right: 0.35rem !important;
	left: auto !important;
}

body.pg-pdp .quantity .ct-increase:hover,
body.pg-pdp .quantity .ct-decrease:hover {
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
}

body.pg-pdp .single_add_to_cart_button,
body.pg-pdp button.single_add_to_cart_button.button {
	flex: 1 1 220px;
	min-height: 3.15rem !important;
	margin: 0 !important;
	padding: 0.85rem 1.6rem !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--pg-accent-hot, #111111) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 0.98rem !important;
	text-transform: none !important;
	letter-spacing: 0.01em !important;
	box-shadow: 0 12px 28px rgba(232, 93, 4, 0.28) !important;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

body.pg-pdp .single_add_to_cart_button:hover {
	background: #d04f00 !important;
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(232, 93, 4, 0.34) !important;
}

/* Trust com ícones — sem linhas horizontais pesadas */
.pg-pdp-trust {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 1.1rem 0.95rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(40, 28, 12, 0.07);
	border-radius: 16px;
}

.pg-pdp-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.pg-pdp-trust__icon {
	flex: 0 0 2.45rem;
	width: 2.45rem;
	height: 2.45rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(232, 93, 4, 0.1);
	color: var(--pg-accent-hot, #111111);
}

.pg-pdp-trust__icon .pg-trust__icon-svg {
	width: 1.15rem;
	height: 1.15rem;
}

.pg-pdp-trust__copy {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	min-width: 0;
	padding-top: 0.15rem;
}

.pg-pdp-trust__copy strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1d1812;
	line-height: 1.25;
}

.pg-pdp-trust__copy span {
	font-size: 0.8rem;
	color: #7a7268;
	line-height: 1.3;
}

/* Share */
.pg-pdp-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 0.85rem;
	margin: 0;
	padding: 0;
	border: 0;
}

.pg-pdp-share__label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a8175;
}

.pg-pdp-share__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.pg-pdp-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(40, 28, 12, 0.1);
	font-size: 0.82rem;
	font-weight: 600;
	color: #2a241c;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pg-pdp-share__btn:hover {
	border-color: var(--pg-accent-hot, #111111);
	color: var(--pg-accent-hot, #111111);
	transform: translateY(-1px);
}

.pg-pdp-share__btn--wa:hover {
	border-color: #1faa4b;
	color: #1faa4b;
}

/* Esconde meta / divisórias / share duplicado do Blocksy — NÃO esconder add-to-cart */
body.pg-pdp .summary .product_meta,
body.pg-pdp .entry-summary .product_meta,
body.pg-pdp .summary > hr,
body.pg-pdp .entry-summary > hr,
body.pg-pdp .entry-summary .ct-product-share,
body.pg-pdp .ct-product-divider {
	display: none !important;
}

body.pg-pdp .ct-product-add-to-cart,
body.pg-pdp .summary .ct-product-add-to-cart {
	display: block !important;
	margin: 0 0 1.25rem !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

body.pg-pdp .summary > *:not(.pg-pdp-trust):not(.pg-pdp-pay-wrap):not(.cart):not(form.cart),
body.pg-pdp .entry-summary > *:not(.pg-pdp-trust):not(.pg-pdp-pay-wrap):not(.cart):not(form.cart) {
	box-shadow: none !important;
}

/* Detalhes — editorial, sem “cardzada” pesada */
.pg-pdp-details {
	margin: 2rem 0 0;
	padding: 2.25rem 0 0.5rem;
	background: #fff;
	border-top: 1px solid rgba(40, 28, 12, 0.08);
}

.pg-pdp-details .pg-container {
	width: min(100% - 2.5rem, 1180px);
	margin: 0 auto;
}

.pg-pdp-tabs {
	width: 100%;
}

.pg-pdp-tabs__nav-wrap {
	position: relative;
	display: block;
	margin: 0 0 1.5rem;
	padding: 0.35rem;
	border-radius: 16px;
	background: #f4f1ec;
	border: 1px solid rgba(40, 28, 12, 0.05);
}

.pg-pdp-tabs__nav-wrap::before,
.pg-pdp-tabs__nav-wrap::after {
	content: "";
	position: absolute;
	top: 0.35rem;
	bottom: 0.35rem;
	z-index: 1;
	width: 1.75rem;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.pg-pdp-tabs__nav-wrap::before {
	left: 0.35rem;
	background: linear-gradient(90deg, #f4f1ec 35%, rgba(244, 241, 236, 0));
	border-radius: 12px 0 0 12px;
}

.pg-pdp-tabs__nav-wrap::after {
	right: 0.35rem;
	background: linear-gradient(270deg, #f4f1ec 35%, rgba(244, 241, 236, 0));
	border-radius: 0 12px 12px 0;
}

.pg-pdp-tabs__nav-wrap.is-scrollable::after,
.pg-pdp-tabs__nav-wrap.is-scrollable.is-overflow-start::before {
	opacity: 1;
}

.pg-pdp-tabs__nav-wrap.is-scrollable.is-at-end::after {
	opacity: 0;
}

.pg-pdp-tabs__nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.3rem;
	margin: 0;
	padding: 0 0.2rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-padding-inline: 0.75rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.pg-pdp-tabs__nav-wrap.is-scrollable .pg-pdp-tabs__nav {
	padding-inline: 2.35rem;
}

.pg-pdp-tabs__nav::-webkit-scrollbar {
	display: none;
}

.pg-pdp-tabs__arrow {
	appearance: none;
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 2rem;
	height: 2rem;
	display: none;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #3d3832;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(40, 28, 12, 0.12);
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.pg-pdp-tabs__arrow--prev {
	left: 0.35rem;
}

.pg-pdp-tabs__arrow--next {
	right: 0.35rem;
}

.pg-pdp-tabs__nav-wrap.is-scrollable .pg-pdp-tabs__arrow {
	display: inline-flex;
}

.pg-pdp-tabs__arrow:hover:not(:disabled) {
	background: var(--pg-accent-hot, #111111);
	color: #fff;
}

.pg-pdp-tabs__arrow:disabled {
	opacity: 0.28;
	cursor: default;
}

.pg-pdp-tabs__hint {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin: -0.35rem 0 1rem;
	padding: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8a8278;
}

.pg-pdp-tabs__hint[hidden] {
	display: none !important;
}

.pg-pdp-tabs__hint span {
	color: var(--pg-accent-hot, #111111);
	font-size: 0.85rem;
	line-height: 1;
}

.pg-pdp-tabs__tab {
	appearance: none;
	flex: 0 0 auto;
	margin: 0;
	padding: 0.7rem 1.15rem;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #5c564e;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.pg-pdp-tabs__tab:hover {
	color: #171411;
	background: rgba(255, 255, 255, 0.65);
}

.pg-pdp-tabs__tab.is-active {
	background: #fff;
	color: #171411;
	box-shadow: 0 2px 10px rgba(40, 28, 12, 0.08);
}

.pg-pdp-tabs__tab.is-active::after {
	content: "";
	display: block;
	width: 1.1rem;
	height: 2px;
	margin: 0.35rem auto 0;
	border-radius: 2px;
	background: var(--pg-accent-hot, #111111);
}

.pg-pdp-tabs__panels {
	border: 1px solid rgba(40, 28, 12, 0.08);
	border-radius: 18px;
	background: #fff;
	padding: 2.35rem 1.75rem 1.9rem;
	min-height: 0;
}

.pg-pdp-tabs__panel {
	animation: pg-pdp-rise 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pg-pdp-tabs__panel[hidden] {
	display: none !important;
}

/* Overview — Descrição com presença, sem textão */
.pg-pdp-overview {
	display: grid;
	gap: 1.25rem;
}

.pg-pdp-overview__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pg-accent-hot, #111111);
}

.pg-pdp-overview__lead {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.65;
	color: #2c2620;
	max-width: 54ch;
}

.pg-pdp-overview__lead p {
	margin: 0 0 0.65rem;
}

.pg-pdp-overview__lead p:last-child {
	margin-bottom: 0;
}

.pg-pdp-overview__highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 0.75rem;
}

.pg-pdp-overview__highlights[data-count="1"] {
	grid-template-columns: minmax(0, 1fr);
	max-width: 22rem;
}

.pg-pdp-overview__highlights[data-count="2"] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pg-pdp-overview__card {
	display: grid;
	gap: 0.35rem;
	padding: 0.95rem 1rem;
	border-radius: 14px;
	background: linear-gradient(165deg, #fffaf5 0%, #f7f3ee 100%);
	border: 1px solid rgba(40, 28, 12, 0.06);
}

.pg-pdp-overview__card strong {
	font-size: 0.92rem;
	font-weight: 700;
	color: #171411;
	line-height: 1.3;
}

.pg-pdp-overview__card span {
	font-size: 0.86rem;
	line-height: 1.45;
	color: #5c564e;
}

.pg-pdp-overview__specs {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0;
	border-top: 1px solid rgba(40, 28, 12, 0.08);
	padding-top: 1.05rem;
}

.pg-pdp-overview__specs[data-count="1"] {
	grid-template-columns: minmax(0, 1fr);
}

.pg-pdp-overview__specs[data-count="2"] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pg-pdp-overview__spec {
	display: grid;
	gap: 0.2rem;
	padding: 0 1rem;
	border-left: 1px solid rgba(40, 28, 12, 0.08);
}

.pg-pdp-overview__spec:first-child {
	padding-left: 0;
	border-left: 0;
}

.pg-pdp-overview__spec dt {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a8278;
}

.pg-pdp-overview__spec dd {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: #171411;
	line-height: 1.35;
}

@media (max-width: 767px) {
	body.pg-pdp .ct-container-full[data-vertical-spacing*="top"],
	body.pg-pdp .ct-container[data-vertical-spacing*="top"],
	body.pg-pdp main#main .ct-container-full {
		--theme-content-vertical-spacing: 0.5rem;
		padding-top: 0.35rem !important;
	}

	body.pg-pdp .woocommerce-breadcrumb,
	body.pg-pdp .ct-breadcrumbs,
	body.pg-pdp nav.woocommerce-breadcrumb {
		width: 100%;
		margin: 0.15rem 0 0.55rem;
		padding-inline: 1rem !important;
		box-sizing: border-box;
		font-size: 0.72rem;
	}

	body.pg-pdp .ct-container,
	body.pg-pdp .ct-container-full,
	body.pg-pdp #content .ct-container,
	body.pg-pdp .theme-container {
		width: 100%;
		padding-inline: 1rem;
		box-sizing: border-box;
	}

	body.pg-pdp .product-entry-wrapper,
	body.pg-pdp .product-entry-wrapper.is-width-constrained {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}

	.pg-pdp-tabs__nav-wrap {
		margin-bottom: 0.45rem;
		padding: 0.35rem;
		border-radius: 14px;
		background: #efebe4;
	}

	.pg-pdp-tabs__nav-wrap::before,
	.pg-pdp-tabs__nav-wrap::after {
		top: 0.35rem;
		bottom: 0.35rem;
		width: 2.5rem;
		opacity: 0;
	}

	.pg-pdp-tabs__nav-wrap::before {
		left: 0;
		background: linear-gradient(90deg, #efebe4 45%, rgba(239, 235, 228, 0));
		border-radius: 14px 0 0 14px;
	}

	.pg-pdp-tabs__nav-wrap::after {
		right: 0;
		width: 3rem;
		background: linear-gradient(270deg, #efebe4 55%, rgba(239, 235, 228, 0));
		border-radius: 0 14px 14px 0;
		opacity: 0;
	}

	.pg-pdp-tabs__nav-wrap.is-scrollable::after,
	.pg-pdp-tabs__nav-wrap.is-scrollable.is-overflow-start::before {
		opacity: 1;
	}

	.pg-pdp-tabs__nav-wrap.is-scrollable.is-at-end::after {
		opacity: 0;
	}

	/* Mobile: seta next visível pra deixar claro que tem mais */
	.pg-pdp-tabs__arrow--prev {
		display: none !important;
	}

	.pg-pdp-tabs__nav-wrap.is-scrollable .pg-pdp-tabs__arrow--next {
		display: inline-flex !important;
		right: 0.4rem;
		width: 2.1rem;
		height: 2.1rem;
		background: var(--pg-accent-hot, #111111);
		color: #fff;
		box-shadow: 0 2px 10px rgba(232, 93, 4, 0.35);
	}

	.pg-pdp-tabs__nav-wrap.is-scrollable.is-at-end .pg-pdp-tabs__arrow--next {
		display: none !important;
	}

	.pg-pdp-tabs__nav,
	.pg-pdp-tabs__nav-wrap.is-scrollable .pg-pdp-tabs__nav {
		padding: 0 2.6rem 0 0.55rem;
		gap: 0.35rem;
	}

	.pg-pdp-tabs__tab {
		font-size: 0.86rem;
		padding: 0.62rem 1rem;
		border-radius: 10px;
	}

	.pg-pdp-tabs__tab.is-active::after {
		width: 0.85rem;
		margin-top: 0.28rem;
	}

	.pg-pdp-tabs__hint {
		display: flex;
		margin: 0 0 1rem;
	}

	.pg-pdp-tabs__panels {
		padding: 1.35rem 1.05rem 1.25rem;
		min-height: 0;
		border-radius: 16px;
		width: 100%;
		box-sizing: border-box;
	}

	.pg-pdp-overview {
		gap: 1rem;
	}

	.pg-pdp-overview__eyebrow {
		font-size: 0.72rem;
		letter-spacing: 0.06em;
	}

	.pg-pdp-overview__lead {
		font-size: 0.95rem;
		line-height: 1.6;
		max-width: none;
	}

	.pg-pdp-overview__highlights {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.pg-pdp-overview__highlights[data-count="2"] {
		grid-template-columns: 1fr;
	}

	.pg-pdp-overview__card {
		padding: 0.85rem 0.9rem;
	}

	.pg-pdp-overview__specs {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.pg-pdp-overview__spec {
		padding: 0;
		border-left: 0;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid rgba(40, 28, 12, 0.06);
	}

	.pg-pdp-overview__spec:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}
}

.pg-pdp-block__title {
	margin: 0 0 1rem;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	color: #171411;
	position: relative;
	padding-bottom: 0.7rem;
}

.pg-pdp-block__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2.4rem;
	height: 2px;
	background: var(--pg-accent-hot, #111111);
	border-radius: 2px;
}

.pg-pdp-block__lead {
	font-size: 1.08rem;
	line-height: 1.6;
	color: #2c2620;
	margin-bottom: 0.85rem;
}

.pg-pdp-block__lead p:last-child,
.pg-pdp-block__body p:last-child {
	margin-bottom: 0;
}

.pg-pdp-block__body {
	font-size: 1rem;
	line-height: 1.7;
	color: #4a453e;
}

.pg-pdp-block__note {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	font-style: italic;
	color: #7a7268;
}

.pg-pdp-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
}

.pg-pdp-list li {
	display: grid;
	gap: 0.25rem;
	padding: 0;
	border: 0;
}

.pg-pdp-list__title {
	font-size: 1.02rem;
	font-weight: 700;
	color: #1d1812;
}

.pg-pdp-list__size {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--pg-accent-hot, #111111);
}

.pg-pdp-list__text {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #5c564e;
	max-width: 62ch;
}

.pg-pdp-bullets {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.55rem;
	color: #4a453e;
	font-size: 0.98rem;
	line-height: 1.5;
}

.pg-pdp-bullets li::marker {
	color: var(--pg-accent-hot, #111111);
}

.pg-pdp-specs {
	margin: 0;
	display: grid;
	gap: 0;
	background: #fff;
	border-radius: 16px;
	border: 1px solid rgba(40, 28, 12, 0.07);
	overflow: hidden;
}

.pg-pdp-specs__row {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 1rem;
	padding: 0.95rem 1.2rem;
	border-bottom: 1px solid rgba(40, 28, 12, 0.06);
}

.pg-pdp-specs__row:nth-child(even) {
	background: rgba(247, 243, 236, 0.65);
}

.pg-pdp-specs__row:last-child {
	border-bottom: 0;
}

.pg-pdp-specs dt {
	margin: 0;
	font-weight: 700;
	color: #1d1812;
	font-size: 0.92rem;
}

.pg-pdp-specs dd {
	margin: 0;
	color: #5c564e;
	font-size: 0.92rem;
}

@keyframes pg-pdp-rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

body.pg-pdp .woocommerce-product-gallery {
	animation: pg-pdp-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.pg-pdp .summary.entry-summary,
body.pg-pdp .entry-summary.summary {
	animation: pg-pdp-rise 0.65s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.pg-pdp-details .pg-pdp-block {
	animation: pg-pdp-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	body.pg-pdp .woocommerce-product-gallery,
	body.pg-pdp .summary.entry-summary,
	body.pg-pdp .entry-summary.summary,
	body.pg-pdp-details .pg-pdp-block {
		animation: none;
	}
}

/* Related */
body.pg-pdp .related.products,
body.pg-pdp section.related.products {
	grid-column: 1 / -1;
	border: 0 !important;
}

body.pg-pdp .related.products > h2 {
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-weight: 700;
	letter-spacing: -0.015em;
	color: #171411;
}

@media (min-width: 900px) {
	.pg-pdp-trust {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.35rem 1rem;
		padding: 1.15rem 1.1rem;
	}

	.pg-pdp-trust__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
		padding: 0.15rem 0.35rem;
	}

	body.pg-pdp .product-entry-wrapper .summary,
	body.pg-pdp .product-entry-wrapper .entry-summary {
		position: sticky;
		top: 6.5rem;
	}
}

@media (max-width: 999px) {
	body.pg-pdp .product-entry-wrapper,
	body.pg-pdp .product-entry-wrapper.is-width-constrained {
		flex-wrap: wrap !important;
		gap: 1.5rem !important;
	}

	body.pg-pdp .product-entry-wrapper .woocommerce-product-gallery,
	body.pg-pdp .product-entry-wrapper .summary,
	body.pg-pdp .product-entry-wrapper .entry-summary {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	body.pg-pdp div.product,
	body.pg-pdp .pg-pdp-product {
		padding-bottom: 1rem !important;
	}

	body.pg-pdp .woocommerce-product-gallery {
		border-radius: 16px;
	}

	body.pg-pdp .product_title,
	body.pg-pdp .summary .product_title {
		font-size: 1.85rem !important;
	}

	.pg-pdp-price ins,
	.pg-pdp-price__sale,
	.pg-pdp-price__current {
		font-size: 1.55rem !important;
	}

	.pg-pdp-specs__row {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}

	body.pg-pdp .cart,
	body.pg-pdp form.cart {
		flex-direction: column;
		align-items: stretch;
	}

	body.pg-pdp .cart .quantity {
		align-self: flex-start;
	}

	.pg-pdp-details {
		padding-top: 2.25rem;
	}

	.pg-pdp-details .pg-container {
		gap: 1.85rem;
	}
}

/* ---------- PDP: variações + qty + frete + relacionados ---------- */
body.pg-pdp form.cart,
body.pg-pdp form.variations_form,
body.pg-pdp .ct-product-add-to-cart form.cart {
	display: flex !important;
	flex-direction: column;
	align-items: stretch !important;
	gap: 0.9rem;
	visibility: visible !important;
	opacity: 1 !important;
	margin: 0 0 1.25rem !important;
}

body.pg-pdp .variations {
	width: 100%;
	margin: 0 !important;
	border: 0 !important;
}

body.pg-pdp .variations tbody,
body.pg-pdp .variations tr {
	display: block;
	width: 100%;
}

body.pg-pdp .variations tr {
	margin: 0 0 0.75rem;
}

body.pg-pdp .variations th,
body.pg-pdp .variations td {
	display: block;
	width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: left !important;
	background: transparent !important;
}

body.pg-pdp .variations th.label {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #8a8175;
}

/* Swatches — esconde o select nativo, mantém pro Woo */
.pg-pdp-swatches {
	width: 100%;
}

.pg-pdp-swatches__select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.pg-pdp-swatches__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.pg-pdp-swatch {
	appearance: none;
	display: grid;
	gap: 0.4rem;
	width: 5.4rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: center;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
}

.pg-pdp-swatch__media {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid rgba(40, 28, 12, 0.1);
	background: #efebe4;
	box-shadow: 0 4px 12px rgba(40, 28, 12, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.pg-pdp-swatch__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pg-pdp-swatch__media--text {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem;
	background: #f4f1ec;
	box-sizing: border-box;
}

.pg-pdp-swatch__name {
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.25;
	color: #171411;
	text-align: center;
	word-break: break-word;
}

.pg-pdp-swatch__label {
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.25;
	color: #5c564e;
}

.pg-pdp-swatch--text .pg-pdp-swatch__label {
	display: none;
}

.pg-pdp-swatch:hover .pg-pdp-swatch__media {
	border-color: rgba(232, 93, 4, 0.45);
	transform: translateY(-1px);
}

.pg-pdp-swatch.is-selected .pg-pdp-swatch__media {
	border-color: var(--pg-accent-hot, #111111);
	box-shadow: 0 0 0 2px rgba(232, 93, 4, 0.18), 0 8px 18px rgba(232, 93, 4, 0.12);
}

.pg-pdp-swatch.is-selected .pg-pdp-swatch__label {
	color: #171411;
}

body.pg-pdp .variations select,
body.pg-pdp .variations .reset_variations {
	width: 100%;
}

body.pg-pdp .variations select {
	min-height: 3rem;
	padding: 0.7rem 2.4rem 0.7rem 0.95rem !important;
	border: 1px solid rgba(40, 28, 12, 0.14) !important;
	border-radius: 12px !important;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23665f55' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.95rem center !important;
	appearance: none;
	font-size: 0.95rem !important;
	font-weight: 600;
	color: #171411 !important;
	box-shadow: none !important;
}

body.pg-pdp .reset_variations {
	display: inline-block;
	margin-top: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--pg-accent-hot, #111111);
	text-decoration: none;
}

body.pg-pdp .woocommerce-variation,
body.pg-pdp .single_variation {
	margin: 0 !important;
}

/* Preço da variação só atualiza o de cima — esconde o bloco duplicado */
body.pg-pdp .woocommerce-variation-price,
body.pg-pdp .single_variation > .woocommerce-variation-price,
body.pg-pdp .woocommerce-variation .price {
	display: none !important;
}

body.pg-pdp .woocommerce-variation-availability {
	margin: 0 0 0.5rem !important;
	font-size: 0.88rem;
}

body.pg-pdp .single_variation_wrap,
body.pg-pdp .woocommerce-variation-add-to-cart {
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.7rem;
	width: 100%;
}

body.pg-pdp form.cart:not(.variations_form) {
	flex-direction: row;
	flex-wrap: wrap;
}

body.pg-pdp form.cart:not(.variations_form) .quantity,
body.pg-pdp .woocommerce-variation-add-to-cart .quantity {
	margin: 0 !important;
}

body.pg-pdp form.cart:not(.variations_form) .single_add_to_cart_button,
body.pg-pdp .woocommerce-variation-add-to-cart .single_add_to_cart_button {
	flex: 1 1 200px;
}

body.pg-pdp .single_add_to_cart_button.disabled,
body.pg-pdp .single_add_to_cart_button.wc-variation-selection-needed {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Frete */
.pg-pdp-ship {
	margin: 0 0 1.35rem;
	padding: 1rem 1.05rem 0.95rem;
	border: 1px solid rgba(40, 28, 12, 0.1);
	border-radius: 16px;
	background: #fff;
}

.pg-pdp-ship__head {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin: 0 0 0.85rem;
}

.pg-pdp-ship__icon {
	flex: 0 0 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(232, 93, 4, 0.12);
	color: var(--pg-accent-hot, #111111);
	line-height: 0;
	overflow: hidden;
}

.pg-pdp-ship__icon svg {
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	transform: translateY(1px);
}

.pg-pdp-ship__copy strong {
	display: block;
	font-size: 0.95rem;
	color: #171411;
	line-height: 1.25;
}

.pg-pdp-ship__copy span {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.8rem;
	color: #7a7268;
}

.pg-pdp-ship__form {
	display: flex;
	gap: 0.5rem;
}

.pg-pdp-ship__input {
	flex: 1 1 auto;
	min-height: 2.85rem;
	padding: 0.55rem 0.85rem !important;
	border: 1px solid rgba(40, 28, 12, 0.14) !important;
	border-radius: 999px !important;
	background: #fff !important;
	font-size: 0.95rem !important;
	font-weight: 600;
	color: #171411 !important;
}

.pg-pdp-ship__btn {
	flex: 0 0 auto;
	min-height: 2.85rem;
	padding: 0.55rem 1.15rem;
	border: 0;
	border-radius: 999px;
	background: #171411;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.pg-pdp-ship__btn:hover {
	background: #2c2620;
}

.pg-pdp-ship__btn:disabled,
.pg-pdp-ship__btn.is-loading {
	opacity: 0.65;
	cursor: wait;
}

.pg-pdp-ship__hint {
	margin: 0.55rem 0 0;
	font-size: 0.78rem;
}

.pg-pdp-ship__hint a {
	color: #7a7268;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pg-pdp-ship__result {
	margin-top: 0.85rem;
}

.pg-pdp-ship__rates {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.pg-pdp-ship__rates li {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	background: #f7f7f7;
	font-size: 0.9rem;
}

.pg-pdp-ship__rate-label {
	color: #2a241c;
	font-weight: 600;
}

.pg-pdp-ship__rate-price {
	color: #171411;
	white-space: nowrap;
}

.pg-pdp-ship__free {
	color: #1faa4b;
}

.pg-pdp-ship__msg {
	margin: 0;
	font-size: 0.88rem;
	color: #5c564e;
}

.pg-pdp-ship__msg--err {
	color: #b42318;
}

.pg-pdp-ship__msg--warn {
	color: #b54708;
}

/* Relacionados */
body.pg-pdp .related.products,
body.pg-pdp section.related.products {
	width: min(100% - 2.5rem, 1180px);
	margin: 1.25rem auto 0 !important;
	padding: 1.75rem 0 2.5rem !important;
	border-top: 1px solid rgba(40, 28, 12, 0.08);
	background: #fff !important;
}

body.pg-pdp .related.products > h2 {
	margin: 0 0 1.1rem !important;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem) !important;
}

body.pg-pdp .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.15rem;
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 999px) {
	body.pg-pdp .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
}

@media (max-width: 560px) {
	body.pg-pdp .related.products,
	body.pg-pdp section.related.products {
		margin-top: 0.35rem !important;
		padding: 0.85rem 20px 1.5rem !important;
	}

	body.pg-pdp .related.products > h2 {
		margin-bottom: 1rem !important;
		font-size: 1.15rem !important;
	}

	body.pg-pdp .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 1.2rem !important;
		column-gap: 1.2rem !important;
		row-gap: 1.2rem !important;
		width: 100% !important;
	}

	body.pg-pdp .related.products ul.products li.product {
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
		float: none !important;
	}

	body.pg-pdp .related.products ul.products li.product .woocommerce-loop-product__title,
	body.pg-pdp .related.products ul.products li.product .ct-woo-card-title {
		font-size: 0.92rem !important;
		padding: 0.75rem 0.75rem 0 !important;
	}

	body.pg-pdp .related.products ul.products li.product .price {
		padding-left: 0.75rem !important;
		padding-right: 0.75rem !important;
	}

	body.pg-pdp .related.products ul.products li.product .button,
	body.pg-pdp .related.products ul.products li.product .add_to_cart_button {
		margin-left: 0.75rem !important;
		margin-right: 0.75rem !important;
	}

	.pg-pdp-ship__form {
		flex-direction: column;
	}

	.pg-pdp-ship__btn {
		width: 100%;
	}
}

/* Detalhes / vídeo / related fora do wrapper de 2 colunas */
body.pg-pdp .pg-pdp-details,
body.pg-pdp .pg-pdp-video,
body.pg-pdp .related.products,
body.pg-pdp .upsells.products,
body.single-product .related.products,
body.single-product .upsells.products {
	width: min(100% - 2.5rem, 1180px) !important;
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	float: none !important;
	clear: both;
	background: #fff !important;
}

body.pg-pdp .pg-pdp-details,
body.pg-pdp .pg-pdp-video {
	display: block !important;
}

/* Mobile: largura total — sem margem lateral apertando */
@media (max-width: 767px) {
	body.pg-pdp .pg-pdp-details,
	body.pg-pdp .pg-pdp-video,
	body.pg-pdp .related.products,
	body.pg-pdp section.related.products,
	body.pg-pdp .upsells.products,
	body.single-product .related.products,
	body.single-product .upsells.products {
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
		box-sizing: border-box !important;
	}

	body.pg-pdp .pg-pdp-video {
		padding-top: 1.5rem !important;
		padding-bottom: 0.35rem !important;
		margin-top: 0.25rem !important;
	}

	body.pg-pdp .related.products,
	body.pg-pdp section.related.products,
	body.pg-pdp .upsells.products,
	body.single-product .related.products,
	body.single-product .upsells.products {
		margin-top: 0.25rem !important;
		padding-top: 0.85rem !important;
		padding-bottom: 1.5rem !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	body.pg-pdp .related.products > h2,
	body.pg-pdp .upsells.products > h2 {
		margin-bottom: 1rem !important;
	}

	/*
	 * Mobile related: Blocksy usa columns-4 + --shop-columns,
	 * o que deixa 2 cards espremidos. Força 2 colunas + gap.
	 */
	body.pg-pdp .related.products ul.products,
	body.pg-pdp .related.products ul.products[data-products],
	body.pg-pdp .related.products ul.products.columns-2,
	body.pg-pdp .related.products ul.products.columns-3,
	body.pg-pdp .related.products ul.products.columns-4,
	body.pg-pdp .upsells.products ul.products,
	body.pg-pdp .upsells.products ul.products[data-products],
	body.single-product .related.products ul.products,
	body.single-product .related.products ul.products[data-products],
	body.single-product .related.products ul.products.columns-4 {
		display: grid !important;
		--shop-columns: repeat(2, minmax(0, 1fr)) !important;
		--grid-columns-gap: 1.25rem !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-column-gap: 1.25rem !important;
		grid-row-gap: 1.25rem !important;
		gap: 1.25rem !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	body.pg-pdp .related.products ul.products li.product,
	body.pg-pdp .upsells.products ul.products li.product,
	body.single-product .related.products ul.products li.product,
	body.single-product .upsells.products ul.products li.product {
		width: auto !important;
		max-width: none !important;
		min-width: 0 !important;
		margin: 0 !important;
		float: none !important;
		clear: none !important;
	}

	body.pg-pdp .pg-pdp-details .pg-container,
	body.pg-pdp .pg-pdp-video .pg-container {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding-inline: 0 !important;
	}

	body.pg-pdp .product-entry-wrapper,
	body.pg-pdp .product-entry-wrapper.is-width-constrained {
		width: 100% !important;
		max-width: none !important;
		padding-inline: 0.85rem !important;
		box-sizing: border-box !important;
	}

	body.pg-pdp .ct-container,
	body.pg-pdp .ct-container-full,
	body.pg-pdp #content .ct-container,
	body.pg-pdp .theme-container {
		width: 100% !important;
		max-width: none !important;
		padding-inline: 0 !important;
	}

	body.pg-pdp .woocommerce-breadcrumb,
	body.pg-pdp .ct-breadcrumbs,
	body.pg-pdp nav.woocommerce-breadcrumb {
		width: 100% !important;
		max-width: none !important;
		padding-inline: 0.85rem !important;
		box-sizing: border-box !important;
	}
}

.pg-pdp-video {
	padding: 2.75rem 0 2rem;
	margin-top: 0.5rem !important;
	border-top: 0;
}

.pg-pdp-video .pg-container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.pg-pdp-video__head {
	margin: 0 0 1.15rem;
}

.pg-pdp-video__title {
	margin: 0;
	font-family: var(--pg-font-body, "DM Sans", system-ui, sans-serif);
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #171411;
	line-height: 1.2;
}

.pg-pdp-video__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(40, 28, 12, 0.08);
	box-shadow: 0 16px 40px rgba(40, 28, 12, 0.08);
	background: #111;
}

.pg-pdp-video__frame iframe,
.pg-pdp-video__frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
}

/* Compra row: qty + botão lado a lado */
body.pg-pdp .woocommerce-variation-add-to-cart,
body.pg-pdp .ct-cart-actions {
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.7rem;
	width: 100%;
}

body.pg-pdp .ct-cart-actions .single_add_to_cart_button,
body.pg-pdp .woocommerce-variation-add-to-cart .single_add_to_cart_button {
	flex: 1 1 200px;
	min-height: 3.15rem !important;
}

@media (max-width: 999px) {
	body.pg-pdp .product-entry-wrapper .summary,
	body.pg-pdp .product-entry-wrapper .entry-summary {
		position: static !important;
	}
}
