﻿/* Featured banners grid (below header hero) */
.featured-banners-grid {
	padding: 10px 12px;
	clear: both;
	width: 100%;
}
.featured-banners-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	align-items: stretch;
}.featured-banner-cell {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	background: #eef1f5;
	min-height: 0;
}
.featured-banner-cell a {
	display: block;
	height: 100%;
	line-height: 0;
}
.featured-banner-cell img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.featured-banners-row > .featured-banner-tall.featured-banner-cell {
	min-height: clamp(320px, 34vw, 420px);
}
.featured-banner-stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 100%;
}
.featured-banner-stack .featured-banner-cell {
	flex: 1 1 0;
	min-height: 190px;
}
.featured-banner {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	min-height: 190px;
}
.featured-banner-tall {
	min-height: 396px;
}
.featured-banner.is-dark {
	background: linear-gradient(135deg, #001433 0%, #002b69 58%, #001a4d 100%);
	color: #fff;
}
.featured-banner.is-light {
	background: linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
	color: #002b69;
}
.featured-banner-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 28px 24px;
	position: relative;
	z-index: 1;
}
.featured-banner-inner-row {
	flex-direction: row;
	align-items: center;
	gap: 16px;
}
.featured-banner-copy {
	flex: 1 1 auto;
	min-width: 0;
	text-align: left;
}
.featured-banner-copy h3 {
	margin: 0 0 12px;
	font-size: clamp(18px, 1.6vw, 28px);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}
.featured-banner.is-dark .featured-banner-copy h3 {
	color: #fff;
}
.featured-banner.is-light .featured-banner-copy h3 {
	color: #002b69;
}
.featured-banner-copy p {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.45;
	color: #4a4a4a;
}
.featured-banner-list {
	margin: 0 0 18px;
	padding-left: 18px;
	font-size: 13px;
	line-height: 1.7;
}
.featured-banner-list li {
	margin: 0;
}
.featured-banner-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #002b69;
	color: #fff !important;
	padding: 10px 10px 10px 20px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.2s ease;
}
.featured-banner.is-dark .featured-banner-btn {
	background: #001433;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.featured-banner-btn:hover {
	background: #00408f;
	color: #fff !important;
}
.featured-banner-btn-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: #002b69;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0;
}
.featured-banner-btn-icon:after {
	content: "›";
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
}
.featured-banner-media {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 8px;
	flex: 0 1 auto;
}
.featured-banner-media.is-right {
	justify-content: flex-end;
}
.featured-banner-media img {
	max-height: 120px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}
.featured-banner-tall .featured-banner-media img {
	max-height: 150px;
}
.featured-banner-media-triple img:nth-child(2) {
	max-height: 165px;
}
.featured-banner-media-duo {
	position: relative;
	min-width: 120px;
	min-height: 110px;
}
.featured-banner-media-overlap {
	position: absolute;
	right: 0;
	bottom: 0;
}
.featured-banner-media-duo img:first-child {
	position: relative;
	z-index: 1;
}
@media (max-width: 1199px) {
	.featured-banners-grid {
		padding: 10px;
	}
	.featured-banner-tall {
		min-height: 340px;
	}
	.featured-banner-inner {
		padding: 22px 18px;
	}
}
@media (max-width: 991px) {
	.featured-banners-row {
		grid-template-columns: 1fr;
	}
	.featured-banners-row > .featured-banner-tall.featured-banner-cell,
	.featured-banner-tall,
	.featured-banner {
		min-height: 0;
	}
	.featured-banner-stack .featured-banner-cell {
		min-height: 0;
	}
	.featured-banner-inner-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.featured-banner-media.is-right {
		justify-content: flex-start;
	}
}
@media (max-width: 767px) {
	.featured-banners-grid {
		padding: 10px 8px;
	}
	.featured-banner-media img {
		max-height: 90px;
	}
}

/* Full-width home banner (image fills container) */
.home-wide-banner {
	width: 100%;
	clear: both;
	line-height: 0;
	overflow: hidden;
	margin: 0 0 20px;
	padding: 0;
}
.home-wide-banner a {
	display: block;
	width: 100%;
	line-height: 0;
}
.home-wide-banner img {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	display: block;
	object-fit: cover;
}

/* If an image is pasted inside the old tribute layout, stretch it full-bleed */
.tribute-banner:has(img) {
	min-height: 0;
	background: transparent;
}
.tribute-banner:has(img) .tribute-banner-claws,
.tribute-banner:has(img) .tribute-banner-dots,
.tribute-banner:has(img) .tribute-banner-visual,
.tribute-banner:has(img) .tribute-banner-badges,
.tribute-banner:has(img) .tribute-banner-sub,
.tribute-banner:has(img) .tribute-banner-line2 {
	display: none !important;
}
.tribute-banner:has(img) .tribute-banner-inner,
.tribute-banner:has(img) .tribute-banner-copy,
.tribute-banner:has(img) .tribute-banner-line1 {
	display: block;
	width: 100%;
	max-width: none;
	flex: none;
	padding: 0;
	margin: 0;
	transform: none;
}
.tribute-banner:has(img) img {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	display: block;
	object-fit: cover;
}

/* Tribute full-width banner (below featured grid) */
.tribute-banner-wrap {
	padding: 0;
	clear: both;
	width: 100%;
}
.tribute-banner {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	min-height: 220px;
	background: linear-gradient(90deg, #001433 0%, #002b69 55%, #001a4d 100%);
	text-decoration: none !important;
}
.tribute-banner-claws {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 38%;
	background:
		linear-gradient(118deg, transparent 38%, rgba(0, 130, 255, 0.45) 39%, rgba(0, 130, 255, 0.45) 43%, transparent 44%),
		linear-gradient(128deg, transparent 48%, rgba(0, 90, 220, 0.5) 49%, rgba(0, 90, 220, 0.5) 54%, transparent 55%),
		linear-gradient(138deg, transparent 56%, rgba(0, 150, 255, 0.35) 57%, rgba(0, 150, 255, 0.35) 62%, transparent 63%);
	pointer-events: none;
	z-index: 1;
}
.tribute-banner-dots {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
	background-size: 10px 10px;
	opacity: 0.45;
	pointer-events: none;
	z-index: 1;
}
.tribute-banner-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 220px;
	padding: 36px 48px;
}
.tribute-banner-copy {
	flex: 0 1 44%;
	color: #fff;
}
.tribute-banner-line1,
.tribute-banner-line2 {
	margin: 0 0 4px;
	font-size: clamp(20px, 2.4vw, 40px);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.12;
}
.tribute-banner-line1 strong,
.tribute-banner-accent {
	font-weight: 800;
}
.tribute-banner-line2 {
	margin-bottom: 12px;
}
.tribute-banner-accent {
	color: #e91e8c;
}
.tribute-banner-sub {
	margin: 0;
	font-size: clamp(14px, 1.15vw, 18px);
	color: rgba(255, 255, 255, 0.92);
}
.tribute-banner-visual {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 170px;
}
.tribute-banner-lion {
	width: clamp(130px, 17vw, 250px);
	height: clamp(130px, 17vw, 250px);
	border-radius: 50%;
	background:
		radial-gradient(circle at 30% 35%, #ffeb3b 0%, transparent 35%),
		radial-gradient(circle at 70% 30%, #e91e8c 0%, transparent 40%),
		radial-gradient(circle at 50% 60%, #2196f3 0%, transparent 45%),
		radial-gradient(circle at 35% 70%, #9c27b0 0%, transparent 35%),
		radial-gradient(circle at 60% 75%, #00bcd4 0%, transparent 30%),
		radial-gradient(circle at 50% 50%, #1a237e 0%, #0d1642 70%);
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
	mask-image: radial-gradient(ellipse 80% 85% at 50% 45%, #000 55%, transparent 76%);
	-webkit-mask-image: radial-gradient(ellipse 80% 85% at 50% 45%, #000 55%, transparent 76%);
}
.tribute-banner-badges {
	position: absolute;
	right: 42px;
	bottom: 26px;
	display: flex;
	align-items: center;
	gap: 18px;
	z-index: 3;
}
.tribute-banner-badge {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}
.tribute-banner-badge-brand {
	font-size: 12px;
	letter-spacing: 0.06em;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.15;
}
.tribute-banner-badge-years {
	font-size: clamp(22px, 2.5vw, 40px);
	font-weight: 800;
	line-height: 1.05;
	text-align: right;
}
@media (max-width: 1199px) {
	.tribute-banner-wrap {
		padding: 0 30px 20px;
	}
	.tribute-banner-inner {
		padding: 28px 32px;
	}
	.tribute-banner-badges {
		right: 28px;
		bottom: 20px;
	}
}
@media (max-width: 991px) {
	.tribute-banner-inner {
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 90px;
	}
	.tribute-banner-copy {
		flex-basis: auto;
	}
	.tribute-banner-visual {
		align-self: center;
		min-height: 140px;
	}
	.tribute-banner-badges {
		right: 24px;
		bottom: 18px;
	}
}
@media (max-width: 767px) {
	.tribute-banner-wrap {
		padding: 0 15px 16px;
	}
	.tribute-banner-lion {
		width: 120px;
		height: 120px;
	}
	.tribute-banner-badge-brand {
		width: 52px;
		height: 52px;
		font-size: 10px;
	}
}

.home-principal-banner.banner7 {
	margin: 0;
	line-height: 0;
}
.home-principal-banner .swiper-viewport {
	margin: 0;
	border: 0;
	box-shadow: none;
}
.home-principal-banner .swiper-slide a {
	display: block;
	line-height: 0;
}
.home-principal-banner .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* Hero: PNG tem faixas transparentes no topo (~140px) e base (~146px) em 1920×792 */
.common-home .home-principal-banner {
	overflow: hidden;
}
.common-home .home-principal-banner .swiper-viewport {
	overflow: hidden;
	height: calc(100vw * 506 / 1920);
	max-height: 506px;
	background: transparent;
}
.common-home .home-principal-banner .swiper-container,
.common-home .home-principal-banner .swiper-wrapper,
.common-home .home-principal-banner .swiper-slide,
.common-home .home-principal-banner .swiper-slide a {
	height: 100%;
}
.common-home .home-principal-banner .swiper-slide img {
	width: 100%;
	height: calc(100vw * 792 / 1920);
	max-height: 792px;
	margin-top: calc(-100vw * 140 / 1920);
	object-fit: cover;
	object-position: center top;
	display: block;
}

/*
 * Header (home)
 * Mantém o header do tema (logo/busca) como originalmente, para não deslocar o logo.
 * O “gap” do hero foi resolvido via recorte da imagem (áreas transparentes).
 */
.common-home .col-hoz {
	margin-bottom: 0 !important;
}

.common-home .main-row {
	margin: 0;
}
.common-home .main-row + .main-row {
	margin-top: 0;
}
.common-home .main-row .container,
.common-home .main-row.full-width > .container {
	padding-top: 0;
	padding-bottom: 0;
}

/* Carrossel de produtos (owl) full-bleed na home */
.common-home .tt_product_module {
	position: relative;
	left: 50% !important;
	right: 50% !important;
	width: 100vw !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.common-home .tt_product_module .owl-container {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.common-home .tt_product_module .tt-product.owl-carousel {
	width: 100% !important;
}

/* Setas do owl não podem sair da tela quando full-bleed */
.common-home .tt_product_module .owl-carousel.owl-theme .owl-nav div.owl-prev {
	left: 10px !important;
}
.common-home .tt_product_module .owl-carousel.owl-theme .owl-nav div.owl-next {
	right: 10px !important;
}
.common-home .tt_product_module .owl-carousel.owl-theme:hover .owl-nav div.owl-prev {
	left: 10px !important;
}
.common-home .tt_product_module .owl-carousel.owl-theme:hover .owl-nav div.owl-next {
	right: 10px !important;
}

/* Nossos produtos (ocproduct): layout mais compacto como referência */
.common-home .tt_product_module .available,
.common-home .tt_product_module .product-des,
.common-home .tt_product_module .alert.alert-info {
	display: none !important;
}
.common-home .tt_product_module .caption {
	padding-bottom: 20px;
}
.common-home .tt_product_module .price-box {
	margin-bottom: 0;
}

/* Compacta a altura dos cards para não sobrar “área vazia” */
.common-home .tt_product_module .item-inner .images-container {
	/* caixa quadrada = selo de % fica sobre a imagem, não no vão lateral */
	width: 300px;
	height: 300px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.common-home .tt_product_module .item-inner .images-container .product-image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	line-height: 0;
}
.common-home .tt_product_module .item-inner .images-container img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100% !important;
	object-fit: contain;
	object-position: center center;
	margin: 0 auto;
}
.common-home .tt_product_module .item-inner .caption {
	padding-bottom: 20px;
}

/* Evita o “bloco alto” do owl causando área vazia */
.common-home .tt_product_module .owl-stage-outer,
.common-home .tt_product_module .owl-stage,
.common-home .tt_product_module .owl-item,
.common-home .tt_product_module .row_items {
	height: auto !important;
}

.common-home .tt_product_module .product-layout.grid-style,
.common-home .tt_product_module .product-thumb {
	height: auto !important;
}

/* ---- Mobile: header/menu e cards de produto ---- */
@media (max-width: 1199px) {
	.common-home .col-hoz {
		margin-bottom: 16px !important;
	}
}
@media (max-width: 767px) {
	.common-home .col-hoz,
	.header-inner .col-hoz {
		margin-bottom: 8px !important;
	}
}

/*
 * Desktop: alinha logo / saudação / carrinho com a barra de busca.
 * O .inner-inner absoluto centralizava também na altura do menu e
 * empurrava logo/carrinho para baixo da busca.
 */
@media (min-width: 1220px) {
	.header-inner .container-inner > .inner > .inner-inner {
		align-items: center;
		top: 0;
		bottom: auto;
		height: auto !important;
		min-height: 0 !important;
		padding-top: 40px;
		padding-bottom: 40px;
		box-sizing: border-box;
	}
	.header-inner .box-cart {
		margin-top: 0;
		transform: none;
	}
}

/* Ajustes de logo/saudação/carrinho/menu só em max-width: 767px. */
@media (max-width: 767px) {
	/* ---- Header mobile: abaixo do boas-vindas, sem invasão ---- */
	#top {
		position: relative;
		z-index: 20;
		height: auto !important;
		min-height: 28px;
		padding: 6px 12px !important;
		overflow: hidden;
		box-sizing: border-box;
	}
	#top .box-left,
	#top .box-right {
		float: none !important;
		height: auto !important;
		display: flex;
		align-items: center;
	}
	#top .box-left {
		justify-content: flex-start;
		width: 100%;
	}
	#top .box-left > li > p {
		padding: 0 !important;
		font-size: 11px;
		line-height: 1.3;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
	}
	/* Esconde conta/idioma da barra estreita (já existem no header) */
	#top .box-right {
		display: none !important;
	}

	.header-inner {
		position: relative;
		z-index: 10;
		overflow: visible;
		padding-top: 16px;
		padding-bottom: 12px;
		clear: both;
	}
	.header-inner .container-inner {
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	/*
	 * Header mobile em coluna: marca (logo+saudação), carrinho, busca.
	 */
	.header-inner .container-inner > .inner.fix,
	.header-inner .container-inner > .inner {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		position: relative !important;
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 15px !important;
		gap: 10px;
		box-sizing: border-box;
	}
	.header-inner .container-inner > .inner > .inner-inner {
		display: grid !important;
		/* 1fr | logo | saudação | 1fr → marca centralizada; carrinho usa 100% da linha */
		grid-template-columns: 1fr auto auto 1fr;
		justify-content: stretch;
		align-items: center;
		column-gap: 12px;
		row-gap: 10px;
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		margin-top: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}

	/* Logo + Olá, Nome lado a lado, centralizados */
	.header-inner .logo-container {
		grid-column: 2;
		grid-row: 1;
		float: none !important;
		display: block !important;
		max-width: none !important;
		width: auto !important;
		position: relative !important;
		text-align: center;
		margin: 0 !important;
		overflow: visible !important;
		align-self: center;
	}
	.header-inner .logo-container #logo {
		display: inline-block;
		float: none;
		margin: 0;
	}
	.header-inner .logo-container #logo img {
		margin: 0;
		max-height: 48px;
		width: auto;
	}

	.header-inner .box-cart {
		display: contents !important;
		position: static !important;
		transform: none !important;
		margin: 0 !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		z-index: auto !important;
		width: auto;
		float: none !important;
	}

	.header-inner #top-links {
		grid-column: 3;
		grid-row: 1;
		width: auto !important;
		max-width: none;
		margin: 0 !important;
		float: none !important;
		text-align: left;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		align-self: center;
		gap: 2px;
	}
	.header-inner #top-links .greetings {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 4px;
		width: auto;
		max-width: none;
		text-align: left;
		font-size: 13px;
		line-height: 1.35;
		white-space: nowrap;
	}
	.header-inner #top-links .greetings-text {
		white-space: nowrap;
	}
	.header-inner #top-links .greetings .btn-link {
		padding-top: 0 !important;
		display: inline;
		white-space: nowrap;
	}
	/* Mobile: só "Olá, Nome" + "Sair" (pontos ficam no desktop/toggle) */
	.header-inner #top-links .points-toggle,
	.header-inner #top-links .points-balance,
	.header-inner #top-links .greetings br {
		display: none !important;
	}
	.header-inner #top-links .user {
		display: flex !important;
		justify-content: flex-start;
		align-items: center;
		float: none !important;
		width: auto;
		margin: 0;
		gap: 8px;
	}
	.header-inner #top-links .user li {
		float: none !important;
	}

	/* Carrinho full-width abaixo da marca (span nas 4 colunas) */
	.header-inner #cart,
	.header-inner #cart.btn-group,
	.header-inner #cart.btn-block {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		margin: 0 !important;
		display: block !important;
		box-sizing: border-box !important;
	}
	.header-inner #cart.btn-group:before,
	.header-inner #cart.btn-group:after {
		display: none !important;
		content: none !important;
	}
	.header-inner #cart > button,
	.header-inner #cart > .btn,
	.header-inner #cart > .dropdown-toggle,
	.header-inner #cart.btn-group > .btn {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		box-sizing: border-box !important;
		margin: 0 !important;
	}
	.header-inner #cart .dropdown-menu {
		width: 100%;
		left: 0;
		right: 0;
	}

	/* Busca full-width */
	.header-inner .top-search {
		order: 4;
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
		top: auto !important;
		position: relative !important;
		transform: none !important;
		box-sizing: border-box;
	}
	.header-inner .col-hoz {
		order: 5;
		width: 100%;
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		margin: 0 0 8px !important;
	}
	/* Menu mobile: sem offset top (regra ≤479 do tema empurrava para dentro do conteúdo) */
	.header-inner .mobile-menu {
		width: 100% !important;
		max-width: 100% !important;
		display: block !important;
	}
	.header-inner .mobile-menu .oc-menu-bar {
		top: auto !important;
		position: relative !important;
		width: 100% !important;
		max-width: 100% !important;
		display: flex !important;
		align-items: center;
		box-sizing: border-box;
		font-size: 14px !important;
		overflow: hidden;
	}
	/* Garante que o menu horizontal (desktop) não apareça no mobile */
	.header-inner .horizontal-menu {
		display: none !important;
	}
	.header-inner .top-search #search,
	.header-inner .top-search #search-by-category,
	.header-inner .top-search .search-container {
		width: 100% !important;
		max-width: 100% !important;
		top: auto !important;
		position: relative !important;
		box-sizing: border-box;
		font-size: 14px !important;
	}
	.header-inner #search-by-category .search-container #text-search {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
		font-size: 14px !important;
	}

	/* Hero legível no celular */
	.common-home .home-principal-banner .swiper-viewport {
		height: auto;
		max-height: none;
		min-height: 160px;
	}
	.common-home .home-principal-banner .swiper-container,
	.common-home .home-principal-banner .swiper-wrapper,
	.common-home .home-principal-banner .swiper-slide,
	.common-home .home-principal-banner .swiper-slide a {
		height: auto;
	}
	.common-home .home-principal-banner .swiper-slide img {
		width: 100%;
		height: auto;
		max-height: none;
		margin-top: 0;
		object-fit: contain;
		object-position: center center;
	}

	/* Full-bleed 100vw quebra no mobile — volta ao fluxo normal */
	.common-home .tt_product_module {
		left: auto !important;
		right: auto !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
		overflow: hidden;
	}

	/* Título/preço abaixo da imagem */
	.common-home .tt_product_module .item-inner .caption {
		transform: none !important;
		position: relative;
		z-index: 1;
		padding-top: 12px;
		padding-bottom: 16px;
		clear: both;
	}
	.common-home .tt_product_module .item-inner .product-name {
		z-index: 1 !important;
		margin: 0 0 6px;
		line-height: 1.35;
	}
	.common-home .tt_product_module .item-inner .images-container {
		height: auto;
		min-height: 0;
		aspect-ratio: 1 / 1;
		overflow: hidden;
	}
	.common-home .tt_product_module .item-inner .images-container img {
		max-height: 100%;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	/* Barra do menu mobile mais limpa */
	.mobile-menu {
		margin: 0 0 8px;
	}
	.mobile-menu .oc-menu-bar {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
		background: #f5f5f5;
		border: 1px solid #e5e5e5;
		border-radius: 6px;
		padding: 12px 14px;
		overflow: hidden;
		min-height: 44px;
	}
	.mobile-menu .oc-menu-bar .left {
		float: none !important;
		display: flex !important;
		align-items: center;
		gap: 8px;
		flex: 1 1 auto;
		min-width: 0;
		overflow: hidden;
		padding: 0 !important;
	}
	.mobile-menu .oc-menu-bar .left i {
		flex: 0 0 auto;
		margin-right: 0 !important;
		line-height: 1 !important;
	}
	.mobile-menu .oc-menu-bar .left span {
		display: block;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		line-height: 1.3;
	}
	.mobile-menu .oc-menu-bar .right {
		float: none !important;
		flex: 0 0 auto;
	}
	.mobile-menu.mobile-menu-direct .oc-menu-bar .right,
	.mobile-menu:has(.ul-top-items > .li-top-item:only-child:not(:has(.a-click-show))) .oc-menu-bar .right {
		display: none !important;
	}
}

@media (max-width: 479px) {
	/* regras do box-cart ≤479 já cobertas no bloco 767px */
}


