﻿/* Fondo general con imagen */
.tienda-section {
    font-family: 'Rokkitt', serif;
    background-image: url('/images/fondos/fondo_agenda.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 5rem 2rem;
    color: white;
}

/* Overlay con fondo donde van las imágenes */
.tienda-overlay {
    background-image: url('/images/tienda/fondo_tienda.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Título principal */
.tienda-title {
    margin-top: -2rem;
    text-align: left;
    margin-bottom: 2rem;
    font-family: 'Rokkitt', serif;
    font-weight: inherit;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #7A4485;
}

.franja {
    padding-bottom: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
}

/* Producto individual */
.producto {
    padding: 1rem;
    text-align: center;
    max-width: 18rem;
    font-family: 'Rokkitt', serif;
    color: white;
}

    .producto img {
        background-image: url('/images/tienda/fondo_imagenes.png');
        width: 100%;
        border-radius: 1rem;
        margin-bottom: 1rem;
    }

.producto-titulo {
    font-family: 'Rokkitt', serif;
    text-align: left;
    color: black;
    font-size: 1.5rem;
    margin: 0.5rem 0 0.2rem;
}

.producto-subtitulo {
    text-align: left;
    color: black;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Botón con fondo negro y letras blancas */
.producto-boton {
    background-color: black;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Rokkitt', serif;
    transition: background 0.3s ease;
}

    .producto-boton:hover {
        background-color: #333;
    }

/* Responsive */
@media (max-width: 768px) {

    .tienda-overlay {
        flex-direction: column;
        align-items: center;
    }

    .tienda-title {
        opacity: 1;
        font-size: clamp(1.2rem, 6vw, 1.5rem);
        margin-left: -1rem;
        margin-top: -3rem;
        margin-bottom: 1rem;
    }

}
