.gallery-slots{

    background: linear-gradient(to bottom, rgb(235, 235, 235) 89%, rgb(223, 223, 223)); 
}

#head{
    background: linear-gradient(to bottom, rgb(253,253,253) 10%, rgb(235, 235, 235)); 

}

.intro-title
{
    font-family: "Arsenal SC", system-ui;
    text-align: center;
    font-size: 50px;
    margin-top: 10px;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#descripcion{
    font-family: "Rokkitt", serif;
    font-size: 27px;
    text-align: center;
    flex: 1; /* Asegura que ocupe el 50% del espacio */
    padding: 25px;
    margin: 0px;
}

#separation-line{
    border: 1px solid #ccc;
    width: 40%;
    margin: 0px;
    margin: 0 auto;
}

figure{
    margin: 14px;
    background-color: rgb(221, 221, 221);
    box-shadow: 0px 0px 0px 11px rgba(221, 221, 221);
    border-radius: 5px;
}

figcaption {
    margin-top: 9px;
    font-size: 18px;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}

.images-g img{
    width: 350px; /* La imagen cubre todo el ancho del contenedor */
    height: 400px; /* La imagen cubre toda la altura del contenedor */
    object-fit: cover; /* La imagen se ajusta para cubrir todo el contenedor, recortando lo necesario */
    border-radius: 5px;
    box-shadow: 4px 4px 6px rgba(53, 53, 53, 0.4);
}
.images-g{
    background-color: rgb(235, 235, 235);
    margin: 0px;
    padding: 0;
    display: block;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente (si el contenedor tiene altura) */
    flex-wrap: wrap; /* Permite que las imágenes se ajusten en múltiples líneas si es necesario */
}

.singleImg-g {
    transition: transform .2s;
}
  
.singleImg-g:hover{
    transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.product-title{
    text-align: center;
    font-size: 18px;
    font-family: "Rokkitt", serif;
}

/*-------- Paginator ---------*/

.pagination{
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: "Rokkitt", serif;
    font-size: 20px;
    margin-left: 37%;
    padding-bottom: 40px;
    padding-top: 10px;
  }
  
  .pagination a {
    text-decoration: none;
    padding: 8px 16px;
    margin: 0 4px;
    background-color: rgb(243, 243, 243);
    color: #000;
    border-radius: 4px;
  }
  
  .pagination .current {
    font-weight: bold;
    color: #fff;
    background-color: #333;
    padding: 8px 16px;
    border-radius: 4px;
  }
  
  .pagination a:hover {
    background-color: #ddd;
  }
  
  .pagination .first, .pagination .last {
    font-size: 0.9em;
  }
  
  /*-------- Paginator ---------*/
@media (max-width: 756px){
    .pagination{
        margin-left: 29%;
    }
}

@media (max-width: 640px){
    .pagination{
        margin-left: 14%;
    }
}

@media (max-width: 460px){
    .pagination{
        margin-left: 11%;
    }
}

@media (max-width: 400px) {
    .intro-title{
        font-size: 40px;
    }
    #descripcion{
        font-size: 20px;
    }
    .pagination{
        margin-left: 4%;
        font-size: 16px;
    }
}
@media (max-width: 380px) {
    .images-g img{
        width: 250px; /* La imagen cubre todo el ancho del contenedor */
        height: 250px;
    }
    .pagination{
        margin-left: 4%;
        font-size: 16px;
    }
      .pagination a {
        padding: 5px 11px;
    }
  
    .pagination .current {
        padding: 5px 11px;
    }
}
