.bp-container{max-width:1200px;margin:20px auto;padding:0 12px;font-family:inherit}
.bp-bar{display:flex;align-items:center;gap:12px;background:#111;color:#fff;border-radius:6px;padding:12px 16px;box-shadow:0 4px 14px rgba(0,0,0,0.15)}
.bp-bar__title{display:flex;flex-direction:column;gap:4px;min-width:180px;text-transform:uppercase;font-weight:700;font-size:13px}
.bp-bar__title-sub{font-size:11px;font-weight:600;text-transform:none;color:#f2f2f2}
.bp-form{flex:1;display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.bp-select select{min-width:120px;padding:10px 36px 10px 12px;border-radius:6px;border:1px solid #d9d9d9;background:#f3f6f9;color:#555;font-size:14px;height:38px;appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23666' d='M1.2 0l4.8 6 4.8-6z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;cursor:pointer}
.bp-select{position:relative}
.bp-btn{background:#ff6a00;color:#fff;border:none;border-radius:6px;padding:10px 18px;font-weight:700;text-transform:uppercase;letter-spacing:0.3px;cursor:pointer;transition:all 0.2s ease;font-size:13px;display:inline-flex;align-items:center;gap:6px}
.bp-btn:hover{background:#e85f00;transform:translateY(-1px)}
.bp-btn--ghost{background:transparent;border:1px solid #ff6a00;color:#ff6a00;padding:8px 12px;border-radius:4px;text-decoration:none;font-weight:700}
.bp-btn--ghost:hover{background:#ff6a00;color:#fff}
.bp-results{margin-top:24px;display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.bp-card{display:flex;flex-direction:column;border:1px solid #ebebeb;border-radius:8px;overflow:hidden;box-shadow:0 8px 18px rgba(0,0,0,0.05);background:#fff;min-height:100%}
.bp-card__image{background:#f6f7fb;text-align:center;padding:18px}
.bp-card__image img{max-width:100%;height:auto}
.bp-card__body{padding:14px 16px;display:flex;flex-direction:column;gap:10px;flex:1}
.bp-card__meta{list-style:none;padding:0;margin:0;display:flex;gap:10px;flex-wrap:wrap;color:#555;font-size:13px}
.bp-card__footer{margin-top:auto;display:inline-grid;justify-content:space-between;align-items:center;gap:10px}
.bp-card__price{font-size:18px;font-weight:800;color:#222}
.bp-empty{padding:18px;background:#fff4ec;border:1px solid #ffd7b8;border-radius:6px;color:#8a4b00}
@media (max-width:768px){.bp-bar{flex-direction:column;align-items:flex-start}.bp-form{width:100%}.bp-select select{width:100%}.bp-form{flex-direction:column;align-items:stretch}.bp-btn{width:100%;justify-content:center}}

/* === 2 productos por fila === */
.bp-results{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:24px;
}

/* En pantallas chicas: 1 por fila */
@media (max-width:768px){
  .bp-results{ grid-template-columns: 1fr; }
}

/* === Card horizontal (imagen izquierda / info derecha) === */
.bp-card{
  flex-direction:row;
  align-items:stretch;
  min-height:220px;
}

/* Columna imagen */
.bp-card__image{
  width:220px;              /* ajusta a gusto */
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;          /* en tu imagen se ve blanco */
  border-right:1px solid #f0f0f0;
}

/* Imagen consistente */
.bp-card__image img{
  width:100%;
  height:auto;
  max-height:180px;
  object-fit:contain;
}

/* Columna contenido */
.bp-card__body{
  flex:1;
  padding:18px 18px;
  gap:8px;
}

/* T�tulo como ?bloque? */
.bp-card__body h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  text-transform:uppercase;
  line-height:1.15;
}
.bp-card__body h3 a{ color:#111; text-decoration:none; }
.bp-card__body h3 a:hover{ text-decoration:underline; }

/* Specs m�s compactas */
.bp-card__specs{
  margin-top:4px;
  font-size:12px;
  color:#333;
}
.bp-spec{ margin:2px 0; }

/* Footer: precio y bot�n debajo (como la imagen) */
.bp-card__footer{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

/* Precio destacado */
.bp-card__price{
  font-size:18px;
  font-weight:900;
}

/* Bot�n ghost tipo ?agregar al carro? compacto */
.bp-btn--ghost{
  border-radius:4px;
  padding:8px 14px;
  font-size:12px;
}

/* === Ajuste m�vil: vuelve a vertical === */
@media (max-width:768px){
  .bp-card{ flex-direction:column; }
  .bp-card__image{
    width:100%;
    border-right:none;
    border-bottom:1px solid #f0f0f0;
  }
  .bp-card__image img{ max-height:220px; }
}

/* === Barra: distribuci�n correcta === */
.bp-bar{
  display:flex;
  align-items:center;
  gap:20px;
}

/* T�tulo fijo */
.bp-bar__title{
  flex:0 0 auto;
  min-width:210px;
}

/* Form ocupa TODO el espacio restante */
.bp-form{
  flex:1;
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

/* Cada select crece de forma uniforme */
.bp-select{
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}

.bp-select__image{
  width:50%;
  margin:0 auto 16px;
}

.bp-select__image img{
  display:block;
  width:100%;
  height:auto;
  border-radius:6px;
}

/* Select llena su columna */
.bp-select select{
  width:100%;
  height:36px;
  font-size:13px;
}

/* Bot�n fijo, alineado a la derecha */
.bp-btn{
  flex:0 0 auto;
  height:36px;
  padding:0 18px;
  font-size:12px;
  border-radius:6px;
}

@media (max-width:768px){
  .bp-select__image{
    width:100%;
    margin:0 0 16px;
  }

  .bp-bar{
    flex-direction:column;
    align-items:stretch;
  }

  .bp-bar__title{
    min-width:0;
  }

  .bp-form{
    flex-direction:column;
  }

  .bp-select,
  .bp-select select,
  .bp-btn{
    width:100%;
  }
}
