.product-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: 1em 0;
  margin-bottom: 4em !important;
}


.product-table thead th {
  background-color: #f0f0f0;
  text-align: left;
  padding: 0.75em 1em;
  font-weight: 600;
  border-bottom: 2px solid #ccc;
}

.product-table tbody tr {
  border-bottom: 1px solid #ddd;
}

.product-table td {
  padding: 0.75em 1em;
  vertical-align: middle;
  position: relative;
}


/* Coluna posição: centro do badge */
.cell-position {
  width: 3.5em;
  text-align: center;
  vertical-align: middle;
}

/* Badge fica aqui, circulo laranja */
.badge {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  font-weight: 700;
  font-size: 0.9em;
  padding: 0.3em 0.7em;
  border-radius: 50%;
  user-select: none;
  min-width: 1.8em;
  text-align: center;
  line-height: 1.2em;
}

/* Imagem com borda arredondada */
.cell-image img {
  display: block;
  max-width: 80px;
  height: auto;
}



.cell-info-modelo {
  display: flex;
  margin-bottom: -25px;
  margin-top: 25px;
}

.cell-info-destaque {
  display: flex;
}

.cell-info .destaque {
  margin: 0;
  color: #555;
  font-size: 0.9em;
  font-weight: 400;
}


/* Botões Amazon */

a.btn.amz {
  background-color: black;
  box-shadow: 0px 0px 8px 0px #0000001c;
}

.hxd-prod__botao.amz {
  background-color: black;
  box-shadow: 0px 0px 8px 0px #0000001c;
}


/* Botões ML */

a.btn.ml {
  color: #0543AB !important;
  background-color: #ffd814;
  box-shadow: 0px 0px 8px 0px #0000001c;
}

.hxd-prod__botao.ml {
  color: #0543AB !important;
  background-color: #ffd814;
  box-shadow: 0px 0px 8px 0px #0000001c;
}

/* Botões shopee */

a.btn.shp {
  color: #ffffff !important;
  background-color: #da3529;
  box-shadow: 0px 0px 8px 0px #0000001c;
}

.hxd-prod__botao.shp {
  color: #ffffff !important;
  background-color: #da3529;
  box-shadow: 0px 0px 8px 0px #0000001c;
}

/* Botões empilhados */
.cell-buttons .btn {
  display: block;
  margin: 0 0 0.5em 0;
  width: 100%;
  text-align: center;
  background-color: var(--button-bg-color, #398f4d);
  border-radius: 5px;
  color: var(--button-text-color, #fff) !important;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: .8rem 1.4rem;
  text-decoration: none !important;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}

.cell-buttons {
  min-width: 140px;
}

.cell-buttons .btn:hover,
.cell-buttons .btn:focus {
  opacity: .9;
  outline: none;
  transform: translateY(-1px);
}

.cell-buttons .btn[href*="link.amazon/"]::before,
.cell-buttons .btn[href*="amazon.com.br"]::before,
.cell-buttons .btn[href*="amzn.to"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(https://topbusca.com.br/wp-content/plugins/hxdevs-blocks-1/assets/img/amz-color.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
}

.cell-buttons .btn[href*="mercadolivre.com"]::before,
.cell-buttons .btn[href*="meli.la"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(https://topbusca.com.br/wp-content/plugins/hxdevs-blocks-1/assets/img/ml-color.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 4px;
}

.cell-buttons .btn[href*="s.shopee.com.br"]::before,
.cell-buttons .btn[href*="shopee.com.br"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(https://topbusca.com.br/wp-content/plugins/hxdevs-blocks-1/assets/img/shp-color.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -4px;
}

/* Responsividade */
@media (max-width: 600px) {

  .product-table,
  .product-table tbody,
  .product-table tr,
  .product-table td {
    display: block;
    width: 100%;
  }

  .product-table tr {
    margin-bottom: 2.5em;
    border: 1px solid #ddd !important;
    border-radius: 4px;
  }

  .cell-position {
    text-align: left;
    margin-bottom: 0.5em;
  }

  .cell-image {
    margin-bottom: 0.5em;
    text-align: center;
  }

  .cell-buttons .btn {
    margin-bottom: 0.6em;
    font-size: 18px;

  }

  .cell-image img {
    display: block;
    max-width: 100%;
    height: auto;
    justify-self: center;
    width: 160px;
  }

  .cell-info-modelo,
  .cell-info-destaque {
    text-align: center;
  }
}



thead {
  display: none;
}

td.cell-info {
  display: flex;
}

/* Para a linha da tabela, definir posição relativa */
.product-table tbody tr {
  position: relative;
}

/* Posicionar o badge absoluto no canto superior esquerdo da célula da imagem */
td.cell-position {
  position: absolute;
  top: 10px;
  /* ajuste fino vertical */
  left: 10px;
  /* ajuste horizontal: o tamanho da célula posição + margem até imagem */
  z-index: 10;
  width: auto;
  /* tira largura fixa para não atrapalhar */
  text-align: left;
  /* alinhar conteúdo à esquerda */
  padding: 0;
}

/* Deixar o badge do tamanho original */
td.cell-position .badge {
  position: static;
  /* evitar conflito */
  display: inline-block;
}














.hxdevs-prod-box {
  position: relative;
  align-items: center;
  background: #f5f8fa;
  border: 1px dashed #e0e0e0;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: .6rem;
  padding: 50px 20px 30px 20px;
  width: 100%;
}


.tag-texto {
  position: absolute;
  top: 6px;
  left: 6px;
  background-color: var(--tag-color, #0087f4);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1;
  line-height: 1em;
}


.hxd-prod__imagem {
  background: #fff;
  border-radius: 4px;
  flex-shrink: 0;
  width: 80px;
}

.hxd-prod__text-area {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  flex-basis: min-content;
}

.hxd-prod__titulo {
  color: #222;
  font-size: 1.2em;
  font-weight: 700;
}

.hxd-prod__subtitulo {
  align-self: flex-start;
}

.hxd-prod__botao {
  background-color: var(--button-bg-color, #398f4d);
  border-radius: 5px;
  color: var(--button-text-color, #fff) !important;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  padding: .8rem 1.4rem;
  text-decoration: none !important;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}



a.hxd-prod__botao[href*="link.amazon/"]::before,
a.hxd-prod__botao[href*="amazon.com.br"]::before,
a.hxd-prod__botao[href*="amzn.to"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(https://topbusca.com.br/wp-content/plugins/hxdevs-blocks-1/assets/img/amz-color.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
}


a.hxd-prod__botao[href*="mercadolivre.com"]::before,
a.hxd-prod__botao[href*="meli.la"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(https://topbusca.com.br/wp-content/plugins/hxdevs-blocks-1/assets/img/ml-color.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 4px;
}

a.hxd-prod__botao[href*="s.shopee.com.br"]::before,
a.hxd-prod__botao[href*="shopee.com.br"]::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(https://topbusca.com.br/wp-content/plugins/hxdevs-blocks-1/assets/img/shp-color.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -4px;
}

.hxd-prod__botao:hover {
  opacity: .9;
  outline: none;
  transform: translateY(-1px);
}

.hxd-prod__cta-wrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 14px;
  text-align: center;
}

.hxd-prod__amazon {
  color: #6c7a89;
  flex-basis: 100%;
  font-size: .75em;
  text-align: center;
  width: 100%;
}

@media(max-width: 768px) {
  .hxdevs-prod-box {
    flex-direction: column;
    gap: 20px;
  }

  .hxd-prod__imagem {
    align-self: center;
    width: 160px;
  }

  .hxd-prod__subtitulo {
    align-self: center;

  }

  .hxd-prod__cta-wrapper {
    gap: 14px;
    width: 100%;
  }

  .hxd-prod__botao {
    font-size: 18px;
    width: 100%;
  }

  .prc-buttons {
    flex-direction: column;
    align-items: center;
  }
}



.prc-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0 0 24px 0;
  padding: 20px 0;
}

.prc-pros strong,
.prc-cons strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.prc-pros ul,
.prc-cons ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.prc-pros li,
.prc-cons li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  color: #292929;
  FONT-WEIGHT: 600;
}

.prc-pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 16px;
}

.prc-cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: bold;
  font-size: 16px;
}



/* Responsivo */
@media (max-width: 768px) {


  .prc-pros-cons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .prc-pros-cons {
    gap: 16px;
  }
}

.review {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prc-accordions details>div {
  padding: 6px;
}

.prc-accordions {
  margin-bottom: 2rem;
}

.prc-accordions details {
  margin-bottom: 8px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.prc-accordions summary {
  font-weight: 600;
  cursor: pointer;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  position: relative;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prc-accordions summary:hover {
  background: #e9ecef;
}

.prc-accordions summary {
  list-style: none;
}

.prc-accordions summary::-webkit-details-marker {
  display: none;
}




.prc-accordions details[open]>div {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.chevron-icon {
  transition: transform 0.3s ease;
}

details[open] .chevron-icon {
  transform: rotate(90deg);
}




.prc-tech-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.prc-tech-specs-table th,
.prc-tech-specs-table td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
  /* Adicionado para responsividade */
  word-break: normal;
}

.prc-tech-specs-table th {
  font-weight: 600;
  color: #333;
  /* Alterado: width auto ou min-width funciona melhor que 35% fixo no mobile */
  width: 130px;
  /* ESSENCIAL: Permite que o texto quebre linha */
  white-space: normal;
  background-color: transparent;
}

.prc-tech-specs-table td {
  color: #555;
  background-color: transparent;
}

/* Alternância de linha para melhor leitura */
.prc-tech-specs-table tr:nth-child(even) {
  background-color: #fafafa;
}

.prc-tech-specs-table tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
  .prc-tech-specs-table th {
    width: 100px;
    padding: 10px 8px;
    font-size: 14px;
  }

  .prc-tech-specs-table td {
    padding: 10px 8px;
    font-size: 14px;
  }
}

.hxdevs-prod-rev {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-bottom: 2px solid #404040;
}

.product-table a {
  color: inherit;
  text-decoration: inherit;
}

.prc-pros {
  background-color: #e7ffe8;
  padding: 24px;
  border-radius: 6px;
}

.prc-cons {
  background-color: #ffeee7;
  padding: 24px;
  border-radius: 6px;
}

/* Imagem e título clicáveis */
a.hxd-prod__imagem-link {
  display: contents;
  flex-shrink: 0;
  cursor: pointer;
}

a.hxd-prod__imagem-link .hxd-prod__imagem {
  transition: opacity 0.2s ease;
}

a.hxd-prod__imagem-link:hover .hxd-prod__imagem {
  opacity: 0.85;
}

a.hxd-prod__text-area {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  flex-basis: min-content;
  cursor: pointer;
}

a.hxd-prod__text-area .hxd-prod__titulo {
  transition: color 0.2s ease;
}

a.hxd-prod__text-area:hover .hxd-prod__titulo {
  color: #0073aa;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
  background-color: #f7f7f7;
  border-left: 4px solid #0087f4;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.5;
}

.affiliate-disclosure p {
  margin: 0;
}

.affiliate-disclosure a {
  color: #0087f4;
  white-space: nowrap;
}

.affiliate-disclosure a:hover {
  color: #0073aa;
}