/* ===== TAF LOJA - visual do catálogo e filtros =====
   Carregado por mu-plugins/taf-tweaks.php. Cores da marca: #ED1C24 / #C31818. */

/* ---------- Grade de produtos: 3 colunas no desktop ---------- */
.woocommerce ul.products.elementor-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 22px !important;
}
@media (max-width: 1024px) {
	.woocommerce ul.products.elementor-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 599px) {
	.woocommerce ul.products.elementor-grid { grid-template-columns: 1fr !important; }
}

/* ---------- Card de produto ---------- */
.woocommerce ul.products li.product {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	justify-content: flex-start !important;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 14px !important;
	margin: 0 !important;
	width: auto !important;
	float: none !important;
	transition: box-shadow .2s ease, transform .2s ease;
}
.woocommerce ul.products li.product:hover {
	box-shadow: 0 8px 24px rgba(17, 24, 39, .10);
	transform: translateY(-2px);
}
.woocommerce ul.products li.product > * {
	width: 100% !important;
	max-width: 100% !important;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto;
	text-decoration: none;
}
.woocommerce ul.products li.product img {
	width: 100% !important;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 8px;
	background: #f8f9fa;
	margin: 0 0 12px !important;
	float: none !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 13px !important;
	font-weight: 600;
	line-height: 1.45;
	color: #1f2937 !important;
	text-transform: uppercase;
	letter-spacing: .01em;
	margin: 0 0 8px !important;
	padding: 0 !important;
	min-height: calc(1.45em * 2);
}
.woocommerce ul.products li.product .price {
	margin-top: auto !important;
	margin-bottom: 0;
	font-size: 19px !important;
	font-weight: 700;
	color: #111827 !important;
}
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
	color: #111827 !important;
}
/* Botão Comprar: largura total, abaixo do preço */
.woocommerce ul.products li.product .button,
.elementor-wc-products ul.products li.product .button {
	display: block !important;
	width: 100% !important;
	align-self: stretch !important;
	position: static !important;
	margin: 12px 0 0 !important;
	padding: 11px 16px !important;
	text-align: center;
	line-height: 1.2 !important;
	font-size: 13px !important;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #fff !important;
	background: #ED1C24 !important;
	border: 1px solid #C31818 !important;
	border-radius: 999px !important;
	transition: background .2s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.woocommerce ul.products li.product .button:hover {
	background: #C31818 !important;
}
/* "Carregando"/added-to-cart do ajax */
.woocommerce ul.products li.product .added_to_cart {
	display: block;
	margin-top: 8px;
	text-align: center;
	font-size: 13px;
}

/* ---------- Barra superior (contagem + ordenação) ---------- */
.woocommerce .woocommerce-result-count {
	color: #6b7280;
	font-size: 14px;
	margin: 6px 0 18px;
}
.woocommerce .woocommerce-ordering { margin: 0 0 18px; }
.woocommerce .woocommerce-ordering select {
	padding: 9px 34px 9px 14px;
	font-size: 14px;
	color: #374151;
	background-color: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
}

/* ---------- Paginação ---------- */
.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	gap: 6px;
	justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	float: none;
	overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #374151;
	font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: #ED1C24;
	border-color: #C31818;
	color: #fff;
}

/* ---------- Sidebar de filtros (WOOF) ---------- */
.widget-woof .woof_container {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 14px !important;
}
.widget-woof .woof_list {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}
.widget-woof .woof_list li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 0 !important;
	margin: 0 !important;
}
.widget-woof .woof_checkbox_term {
	width: 17px;
	height: 17px;
	margin: 0 !important;
	accent-color: #ED1C24;
	cursor: pointer;
	flex: 0 0 auto;
}
.widget-woof .woof_checkbox_label {
	font-size: 13.5px;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
	margin: 0 !important;
	transition: color .15s ease;
}
.widget-woof .woof_checkbox_label:hover { color: #ED1C24; }
.widget-woof .woof_checkbox_label_selected { color: #ED1C24; font-weight: 700; }
.widget-woof .woof_submit_search_form_container { margin-top: 4px; }
.widget-woof .woof_reset_button_2,
.widget-woof .woof_submit_search_form {
	border-radius: 999px !important;
	font-size: 13px !important;
	line-height: 1.2 !important;
	padding: 10px 18px !important;
}

/* Slider de preço (ion.rangeSlider skin round) nas cores da marca */
.woof_price3_search_container { padding-top: 26px !important; }
.irs--round .irs-bar { background-color: #ED1C24; }
.irs--round .irs-handle { border-color: #ED1C24; }
.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single { background-color: #ED1C24; font-size: 11px; }
.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before { border-top-color: #ED1C24; }
.irs--round .irs-min,
.irs--round .irs-max { color: #9ca3af; }

/* ---------- Painel de filtros ativos (tags/badges) ---------- */
.woof_products_top_panel { margin: 0 0 18px !important; padding: 0 !important; height: auto !important; }
.woof_products_top_panel ul { list-style: none; margin: 0 !important; padding: 0 !important; }
.woof_products_top_panel_ul,
.woof_products_top_panel ul[data-container] {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.woof_products_top_panel li { margin: 0 !important; padding: 0 !important; }
/* rotulo do grupo, ex. "Categorias:" */
.woof_products_top_panel ul[data-container] > li:first-child {
	font-size: 12px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-right: 2px !important;
}
/* a badge */
.woof_products_top_panel a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px 6px 14px !important;
	background: #FDECEC !important;
	background-image: none !important;
	border: 1px solid #F3B3B6 !important;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: #C31818 !important;
	text-decoration: none !important;
	line-height: 1.3;
	transition: background .15s ease, border-color .15s ease;
}
.woof_products_top_panel a:hover { background: #FAD3D5 !important; border-color: #ED1C24 !important; }
.woof_products_top_panel a .woof_remove_ppi {
	background: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline;
}
/* o X da badge */
.woof_products_top_panel a::after {
	content: "\2715";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #ED1C24;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}
.woof_products_top_panel a:hover::after { background: #A31217; }
/* botao limpar tudo do painel */
.woof_products_top_panel .woof_reset_button_2 {
	margin: 0 !important;
	padding: 8px 16px !important;
	font-size: 12px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #fff !important;
	background: #ED1C24 !important;
	border: 1px solid #C31818 !important;
	border-radius: 999px !important;
	cursor: pointer;
}
.woof_products_top_panel .woof_reset_button_2:hover { background: #C31818 !important; }

/* ---------- Mensagem "nenhum produto encontrado" ---------- */
.elementor-products-nothing-found,
.post-type-archive-product .woocommerce-info,
.tax-product_cat .woocommerce-info {
	display: block;
	background: #fff !important;
	border: 1px dashed #d1d5db !important;
	border-radius: 12px;
	padding: 44px 24px !important;
	margin: 4px 0 24px !important;
	text-align: center;
	font-size: 16.5px;
	font-weight: 600;
	color: #374151 !important;
}
.elementor-products-nothing-found::before,
.post-type-archive-product .woocommerce-info::before,
.tax-product_cat .woocommerce-info::before {
	content: "\1F50D";
	display: block;
	font-size: 36px;
	margin-bottom: 12px;
	background: none !important;
}
.elementor-products-nothing-found::after,
.post-type-archive-product .woocommerce-info::after,
.tax-product_cat .woocommerce-info::after {
	content: "Tente ajustar a faixa de preço ou limpar os filtros para ver mais produtos.";
	display: block;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	color: #6b7280;
}

/* ---------- Menu do topo: item ativo ---------- */
/* O item ativo vem com texto branco (sumia no fundo branco do header);
   pílula vermelha para ficar visível. */
/* Todos os itens com a mesma geometria compacta (nada muda de tamanho no hover)
   e sem transicao/animacao: efeito instantaneo. */
.elementor-nav-menu--main .elementor-item {
	height: auto !important;
	align-self: center;
	padding: 9px 13px !important;
	line-height: 1.2 !important;
	border-radius: 999px;
	transition: none !important;
	animation: none !important;
	transform: none !important;
	font-size: inherit !important;
}
/* layout do menu principal: uma linha, itens no tamanho do conteudo */
.elementor-nav-menu--main ul.elementor-nav-menu {
	display: flex;
	flex-wrap: nowrap !important;
	justify-content: space-evenly !important;
	align-items: center;
	gap: 4px;
	width: 100%;
}
/* respiro extra so em telas largas (abaixo disso o espaco fica justo) */
@media (min-width: 1200px) {
	.elementor-nav-menu--main ul.elementor-nav-menu {
		padding-left: 48px !important;
		margin-right: -40px !important;
	}
}
@media (max-width: 1199px) {
	.elementor-nav-menu--main .elementor-item {
		padding: 9px 10px !important;
		font-size: 15px !important;
	}
}
.elementor-nav-menu--main ul.elementor-nav-menu > li {
	flex: 0 0 auto !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	align-items: center;
}

/* o pointer "text" do Elementor escala o texto no hover: desliga */
.elementor-nav-menu--main .elementor-item:hover,
.elementor-nav-menu--main .elementor-item:focus,
.elementor-nav-menu--main .elementor-item-active {
	transform: none !important;
	font-size: inherit !important;
}
/* mata o "pointer" animado do Elementor (fundo/sublinhado que cresce) */
.elementor-nav-menu--main .elementor-item::before,
.elementor-nav-menu--main .elementor-item::after {
	display: none !important;
}
/* hover também vinha com texto branco: mesmo tratamento do ativo */
.elementor-nav-menu .elementor-item-active,
.elementor-nav-menu .elementor-item:hover,
.elementor-nav-menu .elementor-item:focus {
	background: #ED1C24 !important;
	color: #fff !important;
	border-radius: 999px;
	transition: none !important;
	animation: none !important;
}
.elementor-nav-menu--dropdown .elementor-item {
	transition: none !important;
	animation: none !important;
}
/* no menu dropdown/mobile, cantos menos arredondados */
.elementor-nav-menu--dropdown .elementor-item-active,
.elementor-nav-menu--dropdown .elementor-item:hover,
.elementor-nav-menu--dropdown .elementor-item:focus {
	border-radius: 8px;
}

/* ---------- Página de produto: informações empilhadas, sem abas ---------- */
.woocommerce-tabs ul.wc-tabs {
	display: none !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
	display: block !important; /* vence o display:none inline do JS das abas */
	margin: 0 0 32px !important;
	padding: 0 !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel:last-child { margin-bottom: 0 !important; }
/* título de cada seção */
.woocommerce-tabs,
.woocommerce-tabs .woocommerce-Tabs-panel {
	border: 0 !important;
	box-shadow: none !important;
}
.woocommerce-tabs::before,
.woocommerce-tabs::after { display: none !important; }
.woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	font-size: 17px !important;
	font-weight: 700;
	color: #1f2937 !important;
	text-transform: uppercase;
	letter-spacing: .03em;
	margin: 0 0 14px !important;
	padding: 0 0 10px !important;
	border-bottom: 2px solid #ED1C24;
}
.woocommerce-tabs .woocommerce-Tabs-panel img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}
/* tabela de atributos (informação adicional) */
.woocommerce table.woocommerce-product-attributes {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	margin: 0;
}
.woocommerce table.woocommerce-product-attributes th,
.woocommerce table.woocommerce-product-attributes td {
	padding: 11px 16px !important;
	border: 0 !important;
	border-bottom: 1px solid #e5e7eb !important;
	font-size: 14px;
	line-height: 1.5;
	background: none;
	font-style: normal !important;
}
.woocommerce table.woocommerce-product-attributes tr:last-child th,
.woocommerce table.woocommerce-product-attributes tr:last-child td {
	border-bottom: 0 !important;
}
.woocommerce table.woocommerce-product-attributes th {
	background: #f9fafb !important;
	color: #374151 !important;
	font-weight: 600;
	text-align: left;
	width: 240px;
}
.woocommerce table.woocommerce-product-attributes td {
	color: #4b5563 !important;
}
.woocommerce table.woocommerce-product-attributes td p { margin: 0; }

/* ---------- Página de produto: visual geral ---------- */
/* colunas do produto alinhadas ao topo (cards no tamanho do conteúdo) */
.single-product .elementor-element-30c9fc71 > .elementor-container {
	align-items: flex-start;
}
/* título */
.single-product .product_title {
	font-size: 25px !important;
	line-height: 1.3 !important;
	color: #1f2937 !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: .01em;
}
/* descrição curta (nos produtos TAF é uma imagem duplicada da galeria): compacta e centrada */
.single-product .woocommerce-product-details__short-description { text-align: center; }
.single-product .woocommerce-product-details__short-description p { margin: 0; }
.single-product .woocommerce-product-details__short-description img {
	max-height: 240px;
	width: auto !important;
	height: auto;
	margin: 0 auto;
	border-radius: 8px;
}
/* preço */
.single-product .elementor-widget-woocommerce-product-price .price {
	color: #ED1C24 !important;
	font-size: 30px !important;
	font-weight: 800 !important;
	letter-spacing: 0 !important;
}
/* respiros mais enxutos na coluna de compra */
.single-product .elementor-widget-woocommerce-product-title,
.single-product .elementor-widget-woocommerce-product-short-description,
.single-product .elementor-widget-woocommerce-product-price {
	margin-bottom: 18px !important;
}
/* linha quantidade + botão comprar */
.single-product form.cart {
	display: flex !important;
	align-items: stretch;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 !important;
}
.single-product form.cart .quantity {
	display: flex !important;
	float: none !important;
	margin: 0 !important;
}
.single-product form.cart .quantity input.qty {
	width: 84px;
	height: 50px;
	padding: 0 8px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
}
.single-product form.cart .single_add_to_cart_button {
	height: 50px;
	padding: 0 38px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff !important;
	background: #ED1C24 !important;
	border: 1px solid #C31818 !important;
	border-radius: 999px !important;
	line-height: 1 !important;
	margin: 0 !important;
	transition: background .15s ease;
}
.single-product form.cart .single_add_to_cart_button:hover { background: #C31818 !important; }
/* galeria */
.single-product .woocommerce-product-gallery__wrapper img { border-radius: 10px; }
.single-product .flex-control-thumbs {
	display: flex;
	gap: 8px;
	margin: 10px 0 0 !important;
	padding: 0 !important;
	list-style: none;
}
.single-product .flex-control-thumbs li {
	float: none !important;
	width: 72px !important;
	margin: 0 !important;
}
.single-product .flex-control-thumbs img {
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	opacity: 1 !important;
	cursor: pointer;
	transition: border-color .15s ease;
}
.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover { border-color: #ED1C24; }
/* card da descrição no tamanho do conteúdo */
.single-product .elementor-element-67eede62 > .elementor-container {
	align-items: flex-start;
}
/* inner section órfã (contato duplicado do rodapé, renderiza invisível) dentro do card de descrição */
.single-product .elementor-element-33187a1 { display: none !important; }
.single-product .elementor-widget-woocommerce-product-data-tabs { margin-bottom: 0 !important; }

/* ---------- Carrinho ---------- */
/* tabela de itens em card */
.woocommerce-cart .woocommerce-cart-form table.shop_table {
	background: #fff;
	border: 1px solid #e5e7eb !important;
	border-radius: 12px;
	border-collapse: separate !important;
	border-spacing: 0;
	overflow: hidden;
}
.woocommerce-cart table.shop_table th {
	background: #f9fafb;
	color: #6b7280 !important;
	font-size: 12px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 14px 16px !important;
	border: 0 !important;
	border-bottom: 1px solid #e5e7eb !important;
}
.woocommerce-cart table.shop_table td {
	padding: 16px !important;
	border: 0 !important;
	border-bottom: 1px solid #f1f2f4 !important;
	vertical-align: middle;
	color: #374151;
	background: #fff;
}
.woocommerce-cart table.shop_table tbody tr:last-child td { border-bottom: 0 !important; }
/* nome, foto, remover */
.woocommerce-cart table.shop_table td.product-name a {
	color: #1f2937 !important;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}
.woocommerce-cart table.shop_table td.product-name a:hover { color: #ED1C24 !important; }
.woocommerce-cart table.shop_table td.product-thumbnail img {
	width: 68px;
	height: 68px;
	object-fit: contain;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #f8f9fa;
}
.woocommerce-cart table.shop_table td.product-remove .remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	color: #9ca3af !important;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	background: #fff !important;
	transition: all .15s ease;
}
.woocommerce-cart table.shop_table td.product-remove .remove:hover {
	background: #ED1C24 !important;
	border-color: #C31818;
	color: #fff !important;
}
/* preços e quantidade */
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal { font-size: 15px; }
.woocommerce-cart table.shop_table td.product-subtotal { font-weight: 700; color: #111827; }
.woocommerce-cart table.cart td.product-quantity input.qty {
	width: 72px;
	height: 44px;
	padding: 0 6px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	background: #fff;
}
/* botão atualizar carrinho: pílula outline */
.woocommerce-cart table.cart td.actions .button {
	height: 46px;
	padding: 0 26px !important;
	display: inline-flex;
	align-items: center;
	font-size: 13px !important;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #ED1C24 !important;
	background: #fff !important;
	border: 2px solid #ED1C24 !important;
	border-radius: 999px !important;
	transition: all .15s ease;
	cursor: pointer;
}
.woocommerce-cart table.cart td.actions .button:hover:not(:disabled) {
	background: #ED1C24 !important;
	color: #fff !important;
}
.woocommerce-cart table.cart td.actions .button:disabled {
	color: #b9bcc2 !important;
	border-color: #e5e7eb !important;
	background: #fff !important;
	opacity: 1 !important;
}
/* card de totais */
.woocommerce-cart .cart_totals {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px !important;
}
.woocommerce-cart .cart_totals > h2 {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #1f2937 !important;
	text-transform: uppercase;
	letter-spacing: .03em;
	margin: 0 0 14px !important;
	padding: 0 0 10px !important;
	border-bottom: 2px solid #ED1C24;
}
.woocommerce-cart .cart_totals table.shop_table {
	border: 0 !important;
	margin: 0;
}
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	background: none !important;
	border: 0 !important;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
	padding: 0 !important;
}
.woocommerce-cart .cart_totals table.shop_table th {
	color: #6b7280 !important;
	font-weight: 600;
	white-space: nowrap;
}
.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total .amount {
	color: #ED1C24 !important;
	font-size: 20px !important;
	font-weight: 800 !important;
}
.woocommerce-cart .cart_totals a.shipping-calculator-button { color: #ED1C24 !important; font-weight: 600; }
/* botão finalizar compra */
.woocommerce-cart .wc-proceed-to-checkout { padding: 16px 0 0 !important; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 24px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #fff !important;
	background: #ED1C24 !important;
	border: 1px solid #C31818 !important;
	border-radius: 999px !important;
	margin-bottom: 0 !important;
	transition: background .15s ease;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover { background: #C31818 !important; }
/* carrinho vazio */
.woocommerce-cart .cart-empty {
	display: block;
	background: #fff !important;
	border: 1px dashed #d1d5db !important;
	border-radius: 12px;
	padding: 44px 24px !important;
	margin: 4px 0 20px !important;
	text-align: center;
	font-size: 16.5px;
	font-weight: 600;
	color: #374151 !important;
}
.woocommerce-cart .cart-empty::before {
	content: "\1F6D2";
	display: block;
	font-size: 36px;
	margin-bottom: 12px;
	background: none !important;
}
.woocommerce-cart .return-to-shop { text-align: center; }
.woocommerce-cart .return-to-shop a.button {
	display: inline-flex;
	align-items: center;
	height: 50px;
	padding: 0 34px !important;
	font-size: 14px !important;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #fff !important;
	background: #ED1C24 !important;
	border: 1px solid #C31818 !important;
	border-radius: 999px !important;
	transition: background .15s ease;
}
.woocommerce-cart .return-to-shop a.button:hover { background: #C31818 !important; }

/* ---------- Checkout ---------- */
/* container central (o markup do checkout fica solto no body, sem wrapper) */
body.woocommerce-checkout > .woocommerce {
	display: block;
	max-width: 1140px;
	margin: 36px auto 64px !important;
	padding: 0 20px;
}
/* aviso "já é cliente?" */
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info {
	background: #fff !important;
	border: 1px solid #e5e7eb !important;
	border-left: 4px solid #ED1C24 !important;
	border-radius: 10px;
	padding: 14px 18px !important;
	color: #374151 !important;
	font-size: 14px;
	margin-bottom: 22px;
}
body.woocommerce-checkout .woocommerce-info a {
	color: #ED1C24 !important;
	font-weight: 700;
	text-decoration: none;
}
/* duas colunas: formulário + resumo */
@media (min-width: 921px) {
	form.woocommerce-checkout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 440px;
		gap: 0 44px;
		align-items: start;
	}
	form.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / span 4; }
	form.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; }
	form.woocommerce-checkout #order_review { grid-column: 2; grid-row: 2; }
}
/* colunas internas do billing em largura total */
form.woocommerce-checkout #customer_details .col-1,
form.woocommerce-checkout #customer_details .col-2 {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
}
/* títulos de seção */
form.woocommerce-checkout h3,
#order_review_heading {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #1f2937 !important;
	text-transform: uppercase;
	letter-spacing: .03em;
	margin: 0 0 18px !important;
	padding: 0 0 10px !important;
	border-bottom: 2px solid #ED1C24;
	width: 100%;
}
/* campos */
form.woocommerce-checkout .form-row label {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 4px;
}
form.woocommerce-checkout .form-row label .required { color: #ED1C24; }
form.woocommerce-checkout .form-row {
	margin-bottom: 14px !important;
	padding: 0 !important;
}
form.woocommerce-checkout input.input-text,
form.woocommerce-checkout select,
form.woocommerce-checkout textarea {
	width: 100%;
	height: 46px;
	padding: 0 14px !important;
	font-size: 15px;
	color: #1f2937;
	background: #fff !important;
	border: 1px solid #d1d5db !important;
	border-radius: 10px !important;
	transition: border-color .15s ease, box-shadow .15s ease;
}
form.woocommerce-checkout textarea {
	height: auto;
	min-height: 104px;
	padding: 12px 14px !important;
	line-height: 1.5;
}
form.woocommerce-checkout input.input-text:focus,
form.woocommerce-checkout select:focus,
form.woocommerce-checkout textarea:focus {
	outline: none;
	border-color: #ED1C24 !important;
	box-shadow: 0 0 0 3px rgba(237, 28, 36, .12);
}
/* select2 (Estado) na mesma régua */
form.woocommerce-checkout .select2-container .select2-selection--single {
	height: 46px !important;
	border: 1px solid #d1d5db !important;
	border-radius: 10px !important;
	background: #fff;
}
form.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 44px !important;
	padding-left: 14px;
	color: #1f2937;
}
form.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	height: 44px !important;
	right: 8px;
}
/* nome/sobrenome e telefone/celular lado a lado */
@media (min-width: 600px) {
	form.woocommerce-checkout .form-row-first,
	form.woocommerce-checkout .form-row-last {
		float: none !important;
		display: inline-block;
		width: calc(50% - 8px) !important;
		vertical-align: top;
	}
	form.woocommerce-checkout .form-row-first { margin-right: 12px !important; }
}
/* card do resumo do pedido */
form.woocommerce-checkout #order_review {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 22px !important;
}
form.woocommerce-checkout #order_review table.shop_table {
	border: 0 !important;
	margin: 0 0 6px;
	background: none;
}
form.woocommerce-checkout #order_review table.shop_table th,
form.woocommerce-checkout #order_review table.shop_table td {
	border: 0 !important;
	padding: 0 !important;
	font-size: 14px;
	color: #374151;
	background: none !important;
}
form.woocommerce-checkout #order_review table.shop_table thead { display: none !important; }
form.woocommerce-checkout #order_review .order-total th,
form.woocommerce-checkout #order_review .order-total td {
	font-size: 18px !important;
	font-weight: 800 !important;
	color: #ED1C24 !important;
}
form.woocommerce-checkout #order_review .order-total .amount { color: #ED1C24 !important; }
/* área de pagamento */
form.woocommerce-checkout #payment {
	background: #f9fafb !important;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	margin-top: 8px;
}
form.woocommerce-checkout #payment .woocommerce-info,
form.woocommerce-checkout #payment .woocommerce-notice {
	background: #fff !important;
	border: 1px dashed #d1d5db !important;
	border-radius: 8px;
	color: #6b7280 !important;
	font-size: 13.5px;
	padding: 14px 16px !important;
	margin: 14px !important;
	list-style: none;
}
form.woocommerce-checkout #payment ul.wc_payment_methods {
	padding: 14px !important;
	border-bottom: 1px solid #e5e7eb !important;
	margin: 0;
	list-style: none;
}
form.woocommerce-checkout #payment .place-order { padding: 16px 14px !important; }
form.woocommerce-checkout #payment .woocommerce-privacy-policy-text p {
	font-size: 12.5px;
	color: #6b7280;
	line-height: 1.5;
}
form.woocommerce-checkout #payment .woocommerce-privacy-policy-text a { color: #ED1C24 !important; }
/* botão finalizar pedido */
form.woocommerce-checkout #place_order {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	padding: 0 24px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #fff !important;
	background: #ED1C24 !important;
	border: 1px solid #C31818 !important;
	border-radius: 999px !important;
	transition: background .15s ease;
	cursor: pointer;
}
form.woocommerce-checkout #place_order:hover { background: #C31818 !important; }
/* sem estouro horizontal */
body.woocommerce-checkout { overflow-x: clip; }

/* rótulo e valor próximos também no resumo do checkout */

/* lista de fretes (PAC/SEDEX/Retirada) */
.woocommerce ul#shipping_method {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce ul#shipping_method li {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0 0 8px !important;
	padding: 0 !important;
	font-size: 14px;
	color: #374151;
}
.woocommerce ul#shipping_method li:last-child { margin-bottom: 0 !important; }
.woocommerce ul#shipping_method input[type="radio"],
.woocommerce ul#shipping_method input[type="checkbox"] {
	accent-color: #ED1C24;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	position: relative;
	top: 2px;
}
.woocommerce ul#shipping_method label { cursor: pointer; line-height: 1.45; }
.woocommerce ul#shipping_method .amount { font-weight: 700; color: #111827; }
/* estimativa de prazo (correios) menor e cinza */
.woocommerce ul#shipping_method .woocommerce-correios-delivery-time,
.woocommerce ul#shipping_method small,
.woocommerce ul#shipping_method .delivery-time {
	display: block;
	font-size: 12.5px;
	color: #6b7280;
	font-weight: 400;
}

/* ==== Totais (carrinho + checkout): layout flex, sem brigar com table-layout ==== */
.woocommerce-cart .cart_totals table.shop_table,
.woocommerce-cart .cart_totals table.shop_table tbody,
.woocommerce-cart .cart_totals table.shop_table tfoot,
form.woocommerce-checkout #order_review table.shop_table,
form.woocommerce-checkout #order_review table.shop_table tbody,
form.woocommerce-checkout #order_review table.shop_table tfoot {
	display: block !important;
	width: 100% !important;
}
.woocommerce-cart .cart_totals table.shop_table tr,
form.woocommerce-checkout #order_review table.shop_table tr {
	display: flex !important;
	justify-content: space-between;
	align-items: baseline;
	gap: 14px;
	width: 100% !important;
	padding: 11px 2px !important;
	border-bottom: 1px solid #f1f2f4 !important;
}
.woocommerce-cart .cart_totals table.shop_table tr:last-child,
form.woocommerce-checkout #order_review table.shop_table tr:last-child { border-bottom: 0 !important; }
.woocommerce-cart .cart_totals table.shop_table th,
form.woocommerce-checkout #order_review table.shop_table th {
	flex: 0 0 auto;
	text-align: left;
}
.woocommerce-cart .cart_totals table.shop_table td,
form.woocommerce-checkout #order_review table.shop_table td {
	flex: 1 1 auto;
	text-align: right;
	min-width: 0;
}
/* linha de produto no checkout (nome à esquerda, total à direita) */
form.woocommerce-checkout #order_review table.shop_table tr.cart_item td.product-name {
	flex: 1 1 auto;
	text-align: left;
	font-size: 13.5px;
	line-height: 1.5;
}
form.woocommerce-checkout #order_review table.shop_table tr.cart_item td.product-name .product-quantity {
	color: #6b7280;
	font-weight: 600;
	white-space: nowrap;
}
form.woocommerce-checkout #order_review table.shop_table tr.cart_item td.product-total {
	flex: 0 0 auto;
	white-space: nowrap;
	font-weight: 600;
}
/* linha de ENTREGA: empilha rótulo em cima e as opções (PAC/SEDEX/Retirada) embaixo, largura total */
.woocommerce-cart .cart_totals table.shop_table tr.shipping,
form.woocommerce-checkout #order_review table.shop_table tr.woocommerce-shipping-totals {
	flex-direction: column;
	align-items: stretch;
}
.woocommerce-cart .cart_totals table.shop_table tr.shipping > th,
form.woocommerce-checkout #order_review table.shop_table tr.woocommerce-shipping-totals > th {
	margin-bottom: 8px;
	color: #6b7280 !important;
	font-weight: 600;
}
.woocommerce-cart .cart_totals table.shop_table tr.shipping > td,
form.woocommerce-checkout #order_review table.shop_table tr.woocommerce-shipping-totals > td {
	text-align: left;
	width: 100%;
}
/* Total em destaque */
.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
form.woocommerce-checkout #order_review table.shop_table tr.order-total th {
	font-size: 18px !important;
	font-weight: 800 !important;
	color: #1f2937 !important;
}

/* ==== Lista de opções de frete (PAC / SEDEX / Retirada) ====
   Estrutura real do woocommerce-correios dentro de cada <li>:
     <input type="radio">  <label>PAC: <span class="amount">R$..</span></label>  <p><small>Entrega em ...</small></p>
   Grid: coluna 1 = radio (18px), coluna 2 = label e o prazo (evita o prazo cair sob o radio). */
.woocommerce ul#shipping_method,
.woocommerce ul.woocommerce-shipping-methods {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
}
.woocommerce ul#shipping_method li,
.woocommerce ul.woocommerce-shipping-methods li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	column-gap: 9px;
	row-gap: 0;
	align-items: start;
	margin: 0 0 12px !important;
	padding: 0 !important;
	font-size: 14px;
	color: #374151;
	line-height: 1.4;
}
.woocommerce ul#shipping_method li:last-child,
.woocommerce ul.woocommerce-shipping-methods li:last-child { margin-bottom: 0 !important; }
.woocommerce ul#shipping_method li > input,
.woocommerce ul.woocommerce-shipping-methods li > input {
	grid-column: 1;
	grid-row: 1;
	accent-color: #ED1C24;
	width: 16px;
	height: 16px;
	margin: 2px 0 0 !important;
}
.woocommerce ul#shipping_method li > label,
.woocommerce ul.woocommerce-shipping-methods li > label {
	grid-column: 2;
	grid-row: 1;
	cursor: pointer;
	margin: 0 !important;
	display: block;
	font-weight: 600;
	color: #1f2937;
}
.woocommerce ul#shipping_method li > label .amount,
.woocommerce ul.woocommerce-shipping-methods li > label .amount {
	font-weight: 700;
	color: #111827;
}
/* o prazo de entrega (<p><small>) vai para a coluna 2, embaixo do nome */
.woocommerce ul#shipping_method li > p,
.woocommerce ul.woocommerce-shipping-methods li > p,
.woocommerce ul#shipping_method li > .woocommerce-correios-delivery-time,
.woocommerce ul#shipping_method li > small {
	grid-column: 2;
	grid-row: 2;
	margin: 2px 0 0 !important;
	padding: 0 !important;
}
.woocommerce ul#shipping_method li > p small,
.woocommerce ul#shipping_method li > p,
.woocommerce ul.woocommerce-shipping-methods li > p small,
.woocommerce ul#shipping_method li > small,
.woocommerce ul#shipping_method li .woocommerce-correios-delivery-time {
	font-size: 12.5px !important;
	color: #6b7280 !important;
	font-weight: 400 !important;
	line-height: 1.35;
	display: block;
}

/* ==== Página "Pedido recebido" (order-received / thankyou) ==== */
.woocommerce-order { max-width: 760px; margin: 0 auto; }
/* caixa do WhatsApp aparece primeiro (é a ação principal) */
.woocommerce-order .taf-whats-box { order: -1; margin: 0 0 26px !important; }
.woocommerce-order { display: flex; flex-direction: column; }
.woocommerce-order > * { order: 0; }
.woocommerce-order > .woocommerce-thankyou-order-received { order: -2; }

/* mensagem de sucesso */
.woocommerce-order .woocommerce-thankyou-order-received {
	background: none !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 0 20px !important;
	font-size: 22px !important;
	font-weight: 700;
	color: #1f2937 !important;
	text-align: center;
}
.woocommerce-order .woocommerce-thankyou-order-received::before {
	content: "\2705";
	display: block;
	font-size: 40px;
	margin-bottom: 8px;
}

/* resumo do pedido (Número / Data / Total / Método) em cartão-grade */
ul.woocommerce-order-overview {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: #e5e7eb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 8px !important;
	padding: 0 !important;
	list-style: none;
}
ul.woocommerce-order-overview li {
	background: #fff;
	margin: 0 !important;
	padding: 16px 18px !important;
	border: 0 !important;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #6b7280;
	list-style: none;
}
ul.woocommerce-order-overview li strong {
	display: block;
	margin-top: 6px;
	font-size: 17px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
	color: #1f2937;
}
ul.woocommerce-order-overview li.total strong,
ul.woocommerce-order-overview li.total .amount { color: #ED1C24; }
@media (max-width: 560px) {
	ul.woocommerce-order-overview { grid-template-columns: 1fr; }
}

/* seções (detalhes do pedido, endereços) */
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details { margin-top: 30px !important; }
.woocommerce-order .woocommerce-order-details__title,
.woocommerce-order .woocommerce-column__title,
.woocommerce-order .woocommerce-customer-details h2 {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #1f2937 !important;
	text-transform: uppercase;
	letter-spacing: .03em;
	margin: 0 0 16px !important;
	padding: 0 0 10px !important;
	border-bottom: 2px solid #ED1C24;
}
/* tabela de detalhes do pedido */
.woocommerce-order table.woocommerce-table--order-details {
	width: 100%;
	background: #fff;
	border: 1px solid #e5e7eb !important;
	border-radius: 12px;
	border-collapse: separate !important;
	border-spacing: 0;
	overflow: hidden;
}
.woocommerce-order table.woocommerce-table--order-details th,
.woocommerce-order table.woocommerce-table--order-details td {
	padding: 13px 16px !important;
	border: 0 !important;
	border-bottom: 1px solid #f1f2f4 !important;
	font-size: 14px;
	text-align: left;
}
.woocommerce-order table.woocommerce-table--order-details thead th {
	background: #f9fafb;
	color: #6b7280 !important;
	font-size: 12px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.woocommerce-order table.woocommerce-table--order-details td.product-total,
.woocommerce-order table.woocommerce-table--order-details th + td,
.woocommerce-order table.woocommerce-table--order-details tfoot td { text-align: right; }
.woocommerce-order table.woocommerce-table--order-details a { color: #1f2937 !important; font-weight: 600; text-decoration: none; }
.woocommerce-order table.woocommerce-table--order-details a:hover { color: #ED1C24 !important; }
.woocommerce-order table.woocommerce-table--order-details tfoot th {
	background: #fff;
	color: #6b7280 !important;
	font-weight: 600;
}
.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child td {
	border-bottom: 0 !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	color: #ED1C24 !important;
}
/* endereços */
.woocommerce-order .woocommerce-customer-details address {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px 18px;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: #374151;
}
