.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    z-index: 100;
}


.orden-header {
    margin-top: 7rem;
    text-align: center; /* Centra todo el contenido dentro del header */
    padding: 40px 0;
}

.titulo-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.decorador {
    border: 0;
    border-top: 2px solid #000; /* Cambia el color de la línea a negro */
    margin: 20px auto;
    width: 50%; /* Ajusta el ancho de la línea */
}


.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #000000;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 32px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 100;
}

.cart-icon:hover {
    background-color: #020202be;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
}

.producto {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.producto h3 {
    font-size: 20px;
    margin-bottom: 8px;
}



.producto p {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
}

.producto button {
    background-color: #d42f2f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.producto button:hover {
    background-color: #a92020;
}

.cantidad-carrito {
    position: absolute;
    top: -2px; /* Ajusta esta distancia para moverlo más arriba */
    right: -5px; /* Ajusta esta distancia para moverlo más a la derecha */
    width: 20px; /* Ancho del círculo */
    height: 20px; /* Alto del círculo */
    border-radius: 50%; /* Para hacerlo redondo */
    background-color: #ff0000; /* Color del círculo (puedes cambiarlo) */
    color: white; /* Color del texto (número) */
    font-size: 1rem; /* Tamaño del número */
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

