    /* Estilos para el mensaje de bienvenida */
    .welcome-message {
        position: relative;
        z-index: 1; /* Por encima del banner pero debajo del sidebar */
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        margin: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        box-sizing: border-box;
    }

    .welcome-message h1 {
        margin: 0;
        font-size: 2.5rem;
        color: #333;
    }

    /* Contenedor principal que contendrá el banner y el mensaje */
    /*min-height: calc(100vh - 60px);*/
    .main-banner {
        position: relative;
        width: 100%;
        margin: 0;
        z-index: 1; /* Por debajo del sidebar y overlay */
        display: flex;
        flex-direction: column;
    }

    .banner-container {
        position: relative;
        width: 100%;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /*.banner-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        top: 0;
        left: 0;
        display: block;
    }*/

    .banner-container > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        top: 0;
        left: 0;
        display: block;
    }


    /* Contenido de la página de inicio */
    .home-content {
        position: relative;
        z-index: 2;
        background: #fff;
        padding: 40px 20px;
        margin-top: 0;
        border-radius: 0;
        min-height: auto;
    }

    /* Asegurarse de que el contenido del wrapper no tenga fondo en la página de inicio */
    body:has(.home-content) .content-wrapper {
        background: transparent;
        padding: 0;
    }


    .my-content {
        min-height: 100vh;           /* ocupa toda la pantalla */
        display: flex;
        justify-content: center;     /* centra verticalmente */
        align-items: center;         /* centra horizontalmente */
      }
      
      .my-container {
        display: flex;
        flex-direction: column;      /* pone uno debajo del otro */
        gap: 20px;                   /* espacio entre divs */
      }
      
      .product-img-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 1 / 1; /* cuadrado, podés ajustarlo */
      }
        
      /*
      .product-img-container .product-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        transition: opacity 0.4s ease-in-out;
      }
    */
      .product-img-container .product-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;  /* <-- se ajusta completa */
      }
      
      
      .product-img-container .img-default {
        opacity: 1;
        z-index: 1;
      }
      
      .product-img-container .img-hover {
        opacity: 0;
        z-index: 2;
      }
      
      .product-img-container:hover .img-default {
        opacity: 0;
      }
      
      .product-img-container:hover .img-hover {
        opacity: 1;
      }

      /* Estilos para el precio del producto */
      .product-price {
        font-family: Arial, sans-serif;
        font-size: 1.25rem;
        font-weight: bold;
        color: #333;
        margin: 10px 0;
        letter-spacing: normal;
        line-height: 1.2;
      }
      
      .product-card .btn {
        background-color: #f0f0f0; /* gris claro */
        color: #333; /* texto oscuro */
        border: 1px solid #ccc; /* opcional, borde sutil */
    }

    .product-card .btn:hover {
        background-color: #e0e0e0; /* gris un poquito más oscuro al hover */
        color: #000;
    }










    /* Asegurarnos que el card sea el contenedor posicionado */
    .product-card.position-relative {
        position: relative !important;
    }

    /* Contenedor de badges: absoluto respecto a .product-card */
    .product-card .product-badges {
        position: absolute;
        top: 12px;
        right: 12px;
        display: flex;
        flex-direction: column;    /* columna: uno debajo del otro */
        gap: 8px;                  /* separación entre badges */
        z-index: 50;
        pointer-events: none;      /* para que no bloqueen clicks en el link debajo */
    }

    /* Cada badge: relativo dentro del flex (no absoluto) */
    .product-card .product-badges .product-badge {
        position: relative;        /* importante: no absolute */
        display: inline-block;
        white-space: nowrap;
        padding: 6px 12px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        color: #fff;
        text-align: center;
        pointer-events: auto;      /* opcional: si querés que los badges acepten hover/click */
    }

    /* Colores */
    .product-card .product-badges .product-badge.bg-danger { background-color: #dc3545; }
    .product-card .product-badges .product-badge.bg-success { background-color: #28a745; }
    .product-card .product-badges .product-badge.bg-info    { background-color: #17a2b8; }

    /* Si por alguna razón hay reglas globales que afectan badges, forzamos tamaño y visibilidad */
    .product-card .product-badges .product-badge {
        min-width: 60px;
        box-sizing: border-box;
    }



    /* Bloque 2 promos debajo del banner */

    .home-promos .promo-card{
      position: relative;
      display: block;
      width: 100%;
      overflow: hidden;
      border-radius: 10px;
      text-decoration: none;
      background: #000;
    }

    .home-promos .promo-img{
      width: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 9; /* ajusta si querés más “alto”: 4/3 */
      transform: scale(1);
      transition: transform .35s ease;
    }

    .home-promos .promo-card:hover .promo-img{
      transform: scale(1.03);
    }

    .home-promos .promo-overlay{
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 16px;
      background: rgba(0,0,0,0.15); /* leve oscurecido para legibilidad */
    }

    .home-promos .promo-title{
      color: #fff;
      font-weight: 800;
      letter-spacing: 1px;
      font-size: 1.6rem;
      text-transform: uppercase;
      text-shadow: 0 2px 10px rgba(0,0,0,.35);
    }

    .home-promos .promo-badge{
      color: #fff;
      border: 1px solid rgba(255,255,255,.85);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .7px;
      text-transform: uppercase;
      background: rgba(0,0,0,.10);
    }

    /* Cómo encargo mi vajilla */
    .order-steps-title{
      text-align: center;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #222;
    }

    .order-step,
    .order-step-final{
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .order-step-number{
      font-size: 56px;
      font-weight: 900;
      line-height: 1;
      color: #222;
      flex: 0 0 auto;
    }

    .order-step-body{
      min-width: 0;
    }

    .order-step-heading{
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: #222;
      margin-top: 6px;
    }

    .order-step-text{
      font-size: 12px;
      color: #444;
      line-height: 1.4;
      margin-top: 6px;
    }

    .order-step-final{
      padding-top: 18px;
      border-top: 1px solid rgba(0,0,0,.08);
    }

    .order-step-heading-lg{
      font-size: 34px;
      letter-spacing: .8px;
    }

    .order-step-text-lg{
      font-size: 18px;
      max-width: 720px;
    }

    /* Responsive */
    @media (max-width: 768px){
      .order-step-number{
        font-size: 44px;
      }

      .order-step-heading-lg{
        font-size: 26px;
      }

      .order-step-text-lg{
        font-size: 16px;
      }
    }

    .order-step-number{
      font-size: 46px; /* antes 56px, para que entren 5 mejor */
    }

    .order-step-heading{
      font-size: 14px;
    }

    .order-step-text{
      font-size: 11px;
    }


    /* para flechas de desplazamiento y tamano del carrusel *?
    /* === FIX CARRUSEL BANNER === */

    /* Contenedor principal del carrusel */
    /*#homeBannerCarousel {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 450px;
        background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    }*/

    #homeBannerCarousel {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: var(--bs-banner-height-desktop, 450px);
        background: linear-gradient(
            135deg,
            var(--bs-banner-gradient-start, #ff8c42) 0%,
            var(--bs-banner-gradient-end, #ff6b35) 100%
        );
    }


    /* Contenedor interno del carrusel */
    #homeBannerCarousel .carousel-inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        transform: none !important;
    }

    /* Items del carrusel */
    #homeBannerCarousel .carousel-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        transition: opacity 0.6s ease-in-out;
    }

    #homeBannerCarousel .carousel-item.active {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Imágenes del carrusel */
    /*#homeBannerCarousel .carousel-item img {
        max-width: 90%;
        max-height: 90%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.4);
        border-radius: 4px;
        padding: 10px;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
    */



    #homeBannerCarousel .carousel-item img {
        max-width: var(--bs-img-max-width, 90%);
        max-height: var(--bs-img-max-height, 90%);
        padding: var(--bs-img-padding, 10px);
        border-radius: var(--bs-img-radius, 4px);
        background: var(--bs-img-bg, rgba(255,255,255,.4));

        box-shadow: 0 4px 15px var(--bs-img-shadow-color, rgba(0,0,0,.1));

        object-fit: var(--bs-img-fit, contain);
        object-position: var(--bs-img-position, center);
        width: auto;
        height: auto;
    }

    /* Controles de navegación */
    #homeBannerCarousel .carousel-control-prev,
    #homeBannerCarousel .carousel-control-next {
        z-index: 20;
        width: 5%;
        opacity: 1;
        /*background-color: rgba(0, 0, 0, 0.2);*/
        border-radius: 4px;
        margin: 0 15px;
        transition: background-color 0.3s ease;
    }

    #homeBannerCarousel .carousel-control-prev {
        left: 0;
    }

    #homeBannerCarousel .carousel-control-next {
        right: 0;
    }

    /* Efecto hover en los controles */
    #homeBannerCarousel .carousel-control-prev:hover,
    #homeBannerCarousel .carousel-control-next:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

    /* Iconos de navegación */
    #homeBannerCarousel .carousel-control-prev-icon,
    #homeBannerCarousel .carousel-control-next-icon {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        background-size: 50% 50%;
        transition: transform 0.2s ease;
    }

    /* Efecto hover en los iconos */
    #homeBannerCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
    #homeBannerCarousel .carousel-control-next:hover .carousel-control-next-icon {
        transform: scale(1.1);
    }

    /* Ajustes para móviles */
    @media (max-width: 768px) {
        #homeBannerCarousel .carousel-control-prev,
        #homeBannerCarousel .carousel-control-next {
            width: 15%;
        }
        
        #homeBannerCarousel .carousel-item img {
            max-width: 95%;
            max-height: 80%;
        }
    }

    /* Deshabilitar animaciones no deseadas */
    #homeBannerCarousel.carousel {
        touch-action: pan-y;
        perspective: 0;
    }

    /* Asegurar que los elementos inactivos no sean visibles */
    #homeBannerCarousel .carousel-item:not(.active) {
        opacity: 0;
    }





    /*/////////////////////////////////////////////////*/
/* CONTACTO – LINKS, ICONOS Y EFECTOS HOVER        */
/*/////////////////////////////////////////////////*/

/* ===== Links base ===== */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* ===== Iconos base ===== */
.contact-link i {
    margin-right: 8px;
    transition: transform 0.25s ease;
}

/* ===== Colores reales de iconos ===== */
.contact-link i.bi-envelope {
    color: #0d6efd; /* Mail */
}

.contact-link i.bi-facebook {
    color: #1877F2; /* Facebook */
}

.contact-link i.bi-instagram {
    color: #E4405F; /* Instagram */
}

.contact-link i.bi-tiktok {
    color: #000000; /* TikTok */
}

/* ===== Bloques mail y teléfono ===== */
.contact-info {
    transition: transform 0.25s ease;
}

.contact-info:hover {
    transform: translateX(4px);
}

.contact-info:hover i {
    transform: scale(1.2);
}

/* ===== Redes sociales ===== */
.social-links-vertical a {
    display: inline-flex;          /* 🔥 CLAVE para que se mueva */
    align-items: center;
    margin-bottom: 6px;
    transition: transform 0.25s ease;
}

.social-links-vertical a:hover {
    transform: translateX(4px);
}

.social-links-vertical a:hover i {
    transform: scale(1.2);
}



.order-step-number {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-weight: 600;
}


.numeric {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-weight: 600;
}

