.bgColorBanner{
    background-color: #FCFCFC;
    padding: 20px 10px ;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--ColorBtn);
    flex-wrap: wrap;

  }

  .bgColorBanner a {
    color: #3A3A3A;
    font-family: Roboto;
    text-transform: uppercase;
    transition: all ease .3s;
  }

  .bgColorBanner a:hover{
    color: var(--AzulFuerte);
    font-weight: 400;
  }

  .bgColorBanner i{
    font-size: 10px;
  }

  .ofertaEsNo{
    background: #FFD600;
    color: #333;
    font-weight: 700;
    font-size: 12px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
    width:100px;
    margin-top:10px;
  }

  .bgColorBanner .enlacePintado{
    color: var(--ColorBtn);
    transition: all ease .3s;

  }

  .bgColorBanner .enlacePintado:hover{
    color:#1706d5 ;
    font-weight: 400;
  }
  .barraMenus{
   margin-top: 60px;
  }

  /**/
  /*DETALLE PRODUCTO INICIA*/
.buttonPdf{
    align-items: flex-start;
  }
    .FlexButon .cotizarButton button{
      padding: 15px 0px;
      font-size: 17px;
      font-weight: 600;
    }


    .FlexButton .borderRed button{
      border: 2px solid var(--red);
      background-color: transparent;
      color: #1E1E1E;
      font-size: 16px;
      margin: 30px 0px;
      margin-bottom: 40px;
      padding: 14px 45px;
      display: flex;
      justify-content: flex-start;
      transition: all ease .3s;
    }

    .FlexButton .borderRed button:hover{
      border: 2px solid var(--redHover);
     background-color: var(--redHover);
      color: var(--ColorWhite);
      font-size: 16px;
      margin: 30px 0px;
      margin-bottom: 40px;
    }
    .FlexButton .borderRed button:hover i{
        color: var(--ColorWhite);
    }
    .FlexButton .borderRed button i{
      color: red;
      font-size: 20px;
      transition: all ease .3s;
    }
    .FlexButton .borderRed button i:hover{
      color: var(--ColorWhite);
      font-size: 20px;
    }

  .main-image-container{
    border: 2px solid var(--BordeFooter);
        display: flex;
    justify-content: center;
    align-items: center;

  }
  .product-container {
            display: flex;
            flex-wrap: wrap;
            overflow: hidden;
            margin-bottom:60px;
            gap:25px;
        }

        .product-gallery {
            flex: 1;
            min-width: 300px;

            /*Probando*/
            display: flex;
            flex-direction: column;
            gap: 20px;


            /*border-right: 1px solid #F3F3F3;*/
        }

        .product-details {
            flex: 1;
            min-width: 300px;
            border: 1px solid var(--BordeFooter) ;
            padding: 40px 40px;
        }

        .product-details h1{
          color: var(--ColorBtn);
          font-size: 30px;
          font-family: Orbitron;
        }
        .linea{
          border: 1px solid var(--ColorBtn);
          margin: 20px 0px;
        }

        .linea2{
            border: 1px solid var(--BordeFooter);
          margin: 20px 0px;
        }

        .flexContenedorCatMarca{
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .flexContenedorCatMarca .submarca{
          width: 45%;
          font-family: Roboto;
          color: #183753;
          line-height: 1.8;
        }
        .flexContenedorCatMarca .submarca p{
          font-size: 16px;
        }

        .product-details .contenidoTexto{
          font-size: 18px;
          padding: 10px 0px;
          font-family: Roboto;
          line-height: 1.4;
          color: #1E1E1E;
        }


          .main-image {
            max-width: 100%;
            max-height: 500px;
            object-fit: contain;
            padding: 30px 30px ;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .thumbnail-container {
            display: flex;
            align-items: center;
            position: relative;
        }

        .thumbnails {
            display: flex;
            overflow: hidden;
            scroll-behavior: smooth;
            gap: 10px;
            padding: 5px 0;
            width: calc(100% - 56px);
            margin: 0 auto;
        }

        .thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            background-color: var(--grayextralight);
            padding: 5px;
            flex-shrink: 0;
        }

        .thumbnail:hover {
            border-color: var(--primary);
        }

        .thumbnail.active {
            border-color: var(--primary);
        }

        .thumbnail-nav {
            background: var(--white);
            border: 1px solid var(--graylight);
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            font-size: 12px;
        }

        .thumbnail-nav:hover {
            background: var(--graylight);
        }

        .thumbnail-nav.prev {
            left: 0;
        }

        .thumbnail-nav.next {
            right: 0;
        }



        /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            animation: lightboxFadeIn 0.3s;
        }

        @keyframes lightboxFadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .lightbox-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .lightbox-nav:hover {
            opacity: 1;
            background-color: var(--ColorWhite);
        }

        .lightbox-nav.prev {
            left: 20px;
        }

        .lightbox-nav.next {
            right: 20px;
        }

        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 20px;
            color: var(--ColorWhite);
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .lightbox-close:hover {
            opacity: 1;
        }


        .detalleWith{
          width: 100%;
        }


        .ContenedorFLexArrowsNuevo .titleDetalleProducto  {
          color: var(--ColorBtn);
        }


        .ContenedorFLexArrowsNuevo .titleDetalleProducto span {
          color: #1C1C1C;
        }

        .FlexArrows .detalleP{
          background-color: var(--ColorBtn);
          color: var(--ColorWhite);
        }

         @media (max-width: 768px) {
            .product-gallery, .product-details {
                flex: 100%;
                border-right: 1px solid var(--BordeFooter);
                border-bottom: 1px solid var(--BordeFooter) ;
                padding-right:0px;
            }
            .whatsapp-button{margin-bottom:0px;}

            .main-image {
                max-height: auto;
            }

            .thumbnail{
                width:80px;
                height:80px;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .lightbox-close {
                font-size: 25px;
            }

            .product-details{
              padding: 20px ;


            }


        }

        @media (max-width:500px ) {


          .FlexButton .borderRed button{
            justify-content: center;
          }
        }
/*DETALLE PRODUCTO TERMINA*/
