.logo-container {
    margin-top: 30px;
}

.logo-container h3 {
    text-align: center;
    margin-top: 40px;
}

.merch-container {
    margin-top: 60px;
    justify-content: center;
    gap: 100px;
}

.merch-container a {
    text-decoration: none;
    text-align: center;
    color: black;
    font-size: 1.4rem;
}

.merch-container span {
    display: block;
    padding: 40px 40px 0;
}

.merch-container .price {
    font-family: AvenirBold;
}

.container-show-merch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.grid-container {
    flex: 4;
}

.info-container {
    flex: 2;
}

.info h2 {
    font-size: 4rem;
}

.cell {
    display: flex;
  }

.grid .cell:hover img {
    transform: scale(1.3);
}

  /* Para que la imagen ocupe toda la celda */
  .cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


/* Contenedor de la grilla de imágenes */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
}

.grid img {
    width: 100%;
    display: block;
}

/* Contenedor derecho del formulario */
.info {
    flex: 1;
    margin-left: 20px;
}

/* Estilo general para elementos del formulario */
.info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.precio {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: AvenirBold;
    padding-bottom: 15px;
    display: block;
}

.info .description {
    font-size: 0.9rem;
}

/* estilos para botones de talla y cantidad */
.tallas,
.cantidad {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.info p {
    font-size: 1.2rem;
}

.boton-pagar.disabled { 
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: none;
}

.tallas button {
    border: 2px solid #000;
    border-radius: 50px;
    background: none;
    cursor: pointer;
    width: 64px;
    font-size: 20px;
    padding: 4px 0;
    color: #000;
}

.tallas button.active {
    background-color: #000;
    color: #fff;
}

.tallas button:hover {
    background-color: #000;
    color: #fff;
}

.cantidad button {
    border: 2px solid #000;
    border-radius: 50px;
    background: none;
    cursor: pointer;
    width: 47px;
    font-size: 15px;
    padding: 3px 0;
}

.cantidad button:hover {
    background-color: #000;
    color: #fff;
}

/* botón pagar */
.boton-pagar {
    background-color: black;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    margin-top: 40px;
}

.boton-pagar:hover {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 25px;
    padding: 15px;
}

.buttons {
    position: relative;
    bottom: 40px;
    margin: 0 auto;
    text-align: center;
}

.buttons img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.buttons a {
    text-decoration: none;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 240px;
}

@media (max-width: 768px) {
    .container-show-merch {
        flex-direction: column;
    }

    .boton-pagar {
        margin-top: 20px;
        font-size: 1.5rem;
    }

    .tallas button {
        width: 74px;
        font-size: 1.5rem;
    }
        
}