/* BUSCADOR NAVBAR */
.search-bar {
  width: 100%;
  max-width: 720px;
}
/* Caja principal */
.ml-search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
  /* Borde azul externo */
  border: 2px solid #1875bc;
  /* Sombra suave */
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
/* Input */
.ml-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 15px;
  color: #333;
}
/* Placeholder */
.ml-search-box input::placeholder {
  color: #888;
  font-weight: 400;
}
/* Línea divisora vertical */
.ml-search-box .divider {
  width: 1px;
  height: 60%;
  background: #ddd;
}
/* Botón lupa */
.ml-search-box button {
  border: none;
  background: transparent;
  padding: 0 16px;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}
/* Hover lupa */
.ml-search-box button:hover {
  color: #000;
}
/* Focus real (cuando escribes) */
.ml-search-box:focus-within {
  border: 2px solid #3483fa; /* Azul MercadoLibre */
  box-shadow: 0 0 0 3px rgba(52,131,250,0.25);
}
/* Responsive */
@media (max-width: 768px) {
  .search-bar {
    max-width: 100%;
  }
}
.logo-icon{
  width: 32px;
  height: 32px;
}
.drop { 
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7)); 
}
.text-white {
    --bs-text-opacity: 1;
    color: rgb(253 253 253 / 98%) !important;
}
.main-wrapper{
  max-width:1600px;
  margin:auto;
  padding:0 40px;
}
@media(max-width:992px){
  .main-wrapper{ padding:0 20px; }
}
@media(max-width:576px){
  .main-wrapper{ padding:0 12px; }
}
/* SLIDER HOME SOLO IMAGEN */
.banner-link{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
}
.banner-slide{
  height:420px;
  width:100%;
  background-size:cover;
  background-position:center;
  border-radius:18px;
  cursor:pointer;
  transition:0.3s ease;
}
/* Hover tipo ecommerce */
.banner-slide:hover{
  transform:scale(1.01);
  filter:brightness(0.95);
}
/* Responsive móvil */
@media(max-width:768px){
  .banner-slide{
    height:250px;
  }
}
.badge-discount{
  position:absolute;
  top:10px;
  left:10px;
  background:#dc3545;
  color:white;
  font-size:13px;
  font-weight:bold;
  padding:5px 10px;
  border-radius:10px;
}
/* Slider Amazon */
.amazon-slider-wrapper{ position:relative; }
.amazon-slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 5px 20px;
}
.amazon-slider::-webkit-scrollbar{ display:none; }
.amazon-card{
  min-width:230px;
  max-width:230px;
  background:#fff;
  border-radius:18px;
  border:1px solid #eee;
  flex-shrink:0;
  transition:.2s;
}
.amazon-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.amazon-img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.amazon-body{ padding:12px; }
.amazon-title{
  font-size:14px;
  font-weight:600;
  min-height:42px;
}
.amazon-price{
  font-size:16px;
  font-weight:800;
  color:#198754;
}
.amazon-arrow{
  position:absolute;
  top:35%;
  transform:translateY(-50%);
  background:white;
  border:none;
  font-size:32px;
  width:45px;
  height:45px;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,.2);
  cursor:pointer;
  z-index:20;
}
.amazon-arrow.left{ left:-18px; }
.amazon-arrow.right{ right:-18px; }
/* Botón filtros móvil */
.filtro-btn-mobile{
  border-radius:14px;
  padding:14px 18px;
  font-weight:700;
  font-size:16px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
/* GRID estilo Amazon */
.amazon-grid-card{
  background:#fff;
  border-radius:18px;
  border:1px solid #eee;
  overflow:hidden;
  transition:.25s;
  display:flex;
  flex-direction:column;
}
.amazon-grid-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.amazon-grid-img{
  width:100%;
  height:170px;
  object-fit:cover;
}
.amazon-grid-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}
.amazon-grid-title{
  font-size:14px;
  font-weight:600;
  min-height:20px;
}
.amazon-grid-price{
  font-size:16px;
  font-weight:800;
  color:#198754;
  margin-bottom:10px;
}
.amazon-grid-actions{
  display:flex;
  gap:8px;
  margin-top:auto;
}
@media(max-width:768px){
  .amazon-card{
    min-width:75%;
    max-width:75%;
  }
  .amazon-arrow{ display:none; }
}
  /* Miniaturas scroll vertical */
  .thumbs-box {
    max-height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 5px;
  }

  .thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
  }

  .thumb-img:hover { border: 2px solid #3483fa; transform: scale(1.05); }
  .active-thumb { border: 2px solid #3483fa !important; }

  /* Imagen principal */
  .main-img-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    position: relative;
    cursor: crosshair;
  }

  .main-img { max-height: 450px; object-fit: contain; width:100%; }

  /* Zoom al lado */
  .zoom-box {
    position: absolute;
    top: 0;
    right: -250px;
    width: 250px;
    height: 250px;
    border: 1px solid #ddd;
    display: none;
    background-repeat: no-repeat;
    background-size: 200%; /* zoom 2x */
    z-index: 100;
  }

  /* Móvil: miniaturas horizontales */
  @media (max-width: 767px) {
    .thumbs-box {
      flex-direction: row;
      overflow-x: auto;
      max-height: 100px;
      padding-bottom: 5px;
    }
    .thumb-img {
      width: 70px;
      height: 70px;
    }
    .zoom-box {
      right: auto;
      bottom: -260px;
      top: auto;
    }
  }
    /* Miniaturas scroll vertical */
  .thumbs-box {
    max-height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 5px;
  }

  .thumb-img {
    width: 150px;
    height: 130px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
  }

  .thumb-img:hover { border: 2px solid #3483fa; transform: scale(1.05); }
  .active-thumb { border: 2px solid #3483fa !important; }