body {
    margin: 0;
    font-family: 'Quicksand-Regular', sans-serif;
    font-weight: 300;
    background: #fff;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 32px 0 0 0;
    text-align: center;
}


.logo {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.7em;
    color: #111;
    margin-bottom: 10px;
    margin-top: 0;
}
nav {
    width: 70vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
}
@media (max-width: 900px) {
    nav {
        width: 90vw;
    }
}
nav a {
    color: #111;
    text-decoration: none;
    font-weight: 100;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.1em;
    transition: text-decoration-thickness 0.2s;
    flex: 1 1 auto;
    text-align: center;
    padding: 0 10px;
}
nav a.active,
nav a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
main {
    max-width: 900px;
    margin: 16px auto 0 auto;
    padding: 0 20px;
    background: #fff;
    flex: 1;
}
section {
    padding: 10px 0;
    font-weight: 100;
    color: #111;
}
section:last-child { border-bottom: none; }
/* No título de sección */
h2 {
    display: none;
}
p {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 100;
    font-size: 0.9em;
    line-height: 1.6;
    text-align: justify;
    color: #111;
}
footer {
    text-align: center;
    padding: 16px 0 28px 0;
    color: #333;
    font-size: 0.97em;
    font-weight: 100;
    font-family: 'Raleway', Arial, sans-serif;
    background: #fff;
    margin-top: 15px;
    border-top: 1px solid #ececec;

}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra horizontalmente */
    gap: 10px; /* Espacio entre imágenes */
}

.gallery img {
    width: 200px;
    height: auto;
    border-radius: 0px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}
.shop-item {
    background: #fff;
    border: 0px solid #ddd;
    border-radius: 0px;
    text-align: center; /* Centra todo el contenido */
    padding: 10px;
}

.shop-item img {
    display: block;
    margin: 0 auto; /* Centra la imagen */
    width: 200px;
    border-radius: 0px;
}

.price {
    font-weight: bold;
    color: #333;
    text-align: center; /* Centra todo el contenido */

}
.stock {
    color: #666;
    text-align: center; /* Centra todo el contenido */
    margin: 5px;
}

.articulo{
    justify-content: center;
    align-items: center;
    margin: 5px;
}