/* === DRIPBOX WIRECUTTER STYLE === */
.dripbox-wirecutter-wrapper {
  font-family: "Inter", system-ui, sans-serif;
  margin: 70px auto;
  max-width: 900px;
}

/* === TÍTULO DA SEÇÃO === */
.dtw-heading {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0e0e0;
}

.dtw-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 6px;
  background: #000;
}

/* === LISTA === */
.dtw-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* === ITEM PRINCIPAL === */
.dtw-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dtw-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.08);
}

/* === IMAGEM === */
.dtw-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dtw-left img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* === BLOCO CENTRAL === */
.dtw-center {
  flex: 1;
  margin-left: 20px;
}

.dtw-badge {
  font-size: 18px;
  font-weight: 700;
  color: #c00;
  margin-bottom: 4px;
}

.dtw-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.dtw-why {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* === VERDICT / RIGHT === */
.dtw-middle {
  flex: 0 0 auto;
  max-width: 250px;
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  padding-right: 20px;
  margin-left: auto;
}

.dtw-right {
  flex-shrink: 0;
}

/* === BOTÃO === */
.dtw-btn {
  display: inline-block;
  background: #d7000f;
  color: #fff !important;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 50px;
  text-decoration: none;
  box-shadow: 0 4px 0 #9a0000;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.dtw-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* === RESPONSIVO TABLETS === */
@media (max-width: 900px) {
  .dripbox-wirecutter-wrapper {
    margin: 50px 20px;
  }
  
  .dtw-heading {
    font-size: 17px;
    margin-bottom: 30px;
  }
  
  .dtw-middle {
    max-width: 180px;
    font-size: 14px;
    padding-right: 15px;
  }
  
  .dtw-btn {
    padding: 7px 40px;
  }
}

/* === MOBILE: REORDENA COM FLEXBOX ORDER === */
@media (max-width: 700px) {
  .dtw-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px 20px;
    gap: 0 !important;
  }
  
  /* 🎯 ORDEM VISUAL NO MOBILE */
  .dtw-center { order: 1; } /* Badge + Título PRIMEIRO */
  .dtw-left { order: 2; }   /* Imagem SEGUNDO */
  .dtw-middle { order: 3; } /* Verdict TERCEIRO */
  .dtw-right { order: 4; }  /* Botão POR ÚLTIMO */
  
  /* FORÇA todos os filhos diretos sem espaço */
  .dtw-item > * {
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
  }
  
  /* Badge "Best Overall" */
  .dtw-badge {
    font-size: 16px;
    font-weight: 700;
    color: #c00;
    margin-bottom: 8px !important;
  }
  
  /* Título do produto */
  .dtw-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px !important;
  }
  
  .dtw-center {
    width: 100%;
    margin-bottom: 12px !important;
  }
  
  /* Container da Imagem */
  .dtw-left {
    width: 100%;
    display: flex;
    justify-content: center;
    background: white !important;
    border-radius: 8px;
    padding: 16px !important;
    margin-bottom: 12px !important;
  }
  
  .dtw-left img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
  }
  
  /* Subtítulo */
  .dtw-middle {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #222 !important;
    text-align: center !important;
    width: 100% !important;
    line-height: 1.3 !important;
    display: block !important;
    margin: 0 0 50px 0 !important;
    padding: 0 !important;
    flex: none !important;
    max-width: none !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  /* Container do Botão */
  .dtw-right {
  width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none !important;
  min-height: auto !important; /* 👈 ADICIONE */
  height: auto !important; /* 👈 ADICIONE */
}
  
  /* Botão */
.dtw-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 90% !important;
  max-width: 300px !important;
  height: 48px !important; /* 👈 altura fixa */
  background: #d7000f !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 0 !important; /* 👈 ZERE o padding */
  text-decoration: none !important;
  box-shadow: 0 4px 0 #9a0000 !important;
  margin: 0 auto 16px auto !important; /* 👈 centraliza com margin auto */
}
  
  /* FORÇA todos os links âncora */
  a.dtw-btn,
  .dtw-btn.see-it-anchor,
  .see-it-anchor.dtw-btn {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}