/* ==============================================
   DISEÑO EXACTO PROPUESTA 2 MEGAFRENOS
   ============================================== */

/* 1. La Tarjeta (Contenedor Blanco) */
.custom-card-container {
    background-color: #f6f6f6;
    border-radius: 20px;
    /* Bordes muy redondeados como la propuesta */
    height: 100%;
    border: none;
    /* Sin borde gris, usamos sombra */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
    /* Sombra suave */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left !important;
    position: relative;
    overflow: visible;
    /* Permitir que la sombra del botón se vea bien */
    margin-bottom: 30px;
    max-width: 270px;
}

.featured-products-custom .products{
    margin-left: 350px;
    margin-right: 350px;
    margin-top: 50px;
}

/* .custom-card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

/* 2. Imagen */
.custom-card-img-area {
    text-align: center;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-card-img {
    /*! max-height: 150px; */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Elimina fondo blanco si la web es gris */
}

/* 3. Títulos y Textos */
.custom-card-body {
    width: 100%;
    padding: 20px 15px;
}

.custom-card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: #333;
}

.custom-card-title a {
    color: #333 !important;
    text-decoration: none !important;
}

.custom-card-reference {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 400;
    text-transform: uppercase;
}

/* 4. Precios (Rojo Intenso) */
.custom-card-prices {
    margin-bottom: 8px;
}

.custom-price-current {
    color: #D0121A;
    /* Rojo Propuesta */
    font-size: 18px;
    font-weight: 800;
}

.custom-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

/* 5. Estrellas (Rating) */
.custom-card-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.custom-stars-wrapper {
    color: #FFC107;
    /* Color Oro */
    margin-right: 5px;
    letter-spacing: 1px;
    font-size: 35px !important;
}

.custom-star.empty {
    color: #e3e3e3;
    /* Estrellas vacías en gris claro */
    font-size: 35px !important;
}

.custom-reviews-count {
    color: #999;
    font-size: 12px;
}

/* 6. Botón (Rojo Pastilla) */
.custom-card-footer {
    margin-top: auto;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}

.custom-btn-add {
  /* background-color: #D0121A !important; */
  color: #333 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 15px 25px;
  font-weight: 600;
  font-size: 18px;
  /* box-shadow: 0 4px 10px rgba(208, 18, 26, 0.3); */
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 140px;
}

.custom-btn-add:hover {
    background-color: #a50e14 !important;
    /* Rojo más oscuro */
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(208, 18, 26, 0.4);
    color: #fff !important;
}

@media (max-width: 767px) {
    .featured-products-custom .products{
        margin: 0px;
        margin-top: 50px;
    }
}

.btn-cotizar{
    display: none !important;
}