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

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

/* linha preta curta no início */
.dtw-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;       /* comprimento da linha preta */
  height: 6px;       /* espessura */
  background: #000;  /* cor preta */
}

.dtw-list {
  display: flex;
  flex-direction: column;
  gap: 5px;   /* ← ESTA LINHA controla o espaço entre os produtos */
}

.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);
}


/* NOTE:
   Para usar imagens retangulares (em vez de quadradas),
   substitua na classe 
   .dtw-left img:
      width: 120px;
      height: 80px;
      object-fit: cover;
*/


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

.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;
}

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

.dtw-btn {
  display: inline-block;
  background: #d7000f;
  color: #fff !important;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 50px;   /* ← esta linha define altura e largura horizontal */
  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 */
@media (max-width: 700px) {
  .dtw-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .dtw-left img {
    width: 100%;
    height: auto;
  }
  .dtw-right {
    width: 100%;
  }
  .dtw-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}
