 * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
            font-family: "Roboto", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        body {
            background-color: white;
            min-height: 100vh;
        }

        .container {
            position: relative;
            min-height: 100vh;
        }

       .encima {
    background-color: #880404;
    width: 100%;
    height: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambio de flex-start a space-between */
    padding: 0 20px;
}

/* Agregar estos nuevos estilos para la bandera */
.pais-info {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.bandera-rd {
    width: 40px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bandera-rd .franja {
    position: absolute;
    width: 100%;
}

.bandera-rd .azul-top {
    height: 50%;
    background-color: #002d62;
    top: 0;
    left: 0;
    width: 50%;
}

.bandera-rd .rojo-top {
    height: 50%;
    background-color: #ce1126;
    top: 0;
    right: 0;
    width: 50%;
}

.bandera-rd .rojo-bottom {
    height: 50%;
    background-color: #ce1126;
    bottom: 0;
    left: 0;
    width: 50%;
}

.bandera-rd .azul-bottom {
    height: 50%;
    background-color: #002d62;
    bottom: 0;
    right: 0;
    width: 50%;
}

.bandera-rd .cruz-blanca-h {
    position: absolute;
    width: 100%;
    height: 20%;
    background-color: white;
    top: 40%;
    left: 0;
}

.bandera-rd .cruz-blanca-v {
    position: absolute;
    width: 20%;
    height: 100%;
    background-color: white;
    top: 0;
    left: 40%;
}

 .bandera-rd .escudo {
            position: absolute;
            top: calc(50% - 7px);
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            z-index: 2;
            border-radius: 2px;
            background-color: transparent;
            padding: 0px;
        }

        .bandera-rd .escudo img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            border-radius: 1px;
            display: none;
        }

.texto-pais {
    color: white;
}

.texto-pais small {
    font-size: 0.7rem;
    display: block;
    opacity: 0.9;
}

.texto-pais p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive para la bandera */
@media (max-width: 768px) {
    .texto-pais p {
        font-size: 0.9rem;
    }

    .texto-pais small {
        font-size: 0.6rem;
    }

    .bandera-rd {
        width: 35px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .texto-pais {
        display: none; /* Ocultar texto en móviles muy pequeños */
    }
}

        .llamanos {
            text-decoration: none;
            height: 60px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .llamanos div {
            color: white;
        }

        .logowsp {
            width: 40px;
            height: 40px;
        }

        .logowsp img {
            width: 100%;
            height: 100%;
            filter: invert(1);
        }


.wspimg path {
    fill:white;
}

        .textowsp {
            color: white;
        }

        .textowsp small {
            font-size: 0.7rem;
            display: block;
        }

        .textowsp p {
            font-size: 1.2rem;
            margin: 0;
        }

        .headerGeneral {
            background-color: white;
            width: 100%;
            height: 80px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-columns: 60px 1fr 60px 60px;
            align-items: center;
            padding: 0 20px;
            gap: 5px;
        }

        .headerGeneral figure {
            grid-column: 2;
            height: 100%;
            width:100%;
            position: relative;
            top: 0px;
            display:flex;
            justify-content: start;
            align-items: center;
            left: 0 px;
            margin: 0;
            margin-right: 0px;
        }
        
        @media (max-width: 768px) {
            .headerGeneral figure {
                width: 100%;
                margin: 0;
                position: relative;
                top:10px;
            }
            
            
            .headerGeneral figure img {
                min-width: 100%;
                min-height: 100%;
                object-fit: fill;
                
            }
        }

        .headerGeneral figure img {
            max-height: 100%;
            max-width: 100%;
            object-fit: fill;
            min-height: 100%;
            min-width:100%;
        }

        .barramenu {
            cursor: pointer;
            font-size: 24px;
            color: #333;
            grid-column: 1;
        }

        .search {
            grid-column: 3;
            font-size: 20px;
            color: #333;
            cursor: pointer;
            justify-self: center;
            
        }

        .carrito {
            grid-column: 4;
            font-size: 20px;
            color: #333;
            cursor: pointer;
            justify-self: center;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .overlayshow {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .menu {
            height: 100vh;
            width: 280px;
            position: fixed;
            top: 0;
            left: -280px;
            z-index: 15;
            background-color: #880404;
            border-radius: 0px 10px 10px 0px;
            box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4);
            transition: left 0.3s ease-in-out;
            padding-top: 20px;
        }

        .menu.show {
            left: 0;
        }

        .menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            font-weight: 500;
            font-size: 1.2rem;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background-color 0.3s ease;
        }

        .menu a:hover {
            background-color: #7b0000;
        }

        .cajaCategorias {
            display: grid;
            width: 100%;
            padding: 20px;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 20px;
            justify-items: center;
        }

        .categoria {
            width: 80px;
            text-align: center;
            cursor: pointer;
        }

        .categoria figure {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .categoria figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .categoria p {
            font-weight: 500;
            font-size: 0.9rem;
            color: #333;
        }

        .busqueda {
            width: 100%;
            padding: 20px;
            display: flex;
            justify-content: center;
            gap: 0;
        }

        .busquedaInput {
            width: 70%;
            max-width: 300px;
            height: 40px;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 5px 0px 0px 5px;
            padding: 0 15px;
            font-size: 16px;
        }

        .busquedaInput:focus {
            outline: none;
            border-color: #880404;
        }

        .btnBusqueda {
            width: 40px;
            height: 40px;
            border: 2px solid #880404;
            border-radius: 0px 5px 5px 0px;
            background-color: #880404;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btnBusqueda:hover {
            background-color: #7b0000;
        }

        .tiendaContainer {
            width: 100%;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            justify-items: center;
        }

        .cajaProducto {
            width: 200px;
            height: 280px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }



        .cajaProducto:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cajaProducto a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

      .cajaProducto figure img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Centrar la imagen */
    object-position: center;
}

/* Alternativa: Si quieres que la imagen se ajuste al ancho y mantenga proporción */
.cajaProducto figure img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    object-position: center;
}



        .nombreArt {
            padding: 10px;
            font-weight: 500;
            font-size: 1rem;
            color: #333;
            height: 50px;
            display: flex;
            align-items: center;
              display: -webkit-box;
  -webkit-line-clamp: 2;       /* Número de líneas que deseas mostrar */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
        }
        
        

        .precioArt {
            padding: 0px 0px 0px 10px;
            font-weight: 600;
            font-size: 1.2rem;
            color: #880404;
            height: 30px;
            display: flex;
            align-items: center;
            position: relative;
            
        }
        
        .precioArtBefore {
            font-size: 0.7rem;
            text-decoration: line-through;
            color: #888;
            font-weight: 500;
            padding: 0 0px 0px 10px;

            height: 30px;
            display: flex;
            align-items: center;
            position: relative;
            top:-10px;
        }

        .Botones {
            padding: 10px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
          .condescuentoprecio {
            position: relative;
            top: -20px ;
        }
    
        .condescuento {
             position: relative;
            top: -30px ;
        }

        .btn-agregar {
            background-color: #880404;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
            position: relative;
            top: -10px;
           
        }
        
        
         .condescuento {
             position: relative;
            top: -30px ;
        }
        @media (max-width: 767px) {
            .condescuento{
                position: relative;
                top: -20px;
                
            }
            
            .condescuentoprecio {
                position: relative;
                top:-20px;
            }
        }

        .btn-agregar:hover {
            background-color: #7b0000;
        }

        @media (max-width: 768px) {

            .encima {
                height: auto;
            }

            .cajaCategorias {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }
            
            .categoria {
                width: 60px;
            }
            
            .categoria figure {
                width: 60px;
                height: 60px;
            }
            
            .tiendaContainer {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            
            .cajaProducto {
                width: 150px;
                height: 300px;
            }


            .headerGeneral figure {
                position: relative;
                top: 0px;
                left: 0px;
                width: 100%;
                height: 100%;
            }
        }



    
    



















        .cajaCategorias {
    display: grid;
    width: 100%;
    padding: 30px 20px;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 25px;
    justify-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categoria {
    position: relative;
    width: 100px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.categoria-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.categoria:hover .categoria-content {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(136, 4, 4, 0.15);
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
}

.categoria figure {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #880404, #a61e1e);
    padding: 3px;
}

.categoria:hover figure {
    border-color: #880404;
    transform: rotate(5deg);
}

.categoria figure img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.categoria:hover figure img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.categoria p {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.categoria:hover p {
    color: #880404;
    transform: translateY(-2px);
}

.categoria-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #880404, #a61e1e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.categoria:hover .categoria-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.categoria-overlay i {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.categoria:hover .categoria-overlay i {
    transform: translateX(2px);
}

/* Estilo especial para "Ver todas" */
.categoria-especial .categoria-content {
    background: linear-gradient(135deg, #880404, #a61e1e);
    color: white;
}

.categoria-especial p {
    color: white;
    font-weight: 700;
}

.categoria-especial:hover .categoria-content {
    background: linear-gradient(135deg, #a61e1e, #c92727);
    transform: translateY(-8px) scale(1.08);
}

.categoria-especial figure {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.categoria-especial .categoria-overlay-especial {
    background: rgba(255, 255, 255, 0.9);
}

.categoria-especial .categoria-overlay-especial i {
    color: #880404;
}

/* Efectos de brillo */
.categoria-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.categoria:hover .categoria-content::before {
    opacity: 1;
    left: 100%;
}

/* Animación de aparición */
.categoria {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.categoria:nth-child(1) { animation-delay: 0.1s; }
.categoria:nth-child(2) { animation-delay: 0.2s; }
.categoria:nth-child(3) { animation-delay: 0.3s; }
.categoria:nth-child(4) { animation-delay: 0.4s; }
.categoria:nth-child(5) { animation-delay: 0.5s; }
.categoria:nth-child(6) { animation-delay: 0.6s; }
.categoria:nth-child(7) { animation-delay: 0.7s; }
.categoria:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



























        /* FOOTER STYLES */
        .footer {
            background: linear-gradient(135deg, #880404 0%, #a61e1e 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 100px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info i {
            width: 16px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: white;
            color: #880404;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-bottom p {
            font-size: 0.9rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-logo-icon {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .contact-info p {
                justify-content: center;
            }
        }



           .headerGeneral {
            background-color: white;
            width: 100%;
            height: 80px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            padding: 0 20px;
            justify-content: space-between;
            position: relative;
            gap: 10px;
        }

        .headerGeneral .logo-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap:10px;
            height: 100%;
            
           
        }

        .headerGeneral figure {
            height: auto;
            width: 100%;
            max-width: 200px;
            
        
        }

        .headerGeneral .search-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        .headerGeneral .icons-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 30px;
            padding-right: 10px;
        }

        .headerGeneral .busqueda {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 0;
            max-width: 300px;
        }

        .headerGeneral .busquedaInput {
            width: 100%;
            height: 40px;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 5px 0px 0px 5px;
            padding: 0 15px;
            font-size: 16px;
        }

        .headerGeneral .btnBusqueda {
            width: 40px;
            height: 40px;
            border: 2px solid #880404;
            border-radius: 0px 5px 5px 0px;
            background-color: #880404;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;}


             @media (min-width: 768px) {

                 .headerGeneral .logo-container {
                    gap:50px;
                 }

                   .headerGeneral .icons-container {
                    gap:50px;
                   }

             }


             .search-container form {
                display: none;
             }


             .search-container .showSearch {
                display: inline-block;
             }
             
             .headerGeneral .fa-magnifying-glass, .search {
                 display: none;
             }
