/* ===============================
   DETALLE
=============================== */

.detalle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px;
}

.detalle img {
  width: 100%;
}


/* ===============================
   INFO
=============================== */

.info h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.info .precio {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}


/* ===============================
   TALLES
=============================== */

.talles {
  margin-bottom: 20px;
}

.talles button {
  border: 1px solid #ddd;
  background: none;
  padding: 8px 14px;
  margin-right: 10px;
  cursor: pointer;
}

.talles .activo {
  background: #000;
  color: #fff;
}


/* ===============================
   BOTON
=============================== */

.agregar {
  width: 100%;
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}


/* ===============================
   TEXTO
=============================== */

.descripcion {
  margin-top: 30px;
  color: #555;
}


/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {
  .detalle {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
