/* --- Tu estructura base (Mantenida) --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Usamos un contenedor mивs flexible para la tienda */
.container {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 800px; /* Ampliado para mostrar mивs productos */
    margin: 0 auto;
}

.logo {
    width: 90%;          /* Ocupa casi todo el ancho */
    max-width: 500px;    /* Tamaño máximo en computadoras */
    height: auto;
    margin-bottom: 30px;
    display: block;      /* Importante para centrar */
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #c5a059;
    margin: 25px auto;
}

.biblical-message { margin: 25px 0; padding: 15px; }

.biblical-message p { font-style: italic; font-size: 1rem; color: #444; }

.reference {
    margin-top: 10px;
    font-style: normal !important;
    font-size: 0.8rem !important;
    color: #c5a059;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- NUEVOS ESTILOS PARA LA TIENDA --- */

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.producto-card {
    border: 1px solid #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.producto-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-comprar {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #c5a059;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
    .grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.producto-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

.btn-comprar {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background-color: #c5a059;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
}.carrusel-contenedor {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.carrusel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Oculta barra en Firefox */
}

.carrusel::-webkit-scrollbar {
    display: none; /* Oculta barra en Chrome/Safari */
}

.carrusel img {
    flex: 0 0 100%;
    width: 100%;
    height: 300px; /* Ajusta la altura a tu gusto */
    object-fit: cover;
    scroll-snap-align: center;
    border-radius: 10px;
}.carrusel-contenedor {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Sombra elegante */
    border-radius: 15px;
    overflow: hidden;
}

.carrusel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carrusel img {
    flex: 0 0 100%;
    width: 100%;
    height: 300px;
    object-fit: cover;
    scroll-snap-align: center;
}.carrusel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth; /* Esto asegura que el movimiento sea suave */
}/* Contenedor flexible */
.container {
    text-align: center;
    padding: 20px;
    width: 95%; /* Ocupa casi todo el ancho en móviles */
    max-width: 500px; /* No se estira demasiado en computadoras */
    margin: 0 auto;
}

/* Carrusel 100% responsivo */
.carrusel-contenedor {
    width: 100%;
    max-width: 100%; /* Se adapta al ancho del padre */
    margin: 0 auto 30px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.carrusel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
}

.carrusel img {
    flex: 0 0 100%;
    width: 100%;
    height: 250px; /* Altura fija para mantener elegancia */
    object-fit: cover; /* Recorta la imagen sin deformarla */
    scroll-snap-align: center;
}

/* Ajustes de tipografía para móviles */
h1 { font-size: 1.4rem; }
p { font-size: 1rem; line-height: 1.5; }

/* En pantallas muy pequeñas, reducimos un poco la altura del carrusel */
@media (max-width: 480px) {
    .carrusel img { height: 200px; }
    h1 { font-size: 1.2rem; }
}.btn-comprar {
    background-color: #c5a059;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.4s ease;
    border: 2px solid #c5a059;
    position: relative;
    overflow: hidden;
}

.btn-comprar:hover {
    background-color: #ffffff;
    color: #c5a059;
    box-shadow: 0 0 15px #c5a059;
}