/* =========================================================
   iFody — overrides Woo + correções de compatibilidade
   Carregado DEPOIS dos CSS base/extras pra ganhar especificidade.
   ========================================================= */

/* Kill underline padrão em links de produto e em <ins>/<del> do Woo */
.pcard,
.pcard a,
.pcard ins,
.pcard ins .amount,
.cat-card,
.cat-card a,
.bcard,
.bcard a {
	text-decoration: none !important;
}

/* preço atual do Woo: sem strikethrough nem underline */
.pcard .pcard__price ins,
.pcard .pcard__price .woocommerce-Price-amount {
	text-decoration: none !important;
}

/* preço antigo: apenas strikethrough, sem underline duplo */
.pcard .pcard__price-old,
.pcard del,
.pcard del .amount {
	text-decoration: line-through !important;
	color: var(--text-3) !important;
}

/* Imagens do card sempre cobrem o slot 1:1 sem distorcer */
.pcard__media img,
.pcard__media .pcard__img,
.pcard .wp-post-image,
.pcard .attachment-ifody-pcard {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block;
}

/* Cart icon padrão do Woo no header__link sem underline */
.header__link,
.header__link span {
	text-decoration: none !important;
}

/* Subnav (categorias top) — em páginas WC o item ativo herdava underline
   default de :visited/:link em alguns navegadores. */
.subnav a,
.subnav__item,
.subnav__item--active {
	text-decoration: none !important;
}

/* Cart link do header (com preço): sem underline em qualquer estado. */
.header .cart,
.header .cart span,
.header .cart__price,
.header .cart__count {
	text-decoration: none !important;
}

/* Footer links sem underline */
.footer a {
	text-decoration: none !important;
}

/* Topbar items: separador visual em mobile */
.topbar__item { text-decoration: none !important; }

/* Cat-hero: o radial gradient decorativo precisa aparecer mesmo sem imagem.
   O CSS base coloca os gradients via ::after — garantimos que o ::after
   continua renderizando se .cat-hero__bg estiver vazia. */
.cat-hero__bg:empty {
	display: block !important;
}

/* =========================================================
   WC notices (woocommerce-message / -info / -error)
   =========================================================
   O CSS default do WC posiciona `::before` (icon font) com
   `position: absolute; left: 1.5em` e usa `padding-left: 3.5em`
   pra abrir espaço. Quando reduzimos o padding o icon sobrepunha
   o texto. Reescrevemos como flexbox com um pill gradient à
   esquerda usando mask-image (independe da fonte WooCommerce). */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-notices-wrapper {
	max-width: 1320px;
	margin: 0 auto 16px;
	padding: 0 20px;
	box-sizing: border-box;
}
@media (min-width: 720px) {
	.woocommerce-notices-wrapper {
		padding: 0 24px;
	}
}
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	border-radius: 14px;
	border: 1px solid var(--line);
	border-top-width: 1px; /* WC default coloca border-top 3px colorido */
	background: var(--surface);
	color: var(--text);
	padding: 12px 16px 12px 14px;
	margin: 0 auto 12px;
	width: auto;
	max-width: 720px;
	list-style: none;
	font-size: 14px;
	line-height: 1.45;
	word-break: break-word;
}
/* Mata o pseudo-element clearfix `::after` da WC (vira table no flex). */
.woocommerce-info::after,
.woocommerce-message::after,
.woocommerce-error::after {
	display: none !important;
	content: none !important;
}
/* Substitui o icon font da WC por um pill gradient com SVG via mask.
   Cada tipo recebe um ícone semântico diferente. */
.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
	content: '' !important;
	position: static !important;
	display: inline-flex !important;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	top: auto !important;
	left: auto !important;
	margin: 0 !important;
	border-radius: 50%;
	background: var(--grad-primary);
	color: transparent;
	font-size: 0;
	box-shadow: 0 4px 12px rgba(255, 61, 138, .25);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 16px 16px;
	mask-size: 16px 16px;
}
/* SUCCESS (item adicionado / removido / cupom aplicado) — check icon */
.woocommerce-message::before {
	-webkit-mask-image: none;
	mask-image: none;
	background:
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 16px 16px no-repeat,
		var(--grad-primary);
}
/* INFO — i circle */
.woocommerce-info::before {
	background:
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='16' x2='12' y2='12'/><line x1='12' y1='8' x2='12.01' y2='8'/></svg>") center / 16px 16px no-repeat,
		linear-gradient(135deg, #8B3CFF 0%, #5B7CFF 100%);
	box-shadow: 0 4px 12px rgba(139, 60, 255, .25);
}
/* ERROR — x circle */
.woocommerce-error::before {
	background:
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='15' y1='9' x2='9' y2='15'/><line x1='9' y1='9' x2='15' y2='15'/></svg>") center / 16px 16px no-repeat,
		linear-gradient(135deg, #FF4D5C 0%, #FF3D8A 100%);
	box-shadow: 0 4px 12px rgba(255, 77, 92, .25);
}
/* Link "Desfazer?" (restore-item) e botões/links inline genéricos
   da WC ficam como chip ghost à direita do texto. */
.woocommerce-info .restore-item,
.woocommerce-message .restore-item,
.woocommerce-error .restore-item,
.woocommerce-info .button,
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .wc-forward,
.woocommerce-message .wc-forward,
.woocommerce-error .wc-forward {
	float: none !important;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: transparent;
	border: 1px solid var(--line);
	color: var(--text);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none !important;
	transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.woocommerce-info .restore-item:hover,
.woocommerce-message .restore-item:hover,
.woocommerce-error .restore-item:hover,
.woocommerce-info .button:hover,
.woocommerce-message .button:hover,
.woocommerce-error .button:hover,
.woocommerce-info .wc-forward:hover,
.woocommerce-message .wc-forward:hover,
.woocommerce-error .wc-forward:hover {
	background: rgba(255, 61, 138, .10);
	border-color: var(--pink);
	color: var(--pink-light);
}
/* Item interno (li) usado por algumas notices */
.woocommerce-info li,
.woocommerce-message li,
.woocommerce-error li {
	list-style: none !important;
	padding-left: 0 !important;
	margin-left: 0 !important;
}

/* Cat card sempre cover, sem skew quando a imagem é portrait */
.cat-card__img {
	object-fit: cover !important;
	object-position: center !important;
}

/* Esconde a admin bar offset issue: nossa topbar fica sob a admin bar quando logado */
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .header { top: 46px; }
}

/* =========================================================
   Cart/Checkout — esconde controles nativos do WC que
   substituímos por widgets do mockup.
   ========================================================= */

/* Input nativo de qty dentro do .citem__qty fica escondido —
   nossos botões +/- sincronizam o valor via JS. */
.citem__qty .quantity,
.citem__qty input.qty,
.citem__qty input[type="number"] {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Botão "update_cart" escondido — JS clica nele via .ifody-cart-update */
.ifody-cart-update,
.is-hidden {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	pointer-events: none !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Breadcrumb sem underline em qualquer estado. */
.crumb a,
.crumb__home,
.crumb__current,
.breadcrumb a {
	text-decoration: none !important;
}

/* Blog category chips sem underline. */
.blog-chip,
.blog-chips a {
	text-decoration: none !important;
}

/* Avatar do my-account hero — circular em vez de quadrado. */
.acc-hero__avatar {
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

/* Radios nativos do payment_method ficam escondidos visualmente,
   mas continuam no DOM — JS sincroniza com nossos tabs. */
.co-pay-radios {
	display: none !important;
}

/* =========================================================
   CRÍTICO — colisão de classe `.search` com `body.search`
   =========================================================
   O mockup usa `.search` como classe do search-bar do header
   (display:flex, max-width:540px, padding:12px 18px etc.).
   O WP adiciona `class="search"` no <body> quando is_search()
   é true → as regras do search-bar vazam pro <body> e encolhem
   a página inteira.

   Solução: zerar todas as propriedades que `.search` herdaria
   no body em CADA contexto onde o WP adiciona classes "perigosas".
   Mesma proteção para `.archive`, `.search-results` (que não
   colidem hoje, mas previnem regressões). */
body.search,
body.archive,
body.search-results,
body.search-no-results,
body.woocommerce-page,
body.woocommerce-shop,
body.post-type-archive,
body.post-type-archive-product {
	display: block !important;
	width: auto !important;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	align-items: initial !important;
	background: var(--bg) !important;
	border: 0 !important;
	border-radius: 0 !important;
	min-height: 100vh !important;
	flex: initial !important;
	color: var(--text) !important;
	transition: none !important;
}
/* Re-aplica padding-bottom do bottombar (mobile) que o reset acima zera. */
body.search,
body.archive,
body.search-results,
body.search-no-results,
body.woocommerce-page,
body.woocommerce-shop,
body.post-type-archive,
body.post-type-archive-product {
	padding-bottom: calc(var(--bottombar-h) + var(--safe-bottom)) !important;
}
@media (min-width: 980px) {
	body.search,
	body.archive,
	body.search-results,
	body.search-no-results,
	body.woocommerce-page,
	body.woocommerce-shop,
	body.post-type-archive,
	body.post-type-archive-product {
		max-width: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin: 0 !important;
	}
}

/* =========================================================
   FOOTER · remover bullets das <ul> que `wp_nav_menu` gera.
   ========================================================= */
.footer .ftr-col ul,
.footer .ftr-col ol,
.footer .ftr-col menu,
.footer__grid ul,
.footer__grid li {
	list-style: none !important;
	padding-left: 0 !important;
	margin: 0 !important;
}
.footer .ftr-col li::marker {
	content: '' !important;
	display: none !important;
}
.footer .ftr-col li {
	display: block;
}

/* =========================================================
   PLP · container/grid: garante que o sidebar de filtros e o
   conteúdo respeitam o container do tema, sem cortar bordas.

   Fix V2: aplica padding+max-width DIRETO no `.plp__grid` /
   `.search-grid` ao invés de depender do `.container` parent —
   alguns markups dos agentes não envolveram em container.
   ========================================================= */
.plp__grid,
.search-grid {
	max-width: 1320px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
	box-sizing: border-box !important;
	gap: 24px;
	min-width: 0;
}
@media (min-width: 720px) {
	.plp__grid,
	.search-grid {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}
/* Hero/cat-hero também precisa ficar dentro do container */
.cat-hero__inner {
	max-width: 1320px !important;
	margin: 0 auto !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
	box-sizing: border-box !important;
}
@media (min-width: 720px) {
	.cat-hero__inner {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

/* Espaço entre toolbar (faixa horizontal full-width) e o grid (sidebar +
   produtos). No mockup o `.plp` é uma section dedicada com `padding: 32px 0`
   que naturalmente separa os blocos. No nosso WP a `<main class="plp">` envolve
   tudo, então esse padding vai pro topo da main em vez de entre toolbar e grid.
   Compensamos com margin-top no `.plp__grid` quando vem após `.toolbar`. */
.plp .toolbar + .plp__grid,
.plp .toolbar ~ .container.plp__grid {
	margin-top: 24px;
}
@media (min-width: 720px) {
	.plp .toolbar + .plp__grid,
	.plp .toolbar ~ .container.plp__grid {
		margin-top: 32px;
	}
}
/* Também garante um respiro entre cat-hero e toolbar quando estão em sequência */
.plp .cat-hero + .toolbar {
	margin-top: 0;
}
.plp__grid > .plp__content,
.search-grid > .search-results {
	min-width: 0; /* idem — permite encolher se sidebar é maior */
}
/* Toolbar do PLP — garante que "X produtos" e sort dropdown não cortam */
.plp__content .toolbar,
.search-results .toolbar {
	gap: 12px;
	flex-wrap: wrap;
}
.toolbar__count {
	white-space: nowrap;
}

/* Filter sidebar — inputs do range não vazam container */
.filters-sidebar .price-range input,
.search-refine .price-range input,
.filters-sidebar input[type="number"] {
	max-width: 100%;
	min-width: 0;
}

/* =========================================================
   PDP · botão "Adicionar à sacola" + qty: melhorar contraste.
   No mockup, o qty fica numa pílula escura à esquerda e o
   botão grande de adicionar à sacola tem o gradient pink. Mas
   o CSS atual coloca os dois dentro do mesmo wrapper gradient.
   ========================================================= */
.qty,
.pdp .qty {
	background: var(--surface) !important;
	border: 1px solid var(--line) !important;
	border-radius: 999px !important;
	padding: 4px 6px !important;
	box-shadow: none !important;
}
.qty__minus,
.qty__plus {
	color: var(--text) !important;
	background: transparent !important;
}
.qty__minus:hover,
.qty__plus:hover {
	background: rgba(255, 255, 255, .06) !important;
}
.qty__input {
	background: transparent !important;
	color: var(--text) !important;
	font-weight: 700 !important;
	border: 0 !important;
}
/* O wrapper `.buy-row.cart` herdava gradient pink-violet do `.cart` do header
   (mesma colisão do `.search` no body). Aqui resetamos só o background. */
.pdp .buy-row,
.buy-row.cart,
form.cart .buy-row {
	background: transparent !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}
.pdp .buy-row .cart__count,
.pdp .buy-row .cart__price {
	display: none !important;
}
/* O botão Adicionar à sacola mantém o gradient principal */
.pdp__add,
.pdp .pdp__add {
	background: var(--grad-primary) !important;
	box-shadow: 0 6px 20px rgba(255, 61, 138, .35) !important;
}

/* =========================================================
   WISHLIST · estado ativo do coração (pcard + PDP).
   ========================================================= */
.pcard__fav--active,
[data-fav].is-active,
[data-fav][aria-pressed="true"] {
	background: var(--grad-primary) !important;
	color: white !important;
}
.pcard__fav--active svg {
	fill: white !important;
}
/* Variante PDP/galeria — botão maior, mesmo estado ativo */
.gallery__fav.pcard__fav--active,
.pdp__fav.pcard__fav--active {
	color: white !important;
}

/* =========================================================
   PDP · galeria setas prev/next + counter + thumb empty.
   ========================================================= */
.gallery__main { position: relative; }
.gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(15, 10, 26, .75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 4;
	border: 1px solid rgba(255, 255, 255, .14);
	transition: background .2s var(--ease), transform .2s var(--ease);
}
.gallery__nav:hover {
	background: rgba(255, 61, 138, .85);
	transform: translateY(-50%) scale(1.05);
}
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }
.gallery__counter {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(15, 10, 26, .75);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	z-index: 4;
	border: 1px solid rgba(255, 255, 255, .14);
}
.thumb--empty {
	background: var(--surface);
	border: 1.5px dashed var(--line) !important;
	opacity: .35;
	cursor: default;
	pointer-events: none;
}

/* =========================================================
   MY ACCOUNT · Edit Address (form-edit-address.php)
   =========================================================
   O template do WC gera fields via `woocommerce_form_field`,
   que sai como `<p class="form-row form-row-wide ...">` com
   `<span class="woocommerce-input-wrapper">` envolvendo o
   input. Mapeamos esse markup pra mesma cara de `.co-field`
   do checkout, sem reescrever o gerador (mantemos validação
   nativa, country_to_state JS e hooks de plugin).

   A grid `.co-fields` no template já dá 2 colunas em >=600px;
   aqui ajustamos as classes `form-row-first|last|wide` pra
   ocuparem 1 ou 2 colunas conforme esperado. */

.acc-form--address .form-row {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
@media (min-width: 600px) {
	.acc-form--address .form-row-first { grid-column: 1; }
	.acc-form--address .form-row-last  { grid-column: 2; }
	.acc-form--address .form-row-wide,
	.acc-form--address .form-row.notes {
		grid-column: 1 / -1;
	}
}

.acc-form--address .form-row > label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-2);
	letter-spacing: .02em;
	display: block;
}
.acc-form--address .form-row > label .required,
.acc-form--address .form-row > label abbr.required {
	color: var(--pink);
	text-decoration: none;
	border: 0;
	margin-left: 2px;
}
.acc-form--address .form-row > label .optional {
	color: var(--text-3);
	font-weight: 400;
	font-style: normal;
}

.acc-form--address .woocommerce-input-wrapper {
	display: block;
	width: 100%;
	min-width: 0;
}

.acc-form--address .input-text,
.acc-form--address input[type="text"],
.acc-form--address input[type="email"],
.acc-form--address input[type="tel"],
.acc-form--address input[type="password"],
.acc-form--address input[type="number"],
.acc-form--address select,
.acc-form--address textarea {
	width: 100%;
	min-width: 0;
	padding: 13px 16px;
	background: var(--bg);
	border: 1.5px solid var(--line);
	border-radius: var(--r);
	color: var(--text);
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: border-color .2s var(--ease);
	box-sizing: border-box;
}
.acc-form--address .input-text:focus,
.acc-form--address input:focus,
.acc-form--address select:focus,
.acc-form--address textarea:focus {
	border-color: var(--pink);
}
.acc-form--address input::placeholder,
.acc-form--address textarea::placeholder {
	color: var(--text-3);
}

/* Select nativo — adiciona seta custom (o WC original usa Select2 que
   já está dequeue-ado em is_account_page). */
.acc-form--address select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23a299b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m1 1 5 5 5-5'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
	cursor: pointer;
}

/* "Update country" feedback do WC e <noscript> que duplica o placeholder
   do select country/state ao lado do dropdown. */
.acc-form--address .woocommerce-input-wrapper .description,
.acc-form--address .woocommerce-input-wrapper noscript,
.acc-form--address .woocommerce-input-wrapper > .button {
	display: none;
}

/* Field oculto pelo country_to_state — mantém o WC escondendo. */
.acc-form--address .form-row.hidden,
.acc-form--address .form-row[style*="display: none"] {
	display: none !important;
}

/* Notices (WC mostra erros de validação acima do form via
   .woocommerce-notices-wrapper já estilizado). Garantimos
   espaçamento dentro do acc-view. */
.acc-view > .woocommerce-notices-wrapper {
	margin-bottom: 12px;
}
.acc-view > .woocommerce-notices-wrapper:empty {
	display: none;
}

/* Sub do head — usado no edit-address e edit-account. */
.acc-view__head > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

/* ---- Card geral do form de endereço ---- */
.acc-form--address {
	padding: 22px;
	gap: 22px;
}
@media (min-width: 720px) {
	.acc-form--address {
		padding: 28px;
		gap: 26px;
	}
}

/* ---- CEP box destacado ---- */
.acc-cep-box {
	background:
		radial-gradient(circle at 0% 0%, rgba(255, 61, 138, .08) 0%, transparent 60%),
		radial-gradient(circle at 100% 100%, rgba(139, 60, 255, .08) 0%, transparent 55%),
		var(--bg);
	border: 1.5px solid var(--line);
	border-radius: var(--r-lg);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	overflow: hidden;
}
@media (min-width: 600px) {
	.acc-cep-box { padding: 22px; }
}
.acc-cep-box::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 61, 138, .22), rgba(139, 60, 255, .14) 60%, transparent);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.acc-cep-box__head {
	display: flex;
	align-items: center;
	gap: 12px;
}
.acc-cep-box__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--grad-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(255, 61, 138, .35);
	flex-shrink: 0;
}
.acc-cep-box__head strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.2;
}
.acc-cep-box__head span {
	display: block;
	font-size: 12px;
	color: var(--text-3);
	margin-top: 2px;
	line-height: 1.4;
}

.acc-cep-box__field { display: flex; flex-direction: column; gap: 8px; }
.acc-cep-row {
	display: flex;
	gap: 10px;
}
.acc-cep-row input {
	flex: 1;
	min-width: 0;
	padding: 14px 18px !important;
	background: var(--surface) !important;
	border: 1.5px solid var(--line) !important;
	border-radius: var(--r) !important;
	color: var(--text) !important;
	font-family: inherit !important;
	font-size: 16px !important;
	letter-spacing: .06em !important;
	font-weight: 600 !important;
	outline: none;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.acc-cep-row input:focus {
	border-color: var(--pink) !important;
	box-shadow: 0 0 0 4px rgba(255, 61, 138, .12);
}
.acc-cep-row input::placeholder { color: var(--text-3); letter-spacing: .04em; font-weight: 400; }
.acc-cep-row .btn {
	flex-shrink: 0;
	min-height: 50px;
	padding: 0 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.acc-required {
	color: var(--pink);
	font-style: normal;
	font-weight: 700;
	margin-left: 2px;
}

.acc-cep-box__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 12px;
}
.acc-cep-box__status {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-3);
}
.acc-cep-box__status[data-tone="ok"]   { color: #00C48C; }
.acc-cep-box__status[data-tone="err"]  { color: #FF4D5C; }
.acc-cep-box__status[data-tone="info"] { color: var(--text-2); }

/* ---- Garante respiro entre os fields e o submit ---- */
.acc-form--address .acc-form__actions {
	margin-top: 4px;
}
.acc-form--address .acc-form__actions .btn {
	min-width: 180px;
}
@media (max-width: 599px) {
	.acc-form--address .acc-form__actions { display: flex; }
	.acc-form--address .acc-form__actions .btn { flex: 1; }
}


