/*
 * Revitalização natural Equilíbrio & Forma.
 * Este arquivo concentra o novo visual para facilitar ajustes sem mexer no CSS legado do OpenCart.
 */

/* Tokens visuais: centraliza cores, sombras e medidas do novo conceito natural. */
:root {
  --natural-green-900: #173b1e;
  --natural-green-800: #24542d;
  --natural-green-700: #2f6f3a;
  --natural-green-600: #3f8a47;
  --natural-green-100: #edf6e8;
  --natural-leaf: #78a941;
  --natural-mint: #dceecf;
  --natural-cream: #faf7ec;
  --natural-paper: #fffdf6;
  --natural-wood: #b98248;
  --natural-ink: #26322a;
  --natural-muted: #6b7469;
  --natural-border: rgba(47, 111, 58, 0.16);
  --natural-shadow: 0 18px 45px rgba(23, 59, 30, 0.12);
  --natural-radius: 8px;
}

/* Base do site: troca a sensação fria por uma superfície clara, orgânica e mais acolhedora. */
body {
  background:
    radial-gradient(circle at 6% 0%, rgba(120, 169, 65, 0.13), transparent 28rem),
    linear-gradient(180deg, #fffdf6 0%, #f7f3e7 48%, #fffdf6 100%);
  color: var(--natural-ink);
}

/* Tipografia geral: deixa títulos mais suaves e remove a cara técnica antiga. */
h1,
h2,
h3,
h4,
h5,
h6,
.box-heading h3,
.product-thumb h4 a,
.page-product .title-product {
  color: var(--natural-green-900);
  letter-spacing: 0;
}

/* Links e focos: aplica o verde principal nos pontos clicáveis. */
a,
a:focus {
  color: var(--natural-green-700);
}

a:hover {
  color: var(--natural-leaf);
}

/* Cabeçalho: cria uma área superior com cara de empório natural e mais respiro visual. */
header {
  background:
    linear-gradient(135deg, rgba(250, 247, 236, 0.98), rgba(237, 246, 232, 0.96)),
    url("../image/bg-sombra.jpg") center bottom / cover no-repeat;
  box-shadow: 0 10px 35px rgba(23, 59, 30, 0.10);
  border-bottom: 1px solid var(--natural-border);
  padding-bottom: 1.4rem;
}

/* Faixa de benefícios: apresenta argumentos rápidos antes da navegação principal. */
.natural-topbar {
  background: linear-gradient(90deg, var(--natural-green-900), var(--natural-green-700));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.natural-topbar .container {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 3rem;
  min-height: 36px;
}

.natural-topbar span {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  white-space: nowrap;
}

.natural-topbar i {
  color: var(--natural-mint);
  font-size: 1.7rem;
}

/* Logo: mantém a marca limpa, sem moldura, para não competir com o cabeçalho. */
#logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

#logo img {
  filter: none;
}

/* Menu no header: adapta o menu.twig para abrir ao lado da logo, sem virar uma segunda barra. */
.natural-header-menu {
  min-height: 88px;
}

.natural-header-menu .bg-nav {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
}

.natural-header-menu .bg-nav > .container {
  width: auto;
  padding: 0;
}

.natural-header-menu #menu {
  margin: 0;
  min-height: 88px;
}

.natural-header-menu #menu .navbar-collapse {
  padding: 0;
}

.natural-header-menu #menu .nav {
  align-items: center;
  display: flex;
  min-height: 88px;
}

.natural-header-menu #menu .nav > li > a {
  color: var(--natural-green-900);
  font-size: 1.28rem;
  font-weight: 800;
  padding: 3.4rem 1.1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.natural-header-menu #menu .nav > li > a:hover,
.natural-header-menu #menu .nav > li.open > a {
  background: transparent;
  color: var(--natural-green-700);
}

/* Busca: deixa a pesquisa ampla e integrada ao topo, sem aparência de caixa sobreposta. */
#search {
  margin-top: 0;
  position: relative;
}

#search input {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 111, 58, 0.18);
  border-radius: 999px;
  box-shadow: none;
  color: var(--natural-ink);
  font-size: 1.45rem;
  font-weight: 700;
  padding-right: 6rem;
  width: 100%;
}

#search input::placeholder {
  color: #84917f;
}

#search button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--natural-green-800);
  box-shadow: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 5.5rem;
  z-index: 2;
}

#search button:hover {
  background: transparent;
  color: var(--natural-green-700);
}

/* Busca mobile: replica o acabamento da busca desktop no campo expansível. */
#searchXs {
  position: relative;
}

#searchXs input {
  border-radius: 999px;
  padding-right: 5.5rem;
  width: 100%;
}

#searchXs button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  z-index: 2;
}

/* Busca em tempo real: dropdown de resultados abaixo da barra principal. */
#search .live-search-results,
#searchXs .live-search-results {
  background: #fff;
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: var(--natural-shadow);
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  z-index: 1000;
}

#search .live-search-results.active,
#searchXs .live-search-results.active {
  display: block;
}

.live-search-item {
  align-items: center;
  border-bottom: 1px solid rgba(47, 111, 58, 0.10);
  color: var(--natural-ink);
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.live-search-item:hover {
  background: var(--natural-green-100);
  color: var(--natural-green-900);
}

.live-search-image {
  align-items: center;
  background: #fffdf6;
  border-radius: 6px;
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.live-search-image img {
  max-height: 52px;
  max-width: 52px;
  object-fit: contain;
}

.live-search-info {
  display: block;
  min-width: 0;
}

.live-search-info strong {
  color: var(--natural-green-900);
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.live-search-info small {
  color: var(--natural-green-700);
  display: block;
  font-weight: 800;
  margin-top: 0.25rem;
}

.live-search-info .old {
  color: #8a9387;
  font-weight: 700;
  text-decoration: line-through;
}

.live-search-all,
.live-search-empty {
  color: var(--natural-green-800);
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1rem;
  text-align: center;
}

/* Cabeçalho compacto: deixa busca, conta e carrinho como ícones laterais. */
.natural-search-panel {
  position: static;
}

.natural-search-panel #search {
  background: rgba(255, 253, 246, 0.98);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: var(--natural-shadow);
  display: none;
  left: 50%;
  max-width: 720px;
  padding: 1rem;
  position: absolute;
  top: calc(100% + 1rem);
  transform: translateX(-50%);
  width: min(720px, calc(100vw - 3rem));
  z-index: 1001;
}

.natural-search-panel #search input {
  background: #fff;
  height: 52px;
}

.natural-search-head {
  display: inline-block;
  vertical-align: middle;
}

.natural-head-icon,
.welcome-head button,
.icons-head.cart-block .js-open-minicart {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.natural-head-icon i {
  color: var(--natural-green-900);
  font-size: 2.8rem;
}

.icons-head-block {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
}

.welcome-head button .bg-user,
.icons-head.cart-block .bg-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.welcome-head button .img,
.icons-head.cart-block .img {
  max-height: 34px;
}

.icons-head.cart-block .item {
  right: -0.4rem;
  top: -0.2rem;
}

/* Ícones do topo: remove as cápsulas para conta e carrinho ficarem mais leves. */
.icons-head-block {
  margin-top: 1.4rem;
}

.icons-head .bg-user,
.icons-head.cart-block .bg-icon {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.welcome-head button {
  color: var(--natural-green-900);
}

.welcome-head .text-login {
  color: var(--natural-green-900);
  font-weight: 800;
}

.welcome-head .text-second {
  color: var(--natural-muted);
}

/* Menu principal: substitui a barra branca dura por navegação tipo loja natural, com ativo mais claro. */
.bg-nav {
  background: rgba(255, 253, 246, 0.96);
  border-bottom: 1px solid var(--natural-border);
  box-shadow: 0 10px 25px rgba(23, 59, 30, 0.06);
}

#menu .navbar-nav {
  align-items: center;
}

#menu .nav > li > a {
  color: var(--natural-green-900);
  font-weight: 800;
  letter-spacing: 0;
  border-radius: 999px;
  border-bottom: 0;
}

#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  background: var(--natural-green-100);
  border-bottom: 0;
  color: var(--natural-green-700);
}

#menu .nav > li > .border-sale {
  background: #fff7ed;
  /*border: 1px solid rgba(185, 130, 72, 0.45);*/
  color: #905a25;
}

#menu .dropdown-menu {
  background: var(--natural-paper);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: var(--natural-shadow);
}

#menu .dropdown-menu .name-cat-principal {
  color: var(--natural-green-900);
  font-weight: 800;
  letter-spacing: 0;
}

#menu .dropdown-inner a {
  color: var(--natural-muted);
  font-weight: 700;
  letter-spacing: 0;
}

/* Terceiro nível refinado: deixa a seta mais clara e o flyout lateral mais organizado. */
#menu .dropdown-inner .has-third-level > a.arrow {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#menu .dropdown-inner .has-third-level > a.arrow::after {
  color: var(--natural-green-700);
  content: "\ea99";
  font-family: IcoFont;
  font-size: 1rem;
  margin-left: 1.2rem;
}

#menu .menu3rdlevel_inner a {
  color: var(--natural-muted);
  font-size: 1.22rem;
  font-weight: 600;
  min-width: 0;
  padding: 0.55rem 1.4rem;
  text-transform: none;
}

#menu .menu3rdlevel_inner a:hover {
  background: var(--natural-green-100);
  color: var(--natural-green-700);
  text-decoration: none;
}

#menu .dropdown-inner li a:hover {
  color: var(--natural-green-700);
  text-decoration: none;
}

/* Slideshow: prepara o banner novo para aparecer como vitrine natural, sem cortes duros. */
.slideshow.swiper-viewport {
  background: linear-gradient(180deg, #fffdf6, #edf6e8);
  border: 0;
  box-shadow: none;
}

.container-slide0 {
  background: #edf6e8;
}

.slideshow .swiper-slide img {
  border-radius: 0;
}

.slideshow .swiper-pagination-bullet-active {
  background: var(--natural-green-700);
}

/* Faixa de condições: harmoniza os ícones de troca, pagamento e segurança. */
.regua-condicoes {
  background: var(--natural-paper);
  border-bottom: 1px solid var(--natural-border);
  box-shadow: 0 12px 30px rgba(23, 59, 30, 0.06);
}

.regua-condicoes .icon,
.regua-condicoes i {
  color: var(--natural-green-700);
}

/* Títulos de módulos: reforça hierarquia editorial sem parecer landing page. */
.box-heading {
  margin: 2.8rem 0 2rem;
  text-align: center;
}

.box-heading h3 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}

.box-heading h3 span {
  color: var(--natural-muted);
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* Cards de produto: troca o bloco branco comum por cartões de prateleira com sombra suave. */
.product-thumb {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: 0 12px 28px rgba(23, 59, 30, 0.08);
  overflow: hidden;
  padding: 1.4rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.product-thumb:hover {
  border-color: rgba(47, 111, 58, 0.32);
  box-shadow: var(--natural-shadow);
  transform: translateY(-3px);
}

.product-thumb .image {
  background: linear-gradient(180deg, #fff, #faf7ec);
  border-radius: var(--natural-radius);
  margin-bottom: 1.2rem;
  padding: 1.2rem;
}

.product-thumb .image img {
  max-height: 300px;
  object-fit: contain;
}

.product-thumb h4 a {
  color: var(--natural-ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-thumb .price {
  color: var(--natural-muted);
}

.product-thumb .price .avista-modules .valor-desconto,
.product-thumb .price-new,
.product-thumb .price-normal {
  color: var(--natural-green-700);
}

.product-thumb .price .content_parcelamento_produto b {
  color: var(--natural-green-900);
}

.product-thumb .saving,
.product-thumb .esgotado,
.product-thumb .encomenda {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
}

.product-thumb .saving {
  background: var(--natural-wood);
}

.product-thumb .esgotado,
.product-thumb .encomenda {
  background: var(--natural-green-800);
}

.product-thumb .button-add,
.product-thumb .saiba-mais {
  background: var(--natural-green-700);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

/* Página de categoria: torna cabeçalho, filtros e lista mais leves e coerentes com produtos naturais. */
.bg-page {
  background: transparent;
}

.bg-title {
  background:
    linear-gradient(135deg, rgba(237, 246, 232, 0.95), rgba(250, 247, 236, 0.95));
  border-color: var(--natural-border);
  margin-bottom: 2.4rem;
  padding: 1.6rem 0;
}

.bg-title h1 {
  color: var(--natural-green-900);
  font-size: 2.6rem;
  letter-spacing: 0;
  text-transform: none;
}

.bg-title .nav-title a {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--natural-border);
  border-radius: 999px;
  color: var(--natural-green-800);
  font-weight: 800;
  margin: 0.4rem 0.4rem 0 0;
  padding: 0.45rem 1rem;
  text-decoration: none;
}

.bg-title .results {
  color: var(--natural-muted);
  font-weight: 800;
}

.bg-title .results span {
  color: var(--natural-green-700);
}

.page-account aside .list-group,
#column-left .list-group,
#column-left .panel,
#column-left .box {
  background: var(--natural-paper);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: 0 12px 28px rgba(23, 59, 30, 0.06);
  overflow: hidden;
}

.cat-page .input-group-addon,
.cat-page .form-control {
  background: #fff;
  border-color: var(--natural-border);
  color: var(--natural-ink);
  font-weight: 700;
}

/* Página de produto: organiza compra e imagem como uma ficha premium de item natural. */
.breadcrumb-product {
  background: var(--natural-paper);
  border-color: var(--natural-border);
}

.breadcrumb li a {
  color: var(--natural-muted);
  font-weight: 800;
  letter-spacing: 0;
}

.page-product {
  background: transparent;
}

.page-product .photo-full {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: 0 16px 40px rgba(23, 59, 30, 0.08);
  padding: 2rem;
}

.page-product .thumbnail {
  background: transparent;
}

.page-product .thumbnail img {
  object-fit: contain;
}

.page-product .lado3 .lado3-int {
  background: var(--natural-paper);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: var(--natural-shadow);
  padding: 2.4rem;
}

.page-product .title-product {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
}

.page-product .model,
.page-product .rating a,
.page-product .manufacturer {
  color: var(--natural-muted);
}

.page-product .new-product,
.page-product .economize-product span,
.page-product .freeshipping {
  border-radius: 999px;
  font-weight: 800;
}

.page-product .new-product {
  background: var(--natural-green-700);
}

.page-product .price-content {
  background: linear-gradient(135deg, #ffffff, #f4f9ef);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  margin: 1.8rem 0;
  padding: 1.6rem;
}

.page-product .price-content .price-avista-product .valor-desconto {
  color: var(--natural-green-700);
  font-size: 3.2rem;
}

.page-product .price-content .price-special,
.page-product .price-content .price-normal,
.page-product .price-content .parcelamento {
  color: var(--natural-ink);
}

.page-product .product-quantity {
  border: 1px solid var(--natural-border);
  border-radius: 999px;
  color: var(--natural-green-900);
  font-weight: 800;
  min-height: 48px;
  text-align: center;
}

.page-product .button-buy {
  background: linear-gradient(135deg, var(--natural-green-700), var(--natural-leaf));
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(47, 111, 58, 0.24);
  letter-spacing: 0;
}

.page-product .button-buy:hover {
  background: linear-gradient(135deg, var(--natural-green-900), var(--natural-green-700));
}

.page-product .alert {
  background: #fff9e7;
  border: 1px solid rgba(185, 130, 72, 0.22);
  border-radius: var(--natural-radius);
  color: #7b552d;
}

.page-product .block-description {
  background: var(--natural-paper);
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: 0 16px 40px rgba(23, 59, 30, 0.07);
  padding: 2rem;
}

.page-product .nav-tabs > li > a {
  color: var(--natural-muted);
  letter-spacing: 0;
}

.page-product .nav-tabs > li.active > a,
.page-product .nav-tabs > li.active > a:focus,
.page-product .nav-tabs > li.active > a:hover,
.page-product .nav-tabs > li > a:hover {
  border-bottom-color: var(--natural-green-700);
  color: var(--natural-green-900);
}

/* Produto moderno: define o espaçamento geral da nova tela limpa do product.twig. */
.natural-product-page {
  padding-bottom: 4rem;
}

/* Breadcrumb moderno: transforma a trilha original em uma navegação mais leve. */
.natural-product-breadcrumb {
  background: transparent;
  border-bottom: 1px solid var(--natural-border);
  margin: 0 0 2.8rem;
  padding: 1.4rem 0;
  text-align: right;
}

/* Hero do produto: cria duas colunas equilibradas para galeria e compra. */
.natural-product-hero {
  align-items: start;
  display: grid;
  gap: 4.2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
}

/* Galeria moderna: deixa a imagem grande e limpa, como vitrine de produto. */
.natural-product-gallery {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 560px;
  padding: 0 1rem;
  position: relative;
}

/* Tarja sobre a foto: destaca produtos recém-cadastrados sem poluir o painel de compra. */
.natural-photo-badge {
  background: linear-gradient(135deg, var(--natural-green-800), var(--natural-leaf));
  border-radius: 999px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  left: 2rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.15rem;
  position: absolute;
  text-transform: uppercase;
  top: 2rem;
  z-index: 3;
}

/* Lista de imagens do produto: remove aparência padrão de lista e organiza miniaturas. */
.natural-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  overflow: visible;
  padding: 0;
}

/* Imagem principal: cria uma área grande e limpa para o produto respirar. */
.natural-main-image {
  align-items: center;
  background: #fff;
  border-radius: 0;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  min-height: 500px;
  padding: 1rem;
}

.natural-main-image .thumbnail {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

.natural-main-image img {
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.natural-main-image:hover img {
  transform: scale(1.025);
}

/* Miniaturas: mostra imagens extras como opções discretas abaixo da foto principal. */
.natural-image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.natural-image-strip .thumbnail {
  align-items: center;
  background: #fff;
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  display: flex;
  height: 86px;
  justify-content: center;
  margin: 0;
  padding: 0.6rem;
  width: 86px;
}

.natural-image-strip .thumbnail.is-active {
  border-color: var(--natural-green-700);
  box-shadow: 0 0 0 2px rgba(47, 111, 58, 0.12);
}

.natural-image-strip img {
  max-height: 72px;
  object-fit: contain;
}

/* Marca abaixo da galeria: recupera o comportamento "veja outros produtos de" do layout oficial. */
.natural-gallery-brand {
  color: var(--natural-muted);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.2rem;
  text-align: center;
}

.natural-gallery-brand a {
  color: var(--natural-green-800);
  font-weight: 800;
  text-decoration: underline;
}

/* Painel de resumo: segue uma leitura aberta, inspirada em páginas de produto mais editoriais. */
.natural-product-summary {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  padding: 0.6rem 0 0;
  position: sticky;
  top: 2rem;
}

/* Ações do produto: coloca favoritos e comparação no canto superior sem pesar o layout. */
.natural-product-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.natural-product-actions button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--natural-border);
  border-radius: 999px;
  color: var(--natural-green-800);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.natural-product-actions button:hover {
  background: var(--natural-green-700);
  color: #fff;
  transform: translateY(-2px);
}

/* Logo da marca: reaproveita a imagem de fabricante em um selo elegante. */
.natural-brand-logo {
  margin-bottom: 1.4rem;
}

.natural-brand-logo a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(142, 158, 132, 0.22);
  border-radius: 6px;
  display: inline-flex;
  min-height: 56px;
  padding: 0.7rem 0.9rem;
}

.natural-brand-logo img {
  max-height: 46px;
  max-width: 140px;
  object-fit: contain;
}

/* Cabeçalho do produto: valoriza nome, marca e SKU com leitura mais próxima da referência. */
.natural-product-heading .natural-product-badge {
  background: var(--natural-green-100);
  border: 1px solid var(--natural-border);
  border-radius: 999px;
  color: var(--natural-green-800);
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 800;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  text-transform: uppercase;
}

.natural-product-heading .title-product {
  color: var(--natural-green-900);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1.6rem;
  text-align: left;
}

.natural-product-meta {
  color: var(--natural-muted);
  font-size: 1.45rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.natural-product-meta a,
.natural-product-meta b {
  color: var(--natural-green-700);
  font-weight: 800;
}

/* Avaliações do produto: mantém estrelas pequenas e links claros. */
.natural-product-rating {
  align-items: center;
  border-top: 1px solid rgba(142, 158, 132, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 0;
  padding-top: 1.4rem;
}

.natural-product-rating a {
  color: var(--natural-green-700);
  font-weight: 800;
}

/* Caixa de preço: remove o card pesado e cria uma hierarquia comercial direta. */
.natural-price-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 2rem 0 1.8rem;
  padding: 0;
}

.natural-price-box .price-old {
  color: #8a9387;
  display: inline-block;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-decoration: line-through;
}

.natural-price-box .price-avista-product {
  display: block;
}

.natural-price-box .valor-desconto {
  color: #2f6f3a;
  display: inline-block;
  font-size: 4.3rem;
  font-weight: 800;
  line-height: 1;
}

.natural-price-box .price-avista-product small {
  color: var(--natural-green-900);
  font-size: 1.4rem;
  font-weight: 800;
  margin-left: 0.45rem;
}

.natural-price-box .price-special {
  color: var(--natural-ink);
  display: block;
  font-size: 1.75rem;
  margin-top: 0.8rem;
}

.natural-price-box .parcelamento {
  color: var(--natural-muted);
  display: block;
  font-size: 1.5rem;
  margin-top: 0.8rem;
}

.natural-price-box .parcelamento b {
  color: var(--natural-green-900);
}

.natural-price-box .economize-price {
  background: #48a23f;
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 800;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.1rem;
}

.natural-price-box .economize-price span {
  color: #fff;
}

.natural-tax {
  display: none;
}

/* Descontos por quantidade: organiza ofertas progressivas em pequenos selos. */
.natural-discounts {
  background: #fff;
  border: 1px solid rgba(142, 158, 132, 0.2);
  border-radius: 6px;
  margin-bottom: 1.6rem;
  padding: 1.2rem;
}

.natural-discounts p {
  color: var(--natural-green-900);
  margin-bottom: 1rem;
}

.natural-discounts p b {
  display: block;
  font-size: 1.5rem;
}

.natural-discounts p span {
  color: var(--natural-muted);
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.natural-discount-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.natural-discount-grid small {
  background: var(--natural-green-100);
  border-radius: var(--natural-radius);
  color: var(--natural-green-900);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.8rem;
}

/* Recompensa e pontos: mantém benefícios comerciais em um bloco discreto. */
.natural-reward-box {
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(47, 111, 58, 0.28);
  border-radius: var(--natural-radius);
  color: var(--natural-muted);
  margin-bottom: 1.8rem;
  padding: 1.2rem;
}

.natural-reward-box p {
  margin: 0.2rem 0;
}

.natural-reward-box b,
.natural-reward-box i {
  color: var(--natural-green-700);
}

/* Bloco de compra: estiliza opções, quantidade e botão principal. */
.natural-buy-box {
  border-top: 1px solid rgba(142, 158, 132, 0.22);
  padding-top: 1.6rem;
}

.natural-buy-box .control-label {
  color: var(--natural-green-900);
  font-weight: 800;
}

.natural-buy-box .form-control {
  border-color: var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: none;
  min-height: 44px;
}

/* Opções do produto: substitui radios nativos por pílulas leves com estado ativo. */
.natural-product-option {
  margin-bottom: 1.4rem;
}

.natural-product-option .control-label {
  color: var(--natural-green-900);
  display: block;
  font-size: 1.28rem;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.natural-option-grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.natural-option-card {
  margin: 0;
}

.natural-option-card label {
  align-items: center;
  background: #fff;
  border: 1px solid var(--natural-border);
  border-radius: 6px;
  color: var(--natural-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.32rem;
  font-weight: 800;
  gap: 0.55rem;
  min-height: 38px;
  justify-content: center;
  line-height: 1.1;
  margin: 0;
  padding: 0.62rem 1.15rem;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  vertical-align: top;
}

.natural-option-card label:hover {
  border-color: rgba(47, 111, 58, 0.42);
  color: var(--natural-green-800);
}

.natural-option-card.active label {
  background: #edf6e8;
  border-color: #2f6f3a;
  color: #24542d;
  box-shadow: none;
}

.natural-option-card input[type="radio"],
.natural-option-card input[type="checkbox"] {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.natural-option-card img {
  border-radius: 6px;
  max-height: 34px;
}

.natural-quantity-row {
  margin-bottom: 0;
}

.natural-quantity-action {
  display: grid;
  gap: 1rem;
  grid-template-columns: 156px minmax(0, 1fr);
}

/* Stepper de quantidade: substitui o input solto por controle de mais e menos. */
.natural-stepper {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
}

.natural-stepper-btn {
  background: #fff;
  border: 1px solid var(--natural-border);
  color: var(--natural-green-800);
  font-size: 2.2rem;
  font-weight: 800;
  height: 58px;
  line-height: 1;
  padding: 0;
}

.natural-stepper-btn:first-child {
  border-radius: var(--natural-radius) 0 0 var(--natural-radius);
}

.natural-stepper-btn:last-child {
  border-radius: 0 var(--natural-radius) var(--natural-radius) 0;
}

.natural-stepper-btn:hover {
  background: var(--natural-green-100);
}

.natural-stepper #input-quantity {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  color: var(--natural-green-900);
  font-size: 2rem;
  font-weight: 800;
  height: 58px;
  line-height: 58px;
  padding: 0;
  text-align: center;
}

/* Botões de compra: deixa "Comprar" forte e "Adicionar" como ação secundária clara. */
.natural-buy-actions {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.natural-buy-actions .btn {
  border-radius: 6px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  height: 58px;
  line-height: 1.2;
  margin: 0;
  padding: 0 1.2rem;
  text-transform: uppercase;
}

.natural-buy-actions #button-buy-now {
  background: #46975a;
  border: 0;
  box-shadow: none;
  color: #fff;
}

.natural-buy-actions #button-buy-now:hover {
  background: #367a47;
}

.natural-buy-actions #button-cart {
  background: #fff;
  border: 1px solid rgba(47, 111, 58, 0.28);
  color: var(--natural-green-800);
  box-shadow: none;
}

.natural-buy-actions #button-cart:hover {
  background: var(--natural-green-100);
  border-color: rgba(47, 111, 58, 0.42);
}

/* Avisos de estoque: diferencia poucas unidades e esgotado sem quebrar o fluxo. */
.natural-stock-alert {
  background: #fff9e7;
  border: 1px solid rgba(185, 130, 72, 0.24);
  border-radius: var(--natural-radius);
  color: #7b552d;
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
}

.natural-stock-empty {
  background: #fff0ed;
  border-color: rgba(154, 55, 38, 0.22);
  color: #8b3124;
  margin-top: 0;
}

/* Abas do produto: cria bloco inferior moderno para descrição, ficha e avaliações. */
.natural-product-tabs {
  background: transparent;
  border: 1px solid var(--natural-border);
  border-radius: var(--natural-radius);
  box-shadow: 0 16px 40px rgba(23, 59, 30, 0.07);
  margin-top: 3rem;
  padding: 2rem;
}

.natural-product-tabs .nav-tabs {
  border-bottom: 1px solid var(--natural-border);
  display: flex;
  gap: 1.2rem;
  margin: 0 0 2rem;
}

.natural-product-tabs .nav-tabs > li > a {
  background: transparent !important;
  border: 0;
  color: var(--natural-muted);
  font-weight: 800;
  margin: 0;
  padding: 1rem 0;
  text-transform: uppercase;
}

.natural-product-tabs .nav-tabs > li.active > a,
.natural-product-tabs .nav-tabs > li.active > a:focus,
.natural-product-tabs .nav-tabs > li.active > a:hover,
.natural-product-tabs .nav-tabs > li > a:hover {
  background: transparent !important;
  border: 0;
  border-bottom: 3px solid var(--natural-green-700);
  color: var(--natural-green-900);
}

.natural-product-tabs .tab-content {
  background: transparent;
  color: var(--natural-ink);
  font-size: 1.45rem;
  line-height: 1.75;
}

.natural-review-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.natural-review-options .control-label {
  flex: 0 0 100%;
}

.natural-review-options label {
  background: #fff;
  border: 1px solid var(--natural-border);
  border-radius: 999px;
  padding: 0.6rem 1rem;
}

/* Tags e relacionados: mantém conteúdo secundário dentro da linguagem visual nova. */
.natural-related-heading {
  margin-top: 3rem;
}

.natural-product-tags {
  color: var(--natural-muted);
  font-weight: 800;
  margin-top: 2rem;
}

.natural-product-tags a {
  background: var(--natural-green-100);
  border-radius: 999px;
  display: inline-block;
  margin: 0.2rem;
  padding: 0.45rem 0.9rem;
}

/* Produto moderno responsivo: empilha galeria e compra em tablets e celulares. */
@media only screen and (max-width: 1199px) {
  .natural-product-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .natural-product-summary {
    position: relative;
    top: auto;
  }

  .natural-product-gallery {
    min-height: auto;
  }

  .natural-main-image {
    min-height: 360px;
  }

  .natural-main-image img {
    max-height: 340px;
  }
}

/* Produto moderno mobile: reduz alturas e transforma ações de compra em coluna. */
@media only screen and (max-width: 767px) {
  .natural-product-breadcrumb {
    text-align: left;
  }

  .natural-product-hero {
    gap: 1.8rem;
  }

  .natural-product-gallery,
  .natural-product-summary,
  .natural-product-tabs {
    padding: 1.4rem;
  }

  .natural-main-image {
    min-height: 300px;
    padding: 1rem;
  }

  .natural-main-image img {
    max-height: 290px;
  }

  .natural-product-heading .title-product {
    font-size: 2.35rem;
  }

  .natural-price-box .valor-desconto {
    font-size: 3rem;
  }

  .natural-discount-grid,
  .natural-quantity-action,
  .natural-buy-actions {
    grid-template-columns: 1fr;
  }

  .natural-product-tabs .nav-tabs {
    display: block;
  }
}

/* Newsletter e rodapé: fecha a loja com visual de comunidade e confiança natural. */
.newsfoot {
  background: linear-gradient(135deg, var(--natural-green-800), var(--natural-leaf));
}

.foot1 {
  background: linear-gradient(180deg, var(--natural-paper), #f3f8ed);
  border-top: 1px solid var(--natural-border);
}

footer h5 {
  color: var(--natural-green-900);
  letter-spacing: 0;
}

.nav-foot .list-unstyled li a,
.fone-foot .bg-fone a {
  color: var(--natural-ink);
  letter-spacing: 0;
}

.fone-foot .bg-fone {
  border-bottom-color: var(--natural-border);
}

.fone-foot .bg-fone a span,
.fone-foot .bg-fone .icon,
.foot1 .redes-sociais a i {
  color: var(--natural-green-700);
}

.foot1 .redes-sociais .bols {
  border-color: var(--natural-border);
  border-radius: 999px;
}

.powered {
  background: #fff;
  color: var(--natural-muted);
}

/* Botões flutuantes: reduz peso visual mantendo WhatsApp e voltar ao topo acessíveis. */
.whatsappicon img,
.scrollToTop img {
  filter: drop-shadow(0 10px 18px rgba(23, 59, 30, 0.22));
}

/* Responsivo: evita que o novo cabeçalho fique pesado em telas menores. */
@media only screen and (max-width: 991px) {
  header {
    padding-bottom: 0.8rem;
  }

  #logo {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  #search {
    margin-top: 0.4rem;
  }

  .page-product .lado3 .lado3-int,
  .page-product .photo-full,
  .page-product .block-description {
    box-shadow: 0 12px 28px rgba(23, 59, 30, 0.07);
    margin-top: 1.4rem;
    padding: 1.5rem;
  }
}

/* Responsivo mobile: mantém cards compactos e textos legíveis no grid de produtos. */
@media only screen and (max-width: 767px) {
  body {
    background: #fffdf6;
  }

  .product-thumb {
    padding: 1rem;
  }

  .product-thumb .image {
    padding: 0.8rem;
  }

  .product-thumb h4 a {
    font-size: 1.15rem;
    min-height: 45px;
  }

  .product-thumb .price .avista-modules .valor-desconto,
  .product-thumb .price-new,
  .product-thumb .price-normal {
    font-size: 1.75rem;
  }

  .bg-title h1,
  .page-product .title-product {
    font-size: 2.2rem;
  }

  .page-product .price-content .price-avista-product .valor-desconto {
    font-size: 2.6rem;
  }

  .page-product .product-quantity,
  .page-product .button-buy {
    width: 100%;
    margin: 0.4rem 0;
  }
}

/*
 * Direção final do layout: limpa os excessos da primeira versão e aproxima o site
 * da referência enviada, com header baixo, produto protagonista e fundo branco.
 */
body {
  background: #fff;
}

/* Header final: remove o fundo esverdeado pesado e deixa o topo fino e premium. */
header {
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  padding: 0;
  position: relative;
}

.natural-topbar {
  background: #2d6236;
  font-size: 1.15rem;
  margin: 0;
}

.natural-topbar .container {
  gap: 2.8rem;
  min-height: 28px;
}

header > .container > .row {
  align-items: center;
  display: flex;
  min-height: 78px;
}

/* Logo final: respeita a proporção original e impede crescimento exagerado. */
.natural-logo-area {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 78px;
}

#logo {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 78px;
  width: 100%;
}

#logo > a,
#logo > h1 {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
}

#logo img {
  height: auto;
  max-height: 66px;
  max-width: 116px;
  width: auto;
}

/* Menu final: mantém o menu.twig real ao lado da logo, baixo e sem cara de segunda barra. */
.natural-header-menu,
.natural-header-menu #menu,
.natural-header-menu #menu .nav {
  min-height: 78px;
}

.natural-header-menu .bg-nav {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.natural-header-menu #menu .nav {
  align-items: center;
  display: flex;
  justify-content: center;
}

.natural-header-menu #menu .nav > li > a {
  background: transparent !important;
  border-radius: 0;
  color: #25442b;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 2.95rem 1rem;
  text-transform: uppercase;
}

.natural-header-menu #menu .nav > li > a:hover,
.natural-header-menu #menu .nav > li.open > a {
  background: transparent !important;
  color: #2f6f3a;
}

.natural-header-menu #menu .dropdown-menu {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  margin-top: 0;
}

/* Ícones finais: compactos, alinhados e com espaçamento proporcional. */
.natural-header-actions {
  min-height: 78px;
}

.natural-header-actions > .hidden-xs {
  padding-left: 0;
  padding-right: 0;
}

.icons-head-block {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
  margin-top: 0;
  min-height: 78px;
}

.natural-head-icon,
.welcome-head button,
.icons-head.cart-block .js-open-minicart {
  height: 38px;
  width: 38px;
}

.natural-head-icon i {
  color: #111;
  font-size: 2.7rem;
}

.welcome-head button .img,
.icons-head.cart-block .img {
  max-height: 34px;
}

.icons-head.cart-block .item {
  background: #6d6d6d;
  color: #fff;
  font-size: 1.1rem;
  height: 24px;
  line-height: 24px;
  right: -0.8rem;
  top: -1rem;
  width: 24px;
}

/* Busca final: overlay limpo, centralizado e com resultado em tempo real mais profissional. */
.natural-search-panel {
  min-height: 0;
  padding: 0;
  position: static;
}

.natural-search-panel #search {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  display: none;
  left: 50%;
  max-width: 680px;
  padding: 1rem;
  position: absolute;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 4rem));
  z-index: 1005;
}

.natural-search-panel #search input {
  background: #f7f7f7;
  border: 0;
  border-radius: 6px;
  color: #222;
  font-size: 1.5rem;
  font-weight: 700;
  height: 50px;
  padding-left: 1.6rem;
}

.natural-search-panel #search button {
  color: #2f6f3a;
  height: 50px;
  top: 1rem;
}

#search .live-search-results,
#searchXs .live-search-results {
  border-color: #ececec;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  top: calc(100% + 0.6rem);
}

.live-search-item:hover {
  background: #edf6e8;
}

/* Produto final: tira o tom antigo e deixa o produto respirar na tela. */
.natural-product-page {
  background: #fff;
  padding-bottom: 5rem;
}

.natural-product-breadcrumb {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 3rem;
  padding: 1.4rem 0;
}

.natural-product-hero {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.92fr);
}

.natural-product-gallery {
  background: #fff;
  border: 0;
  box-shadow: none;
  min-height: 600px;
  padding: 0;
}

.natural-main-image {
  background: #fff;
  min-height: 560px;
  padding: 0;
}

.natural-main-image img {
  max-height: 560px;
}

.natural-photo-badge {
  background: #3f7d45;
  border-radius: 999px;
  font-size: 1.1rem;
  left: 1.2rem;
  padding: 0.7rem 1.25rem;
  top: 1.2rem;
}

.natural-gallery-brand {
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* Resumo final: remove card, sombra e fundo para ficar mais próximo da referência de layout. */
.natural-product-summary {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 3.5rem 0 0;
}

.natural-product-actions {
  margin-bottom: 2rem;
}

.natural-product-actions button {
  border-color: #e5e5e5;
  color: #2d6236;
  height: 44px;
  width: 44px;
}

.natural-brand-logo {
  margin-bottom: 1.5rem;
}

.natural-brand-logo a {
  border: 1px solid #eeeeee;
  border-radius: 6px;
  min-height: 56px;
  padding: 0.7rem 1rem;
}

.natural-product-heading .title-product {
  color: #1c1c1c;
  font-size: 4.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  text-transform: none;
}

.natural-product-meta {
  color: #6f6f6f;
  font-size: 1.45rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.natural-product-meta a,
.natural-product-meta b {
  color: #2d6236;
}

.natural-product-rating {
  border-top: 1px solid #eeeeee;
  gap: 0.7rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
}

.page-product .natural-price-box,
.natural-price-box {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 2.2rem 0 1.8rem;
  padding: 0 !important;
}

.natural-price-box .price-old {
  color: #9b9b9b;
  font-size: 1.55rem;
}

.page-product .natural-price-box .price-avista-product .valor-desconto,
.natural-price-box .valor-desconto {
  color: #2f6f3a !important;
  font-size: 4.4rem;
  font-weight: 800;
}

.natural-price-box .price-special {
  color: #333;
  font-size: 1.9rem;
}

.natural-price-box .parcelamento {
  color: #858585;
  font-size: 1.5rem;
}

.natural-price-box .economize-price {
  background: #48a23f;
  border-radius: 5px;
  color: #fff;
}

.natural-discounts {
  border-color: #eeeeee;
  border-radius: 6px;
  box-shadow: none;
}

.natural-discount-grid small {
  background: #f4f8f1;
  border-radius: 5px;
}

.natural-buy-box {
  border-top: 1px solid #eeeeee;
  padding-top: 1.6rem;
}

.natural-product-option .control-label {
  color: #333;
  font-size: 1.32rem;
  margin-bottom: 0.75rem;
}

.natural-option-card label {
  border-color: #e6e6e6;
  border-radius: 6px;
  color: #333;
  font-size: 1.35rem;
  min-height: 40px;
  padding: 0.65rem 1.25rem;
}

.natural-option-card.active label {
  background: #edf6e8;
  border-color: #2f6f3a;
  color: #24542d;
}

.natural-quantity-action {
  grid-template-columns: 150px minmax(0, 1fr);
}

.natural-stepper {
  grid-template-columns: 46px minmax(0, 1fr) 46px;
}

.natural-stepper-btn,
.natural-stepper #input-quantity,
.natural-buy-actions .btn {
  height: 58px;
}

.natural-buy-actions .btn {
  border-radius: 6px;
  font-size: 1.9rem;
  font-weight: 800;
}

.natural-buy-actions #button-buy-now {
  background: #46975a;
}

.natural-buy-actions #button-cart {
  background: #fff;
  border-color: #dcdcdc;
  color: #2d6236;
}

.natural-product-tabs {
  background: #fff;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: none;
  margin-top: 4rem;
  padding: 2rem 0;
}

.natural-product-tabs .nav-tabs {
  border-bottom: 1px solid #eeeeee;
  justify-content: center;
}

.natural-product-tabs .nav-tabs > li.active > a,
.natural-product-tabs .nav-tabs > li.active > a:focus,
.natural-product-tabs .nav-tabs > li.active > a:hover,
.natural-product-tabs .nav-tabs > li > a:hover {
  border-bottom-color: #2f6f3a;
  color: #2d6236;
}

/* Responsivo final: mantém proporção sem estourar logo, menu ou compra. */
@media only screen and (max-width: 1199px) {
  .natural-header-menu #menu .nav > li > a {
    font-size: 1.08rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .natural-product-hero {
    gap: 3rem;
    grid-template-columns: 1fr;
  }

  .natural-product-summary {
    padding-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  header > .container > .row {
    display: block;
    min-height: 0;
  }

  #logo,
  .natural-logo-area {
    min-height: 72px;
  }

  #logo img {
    max-height: 64px;
  }
}

@media only screen and (max-width: 767px) {
  .natural-topbar {
    display: none;
  }

  .natural-product-gallery,
  .natural-product-summary,
  .natural-product-tabs {
    padding-left: 0;
    padding-right: 0;
  }

  .natural-main-image {
    min-height: 330px;
  }

  .natural-main-image img {
    max-height: 330px;
  }

  .natural-product-heading .title-product {
    font-size: 2.8rem;
  }
}

/*
 * Ajustes finos solicitados: alinha topo, remove acentos fora da paleta e posiciona
 * marca/desconto como elementos flutuantes sem pesar a tela de produto.
 */
header > .container > .row {
  min-height: 72px;
}

.natural-logo-area,
#logo {
  min-height: 72px;
  transform: translateY(-4px);
}

#logo img {
  max-height: 62px;
  max-width: 110px;
}

.natural-header-menu,
.natural-header-menu #menu,
.natural-header-menu #menu .nav,
.natural-header-actions,
.icons-head-block {
  min-height: 72px;
}

.natural-header-menu #menu .nav > li > a {
  font-weight: 700;
  padding-bottom: 2.55rem;
  padding-left: 1.45rem;
  padding-right: 1.45rem;
  padding-top: 2.55rem;
}

.natural-header-menu #menu .nav > li > a:hover,
.natural-header-menu #menu .nav > li.open > a {
  color: #2f6f3a;
}

.icons-head-block {
  gap: 0.08rem;
  justify-content: flex-end;
  padding-right: 0;
  transform: translateY(-5px);
}

.icons-head {
  float: none !important;
  margin-top: 0 !important;
}

.icons-head .bg-user {
  float: none !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

.natural-head-icon,
.welcome-head button,
.icons-head.cart-block .js-open-minicart {
  height: 36px;
  width: 36px;
}

.natural-head-icon i {
  font-size: 2.55rem;
}

.welcome-head button .img,
.icons-head.cart-block .img {
  max-height: 32px;
}

.icons-head.cart-block .item {
  right: -0.55rem;
  top: -0.85rem;
}

/* Busca revisada: abre como painel contido à direita, sem criar barra horizontal. */
.natural-search-panel #search {
  animation: naturalSearchDrop 0.2s ease;
  box-sizing: border-box;
  left: auto;
  max-width: calc(100vw - 4rem);
  right: 3.2rem;
  top: calc(100% + 0.2rem);
  transform: none;
  width: clamp(340px, 34vw, 560px);
}

.natural-search-panel #search button {
  color: #2f6f3a;
}

.live-search-item:hover {
  background: #edf6e8;
}

@keyframes naturalSearchDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.natural-product-breadcrumb {
  margin-bottom: 1.6rem;
}

.natural-product-hero {
  align-items: flex-start;
  gap: 4.4rem;
}

.natural-product-gallery {
  align-self: start;
  position: sticky;
  top: 1.4rem;
}

.natural-product-summary {
  padding-top: 0.4rem;
}

.natural-product-actions {
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
  min-height: 44px;
}

.natural-discount-badge {
  align-items: center;
  background: #2f6f3a;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  padding: 0 1rem;
}

.natural-brand-logo {
  left: 1.2rem;
  margin: 0;
  position: absolute;
  top: 1.2rem;
  z-index: 4;
}

.natural-brand-logo.has-launch-badge {
  top: 5.4rem;
}

.natural-brand-logo a {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 0;
  padding: 0;
}

.natural-brand-logo img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  max-height: 42px;
  max-width: 118px;
  object-fit: contain;
  padding: 0;
}

.natural-stock-feedback {
  background: #edf6e8;
  border: 1px solid rgba(47, 111, 58, 0.18);
  border-radius: 6px;
  color: #24542d;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
}

.natural-shipping-wrapper {
  border-top: 1px solid #eeeeee;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
}

.natural-share-box {
  border-top: 1px solid #eeeeee;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  text-align: center;
}

.natural-share-box p {
  color: #24542d;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.natural-share-box .sharethis-inline-share-buttons {
  display: flex;
  justify-content: center;
  min-height: 40px;
}

/* Simulador de frete: deixa o módulo oficial mais leve e integrado ao produto. */
#box-estimate-tax {
  font-family: inherit;
  padding-top: 0;
  text-align: left;
}

#box-estimate-tax .wellx {
  background: #f8fbf6;
  border: 1px solid rgba(47, 111, 58, 0.12);
  border-radius: 8px;
  padding: 1.25rem;
}

#box-estimate-tax .wellx p {
  color: #24542d;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

#box-estimate-tax .form-content {
  align-items: stretch;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

#box-estimate-tax input[name="postcode"] {
  background: #fff;
  border: 1px solid #dce7d8;
  border-radius: 6px;
  color: #26322a;
  font-size: 1.35rem;
  height: 46px;
  padding: 0 1.2rem;
  width: 100%;
}

#box-estimate-tax #estimate_tax {
  align-items: center;
  background: #2f6f3a;
  border: 0;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  line-height: 1;
  min-width: 110px;
  padding: 0 1.6rem;
}

#results-taxes {
  margin-top: 1rem;
}

#results-taxes h4 {
  color: #24542d;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

#results-taxes .alert {
  border-radius: 6px;
  display: block;
  margin: 0;
}

#results-taxes .natural-shipping-panel {
  border: 1px solid #e4ece1;
  border-radius: 6px;
  box-shadow: none;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

#results-taxes .natural-shipping-panel .panel-heading {
  background: #fff;
  border-bottom: 1px solid #edf3ea;
  color: #24542d;
  font-size: 1.2rem;
  padding: 0.9rem 1.1rem;
}

#results-taxes .natural-shipping-panel .panel-body {
  background: #fff;
  padding: 1rem 1.1rem;
}

/* Avaliacao: remove radios aparentes e troca por estrelas clicaveis. */
.natural-review-options {
  gap: 0.8rem;
}

.natural-review-stars {
  display: flex;
  gap: 0.5rem;
}

.natural-review-star {
  cursor: pointer;
  margin: 0;
}

.natural-review-star input {
  display: none;
}

.natural-review-star span {
  color: #cfd8cb;
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.natural-review-star:hover span,
.natural-review-star.active span {
  color: #2f6f3a;
  transform: scale(1.04);
}

.natural-review-scale {
  color: #6f6f6f;
  display: flex;
  font-size: 1.15rem;
  font-weight: 700;
  justify-content: space-between;
  width: 260px;
}

#form-review .form-control {
  border: 1px solid #dde6da;
  border-radius: 6px;
  box-shadow: none;
}

#button-review {
  background: #2f6f3a;
  border: 0;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 1rem 2rem;
  text-transform: none;
}

#button-review:hover {
  background: #24542d;
}

.natural-product-heading .title-product {
  color: #1d2a20;
  margin-bottom: 1.4rem;
}

.page-product .natural-price-box .price-avista-product .valor-desconto,
.natural-price-box .valor-desconto {
  color: #2f6f3a !important;
}

.natural-price-box .economize-price {
  background: #2f6f3a;
}

.natural-option-card.active label {
  background: #edf6e8;
  border-color: #2f6f3a;
  color: #24542d;
}

.natural-product-tabs .nav-tabs > li.active > a,
.natural-product-tabs .nav-tabs > li.active > a:focus,
.natural-product-tabs .nav-tabs > li.active > a:hover,
.natural-product-tabs .nav-tabs > li > a:hover {
  border-bottom-color: #2f6f3a;
  color: #24542d;
}

@media only screen and (min-width: 992px) {
  .natural-header-actions {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .natural-header-actions > .natural-search-panel,
  .natural-header-actions > .hidden-xs {
    float: none;
    width: auto;
  }

  .natural-header-actions > .hidden-xs {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .natural-search-panel #search {
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
  }

  .natural-logo-area,
  #logo,
  .icons-head-block {
    transform: none;
  }

  .natural-product-gallery {
    position: relative;
    top: auto;
  }
}

/* Ajustes finais do cabeçalho: reduz o ruído do tema base e compacta os ícones no canto direito. */
.natural-header-actions {
  position: relative;
  z-index: 1012;
}

.icons-head-block {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
  width: auto;
}

.icons-head-block .icons-head {
  align-items: center;
  display: flex;
  float: none !important;
  margin: 0 !important;
}

.welcome-head {
  padding-right: 0 !important;
  width: auto !important;
}

.welcome-head .dropdown {
  position: relative;
  z-index: 1015;
}

.welcome-head #dLabel,
.icons-head.cart-block .js-open-minicart,
.natural-search-head .showSearch {
  align-items: center;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.welcome-head button .img,
.icons-head.cart-block .img {
  max-height: 27px;
  width: auto;
}

.natural-search-head .showSearch i {
  font-size: 2.25rem;
}

.icons-head.cart-block .item {
  right: -1.45rem;
  top: -0.65rem;
}

.welcome-head .dropdown-menu {
  left: auto !important;
  margin-top: 0.8rem;
  min-width: 290px;
  right: 0 !important;
  top: 100%;
  z-index: 1016;
}

/* Galeria: impede a coluna esquerda de esticar e centralizar a imagem quando o frete expande. */
.natural-product-hero {
  align-items: start;
}

.natural-product-gallery {
  align-self: start;
  height: auto;
  justify-content: flex-start;
  min-height: 0;
  position: relative;
  top: auto;
}

.natural-main-image {
  flex: 0 0 auto;
}

/* ShareThis injeta wrappers próprios, então centralizamos tanto o container quanto a linha interna. */
.natural-share-box,
.natural-share-box #st-1 {
  text-align: center;
}

.natural-share-box #st-1,
.natural-share-box .sharethis-inline-share-buttons,
.natural-share-box .st-btn-container {
  display: flex !important;
  justify-content: center !important;
}

/* Simulador de frete: encaixa o botão dentro do input de CEP com acabamento único. */
#box-estimate-tax .form-content {
  display: block;
  position: relative;
}

#box-estimate-tax input[name="postcode"] {
  padding-right: 12rem;
}

#box-estimate-tax #estimate_tax {
  bottom: 0;
  height: 40px;
  margin: auto 0;
  position: absolute;
  right: 0.35rem;
  top: 0;
}

/* Cabeçalho refinado: menu mais largo, letras menos pesadas e ações compactas sem invadir o layout. */
@media only screen and (min-width: 992px) {
  .natural-header-menu {
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .natural-header-menu #menu {
    width: 100%;
  }

  .natural-header-menu #menu .nav {
    display: flex;
    gap: 1.6rem;
    justify-content: space-between;
    width: 100%;
  }

  .natural-header-menu #menu .nav > li {
    float: none;
  }

  .natural-header-menu #menu .nav > li > a {
    font-size: 1.12rem;
    font-weight: 500;
    padding: 2.55rem 0;
  }

  .natural-header-actions {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    min-height: 72px;
    padding-left: 0;
    padding-right: 0;
  }

  .natural-header-actions > .natural-search-panel {
    flex: 0 0 auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }

  .natural-header-actions > .natural-icons-wrap {
    flex: 0 0 auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }

  .icons-head-block {
    gap: 0.35rem;
    min-height: 72px;
  }

  .natural-head-icon,
  .welcome-head button,
  .icons-head.cart-block .js-open-minicart {
    height: 34px;
    width: 34px;
  }

  .natural-search-head .showSearch i {
    font-size: 2.15rem;
  }

  .welcome-head button .img,
  .icons-head.cart-block .img {
    max-height: 25px;
  }
}

/* Regra final do menu do header: concentra o comportamento em um bloco só para evitar conflito. */
@media only screen and (min-width: 992px) {
  .natural-header-menu .bg-nav,
  .natural-header-menu .navbar-collapse,
  .natural-header-menu #menu {
    width: 100% !important;
  }

  .natural-header-menu #menu {
    align-items: center;
    border-radius: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    min-height: auto;
    text-align: center !important;
  }

  .natural-header-menu #menu .navbar-nav,
  .natural-header-menu #menu .nav {
    display: flex !important;
    float: none !important;
    justify-content: space-between !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .natural-header-menu #menu .nav > li > a {
    font-weight: 500 !important;
    letter-spacing: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Logo e compra no responsivo: bloco final para mandar sem conflito com regras antigas. */
@media only screen and (max-width: 991px) {
  .natural-logo-area,
  #logo {
    justify-content: center !important;
    text-align: center;
    width: 100%;
  }

  .natural-quantity-action,
  .natural-buy-actions {
    grid-template-columns: 1fr !important;
  }

  .natural-stepper {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    width: 100%;
  }

  .natural-buy-actions {
    gap: 0.9rem;
  }

  .natural-buy-actions .btn {
    width: 100%;
  }
}

/* Mobile mais estreito: limpa folgas da logo e suaviza a tipografia dos botões. */
@media only screen and (max-width: 767px) {
  .natural-logo-area {
    padding-left: 0;
    padding-right: 0;
  }

  .natural-buy-actions .btn {
    font-size: 1.8rem;
  }
}

/* Card unificado de produto: usado nas telas de categoria, busca, marcas e ofertas. */
.natural-thumb {
  background: #fff;
  border: 1px solid rgba(47, 111, 58, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 1.2rem;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.natural-thumb:hover {
  box-shadow: 0 16px 34px rgba(23, 59, 30, 0.08);
  transform: translateY(-2px);
}

.natural-thumb-media {
  align-items: center;
  background: linear-gradient(180deg, #fff, #fbfcf7);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 280px;
  padding: 1rem;
  position: relative;
}

.natural-thumb-image {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 250px;
  width: 100%;
}

.natural-thumb-image img {
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.natural-thumb:hover .natural-thumb-image img {
  transform: scale(1.025);
}

.natural-thumb-sale,
.natural-thumb-stock,
.natural-thumb-tag {
  border-radius: 999px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.65rem 0.85rem;
  position: absolute;
  text-transform: uppercase;
}

.natural-thumb-sale {
  background: #1d2a20;
  right: 0.9rem;
  top: 0.9rem;
}

.natural-thumb-stock,
.natural-thumb-tag {
  background: #2f6f3a;
  left: 0.9rem;
  top: 0.9rem;
}

.natural-thumb-stock {
  background: #6f2f2f;
}

.natural-thumb-wishlist {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(47, 111, 58, 0.16);
  border-radius: 999px;
  color: #2f6f3a;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 34px;
}

.natural-thumb-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.25rem 0.3rem 0;
}

.natural-thumb-title {
  margin: 0 0 0.7rem;
  min-height: 42px;
}

.natural-thumb-title a {
  color: #1d2a20;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.natural-thumb-description {
  color: #70796d;
  font-size: 1.18rem;
  line-height: 1.45;
  margin: 0 0 0.95rem;
}

.natural-thumb-options {
  border-top: 1px solid #edf3ea;
  margin-top: 0.3rem;
  min-height: 67px;
  padding-top: 0.9rem;
}

/* Card unificado: placeholder invisivel para alinhar cards sem opcao com cards que possuem sabor/tamanho. */
.natural-thumb-options-empty {
  border-top-color: transparent;
  pointer-events: none;
}

.natural-thumb-option-group > span {
  color: #2f6f3a;
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.natural-thumb-option-values {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.25rem;
  scrollbar-color: rgba(47, 111, 58, 0.28) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

/* Card unificado: deixa muitos sabores em uma linha rolavel sem aumentar a altura do card. */
.natural-thumb-option-values::-webkit-scrollbar {
  height: 4px;
}

.natural-thumb-option-values::-webkit-scrollbar-track {
  background: transparent;
}

.natural-thumb-option-values::-webkit-scrollbar-thumb {
  background: rgba(47, 111, 58, 0.28);
  border-radius: 999px;
}

.natural-thumb-option {
  align-items: center;
  background: #fff;
  border: 1px solid #dfe8db;
  border-radius: 999px;
  color: #2b342c;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  min-height: 30px;
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
}

.natural-thumb-option.active {
  background: #edf6e8;
  border-color: #2f6f3a;
  color: #24542d;
}

.natural-thumb-option input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.natural-thumb-option-error {
  color: #8b3124;
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 0.65rem;
}

.natural-thumb-price {
  margin-top: auto;
  padding-top: 1.1rem;
}

.natural-thumb-pix {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.natural-thumb-pix strong {
  color: #2f6f3a;
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1;
}

.natural-thumb-pix span {
  color: #6a7468;
  font-size: 1.18rem;
  font-weight: 700;
}

.natural-thumb-regular {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.natural-thumb-card-price {
  color: #24542d;
  font-size: 1.65rem;
  font-weight: 800;
}

.natural-thumb-old-price {
  color: #8d9689;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: line-through;
}

.natural-thumb-installments {
  color: #5d665a;
  display: block;
  font-size: 1.12rem;
  margin-top: 0.45rem;
}

.natural-thumb-consult {
  margin-top: auto;
  padding-top: 1rem;
}

.natural-thumb-consult strong {
  color: #1d2a20;
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.natural-thumb-consult a {
  color: #2f6f3a;
  font-weight: 800;
}

.natural-thumb-actions {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.1rem;
}

.natural-thumb-button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 1.22rem;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.8rem;
  text-align: center;
  text-transform: uppercase;
}

.natural-thumb-button-primary {
  background: #2f6f3a;
  border: 1px solid #2f6f3a;
  color: #fff;
}

.natural-thumb-button-primary:hover,
.natural-thumb-button-primary:focus {
  background: #24542d;
  border-color: #24542d;
  color: #fff;
}

.natural-thumb-button-secondary {
  background: #fff;
  border: 1px solid rgba(47, 111, 58, 0.22);
  color: #24542d;
}

.natural-thumb-button-secondary:hover,
.natural-thumb-button-secondary:focus {
  background: #edf6e8;
  color: #24542d;
}

.natural-thumb-button.loading {
  opacity: 0.72;
  pointer-events: none;
}

/* Modulos de vitrine: faz o card unico funcionar bem em mais vendidos, lançamentos e carrossel de semelhantes. */
.natural-thumb-module .natural-thumb-grid {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}

.natural-thumb-module .product-layout {
  display: flex;
  margin-bottom: 3rem;
}

.natural-thumb-module .product-layout > .natural-thumb,
.natural-thumb-carousel-module .product-layout > .natural-thumb {
  width: 100%;
}

.natural-thumb-module .natural-thumb {
  padding: 1rem;
}

.natural-thumb-module .natural-thumb-media {
  min-height: 240px;
}

.natural-thumb-module .natural-thumb-image {
  min-height: 215px;
}

.natural-thumb-module .natural-thumb-image img {
  max-height: 215px;
}

.natural-thumb-module .natural-thumb-title a {
  font-size: 1.32rem;
}

.natural-thumb-module .natural-thumb-description {
  min-height: 51px;
}

.natural-thumb-module .natural-thumb-pix strong {
  font-size: 2.45rem;
}

.natural-thumb-module .natural-thumb-button {
  font-size: 1.12rem;
}

/* Modulos de vitrine: em cards estreitos, empilha ações para evitar texto apertado. */
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .natural-thumb-module .natural-thumb-actions {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .natural-thumb {
    padding: 0.9rem;
  }

  .natural-thumb-media {
    min-height: 210px;
  }

  .natural-thumb-image {
    min-height: 190px;
  }

  .natural-thumb-image img {
    max-height: 190px;
  }

  .natural-thumb-title a {
    font-size: 1.22rem;
  }

  .natural-thumb-description,
  .natural-thumb-options {
    display: none;
  }

  .natural-thumb-pix strong {
    font-size: 2.25rem;
  }

  .natural-thumb-actions {
    grid-template-columns: 1fr;
  }
}
