        /* ===== SECCIÓN DESTACADA ===== */
        .seccion-destacada {
            background: #fff;
            padding: 80px 0;
            min-height: 100vh;
            display: block;
        }

        /* ===== PRODUCTOS MÁS VENDIDOS ===== */
        .productos-vendidos-wrapper {
            margin-bottom: 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 60px;
        }

        .productos-title {
            font-size: clamp(2.2rem, 4.5vw, 3rem);
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
            text-align: left;
            padding-left: 20px;
        }

        /* Contenedor del Carrusel */
        .carousel-productos-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 50px;
            justify-content: center;
            padding: 0 30px;
        }

        /* Botones de Navegación */
        .carousel-btn {
            background: #fff;
            border: 2px solid #000;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            z-index: 10;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .carousel-btn:hover {
            background: #000;
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-btn i {
            font-size: 1.5rem;
        }

        /* Carrusel */
        .productos-carousel {
            display: flex;
            gap: 30px;
            overflow: hidden;
            scroll-behavior: smooth;
            padding: 40px 20px;
            flex: 1;
            max-width: 1200px;
            position: relative;
            cursor: grab;
        }

        .productos-carousel:active {
            cursor: grabbing;
        }

        .productos-carousel::-webkit-scrollbar {
            display: none;
        }

        /* Tarjetas de Producto */
        .producto-card {
            flex: 0 0 280px;
            height: 380px;
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-decoration: none;
            opacity: 0.6;
            transform: scale(0.9);
        }

        .producto-card:hover {
            transform: translateY(-15px) scale(0.95);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            opacity: 1;
        }

        .producto-card.is-focused {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .producto-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .producto-card:hover img {
            transform: scale(1.05);
        }

        /* Controles de Reproducción */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .carousel-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #000;
            width: 30px;
            border-radius: 5px;
        }

        /* =====================================================================
           QUERIES DE ADAPTABILIDAD
           ===================================================================== */

        /* Pantallas Medianas (Laptops 1366px - 1500px) */
        @media (max-width: 1500px) {
            .productos-vendidos-wrapper {
                max-width: 1200px;
            }
            
            .carousel-productos-container {
                gap: 40px;
                padding: 0 20px;
            }
        }

        /* Tablets y Pantallas Pequeñas */
        @media (max-width: 1024px) {
            .carousel-btn {
                width: 50px;
                height: 50px;
            }

            .carousel-btn i {
                font-size: 1.2rem;
            }

            .carousel-productos-container {
                gap: 20px;
                padding: 0 15px;
            }

            .producto-card {
                flex: 0 0 250px;
                height: 340px;
                padding: 25px;
            }

            .productos-title {
                text-align: center;
            }
        }

        /* Tablets pequeñas */
        @media (max-width: 768px) {
            .productos-vendidos-wrapper {
                margin-top: 40px;
                padding: 0 10px;
            }

            .productos-title {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 15px;
                padding-left: 10px;
                padding-right: 10px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
            }

            .carousel-btn i {
                font-size: 1.1rem;
            }

            .productos-carousel {
                gap: 20px;
                padding: 30px 10px;
            }

            .producto-card {
                flex: 0 0 220px;
                height: 300px;
                padding: 20px;
            }

            .carousel-controls {
                margin-top: 20px;
            }
        }

        /* Móviles */
        @media (max-width: 480px) {
            .seccion-destacada {
                padding: 40px 0;
            }

            .productos-vendidos-wrapper {
                margin-top: 20px;
                margin-bottom: 10px;
            }

            .productos-title {
                font-size: 1.7rem;
                margin-bottom: 10px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .carousel-productos-container {
                gap: 15px;
                padding: 0 10px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                border-width: 1.5px;
            }

            .carousel-btn i {
                font-size: 1rem;
            }

            .productos-carousel {
                gap: 15px;
                padding: 20px 5px;
                scroll-snap-type: x mandatory;
            }

            .producto-card {
                flex: 0 0 calc(100% - 100px);
                max-width: 280px;
                height: 350px;
                padding: 25px;
                scroll-snap-align: center;
                margin: 0 auto;
            }

            .carousel-indicators {
                gap: 6px;
            }

            .indicator {
                width: 8px;
                height: 8px;
            }

            .indicator.active {
                width: 24px;
            }
        }

        /* Móviles muy pequeños */
        @media (max-width: 375px) {
            .producto-card {
                flex: 0 0 calc(100% - 80px);
                max-width: 260px;
                height: 320px;
                padding: 20px;
            }

            .productos-title {
                font-size: 1.5rem;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
            }

            .carousel-btn i {
                font-size: 0.9rem;
            }
        }
























/* ===== ÚLTIMA HORA (BLOG) - RESPONSIVO TOTAL ===== */
.ultima-hora-wrapper {
  padding: 60px 20px;
  border-top: 1px solid #e0e0e0;
  max-width: 1400px;
  margin: 0 auto 80px auto;
}

.ultima-hora-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}

.ultima-hora-tag {
  color: #007bff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.ultima-hora-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); 
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.ultima-hora-desc {
  color: #666;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BOTÓN BLOG */
.btn-leer-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #28a745;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #28a745;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.btn-leer-blog:hover {
  background: #28a745;
  color: #fff;
  transform: translateX(5px);
}

/* BLOG CARDS - AJUSTE DE TAMAÑO */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.blog-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #111;
  flex-grow: 1;
}

.blog-link {
  color: #007bff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  position: relative;
}

.blog-link::after {
  content: '→';
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-link:hover {
  color: #0056b3;
}

.blog-link:hover::after {
  transform: translateX(5px);
}

/* =====================================================================
   QUERIES DE ADAPTABILIDAD
   ===================================================================== */

/* Pantallas Medianas (Laptops 1366px - 1500px) */
@media (max-width: 1500px) {
  /* Productos */
  .productos-vendidos-wrapper {
    max-width: 1200px;
  }
  
  .carousel-productos-container {
    gap: 40px;
    padding: 0 20px;
  }

  /* Blog */
  .ultima-hora-wrapper {
    max-width: 1200px;
  }
  
  .ultima-hora-content {
    padding-right: 15px;
  }
}

/* Tablets y Pantallas Pequeñas */
@media (max-width: 1024px) {
  /* Productos */
  .carousel-btn {
    width: 50px;
    height: 50px;
  }

  .carousel-btn i {
    font-size: 1.2rem;
  }

  .carousel-productos-container {
    gap: 20px;
    padding: 0 15px;
  }

  .producto-card {
    flex: 0 0 250px;
    height: 340px;
    padding: 25px;
  }

  .productos-title {
    text-align: center;
  }

  /* Blog */
  .blog-image {
    height: 160px;
  }

  .blog-content h4 {
    font-size: 0.95rem;
  }
}

/* Tablets y Pantallas Pequeñas (Pasa de 2 columnas a 1 columna) */
@media (max-width: 991px) {
  /* Blog */
  .ultima-hora-content {
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
    padding-right: 0;
  }
  
  .ultima-hora-wrapper {
    margin-bottom: 60px;
    padding: 50px 30px;
  }

  /* Forzar centrado completo en tablet */
  .ultima-hora-wrapper .row {
    justify-content: center;
  }

  .ultima-hora-wrapper .col-xl-8 .row {
    justify-content: center;
  }

  .blog-card {
    max-width: 400px;
    margin: 0 auto 25px auto;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 22px;
  }

  .blog-content h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .blog-link {
    font-size: 1rem;
  }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
  /* Productos */
  .productos-vendidos-wrapper {
    margin-top: 40px;
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .productos-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
  }

  .carousel-btn i {
    font-size: 1.1rem;
  }

  .productos-carousel {
    gap: 20px;
    padding: 30px 10px;
  }

  .producto-card {
    flex: 0 0 220px;
    height: 300px;
    padding: 20px;
  }

  .carousel-controls {
    margin-top: 20px;
  }

  /* Blog */
  .ultima-hora-wrapper {
    padding: 40px 20px;
  }

  .blog-card {
    max-width: 380px;
    margin: 0 auto 22px auto;
  }

  .blog-image {
    height: 185px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h4 {
    font-size: 1rem;
  }
}

/* Ajuste Móvil Estricto */
@media (max-width: 767px) {

  /* Apunta a la fila que contiene las .blog-card */
  .ultima-hora-wrapper .row,
  .ultima-hora-wrapper .col-xl-8 .row,
  .ultima-hora-wrapper .row.g-4,           /* si usas g-4, g-3 etc de Bootstrap 5 */
  .ultima-hora-wrapper [class*="row"] {
    --bs-gutter-x: 0 !important;           /* elimina espaciado horizontal Bootstrap */
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
    display: flex !important;
  }

  /* Cada columna que envuelve una card */
  .ultima-hora-wrapper .col-12,
  .ultima-hora-wrapper .col-sm-6,
  .ultima-hora-wrapper .col-md-6,
  .ultima-hora-wrapper [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 380px;                      /* o el ancho que prefieras */
    flex: 0 0 auto !important;
  }

  /* La card misma */
  .blog-card {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    max-width: 360px;                      /* ajusta según diseño */
  }
}

/* Móviles */
@media (max-width: 480px) {
  .ultima-hora-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ultima-hora-wrapper .container,
  .ultima-hora-wrapper .container-fluid,
  .ultima-hora-wrapper .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .blog-card {
    margin: 0 auto 25px auto !important;
    display: block !important;
    width: calc(100% - 40px) !important;   /* deja ~20px a cada lado */
    max-width: 360px !important;
  }
}

/* Móviles muy pequeños */
@media (max-width: 375px) {
  /* Productos */
  .producto-card {
    flex: 0 0 calc(100% - 80px);
    max-width: 260px;
    height: 320px;
    padding: 20px;
  }

  .productos-title {
    font-size: 1.5rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn i {
    font-size: 0.9rem;
  }

  /* Blog */
  .ultima-hora-wrapper {
    padding: 30px 0;
    margin-bottom: 35px;
  }

  .ultima-hora-content {
    margin-bottom: 35px;
    padding: 0 15px;
  }

  .ultima-hora-title {
    font-size: 1.5rem;
  }

  .ultima-hora-desc {
    font-size: 0.92rem;
  }

  .btn-leer-blog {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .blog-card {
    max-width: 320px;
    width: calc(100% - 30px);
    margin: 0 auto 20px auto;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-content h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .blog-link {
    font-size: 0.9rem;
  }
}