body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f9;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 15px 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: #00bcd4;
}

.icono-carrito {
    font-size: 1.5rem;
    cursor: pointer;
    user-select: none;
}

#contador-carrito {
    background-color: red;
    color: white;
    font-size: 1rem;
    padding: 2px 8px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    left: -5px;
}

.contenedor-tienda {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tarjeta-producto {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.tarjeta-producto:hover {
    transform: translateY(-5px);
}

.tarjeta-producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.precio {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00bcd4;
}

.btn-agregar {
    background-color: #222;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
}

.btn-agregar:hover {
    background-color: #00bcd4;
}

#ventana-carrito {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease-in-out; 
    box-sizing: border-box;
}

.carrito-oculto {
    transform: translateX(100%); 
}

.cabecera-carrito {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

#btn-cerrar-carrito {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

#lista-carrito {
    flex-grow: 1; 
    overflow-y: auto;
    margin-top: 20px;
}

.carrito-vacio {
    text-align: center;
    color: #888;
    margin-top: 50px;
}

.pie-carrito {
    border-top: 2px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.btn-comprar {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-comprar:hover {
    background-color: #218838;
}

.item-carrito {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.item-carrito p {
    margin: 0;
    font-size: 0.9rem;
}

.btn-eliminar {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn-eliminar:hover {
    transform: scale(1.2);
}
