:root {
  --principal: #2d5f2e;
  --secundario: #ff8c42;
  --terciario: #f0f4f0;
  --blanco: #ffffff;
  --oscuro: #000000;
  --sombra: #5a6d5a;
  --sombra2: #dde4dd;
}

/* ====== DISPONIBILIDAD ====== */

.contenedor-3 {
  padding: 50px 0;
  text-align: center;
}

/* TEXTO */

.cont-texto h2{
  font-size: 40px;
  color: var(--oscuro);
  margin-bottom: 10px;
}

.cont-texto p{
  color: var(--sombra);
  font-size: 18px;
}

/* ===== CATEGORÍAS ===== */

.categorias-container{
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

/* CAJA DE CATEGORÍA */

.categoria-box{
  margin-bottom: 30px;
}

/* BOTÓN CATEGORÍA */

.categoria-btn{
  width: 100%;

  background: var(--principal);
  color: var(--blanco);

  border: none;
  border-radius: 15px;

  padding: 20px 25px;

  font-size: 24px;
  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-align: left;
}

.categoria-btn:hover{
  background: #234b24;
}

/* PRODUCTOS */

.productos-categoria{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));

    gap: 25px;

    margin-top: 0;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.5s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;
}



.productos-categoria.mostrar-categoria{

    max-height: 2000px;

    opacity: 1;

    margin-top: 25px;
}

/* TARJETA PRODUCTO */

.producto-disp{
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--terciario);

  padding: 20px;

  border-radius: 18px;

  transition: 0.3s;
}

.producto-disp:hover{
  transform: translateY(-5px);
}

/* FLECHA */

.flecha{
    font-size: 28px;
    transition: 0.4s;
}

/* ROTACIÓN */

.categoria-btn.activo .flecha{
    transform: rotate(180deg);
}

/* EFECTO BOTÓN */

.categoria-btn.activo{
    background: #234b24;
}

/* IMAGEN */

.product-imagen{
  width: 80px;
  height: 80px;

  object-fit: cover;

  border-radius: 12px;
}

/* INFO */

.producto-info-disp{
  flex: 1;
  margin-left: 20px;

  text-align: left;
}

.producto-nombre-disp{
  font-size: 22px;
  color: var(--oscuro);

  margin-bottom: 6px;
}

.producto-precio-disp{
  color: var(--sombra);
  font-size: 16px;
}

/* ESTADO */

.estado{
  display: flex;
  align-items: center;
  justify-content: center;
}

.estado.ok{
  color: var(--principal);
}

.estado.no{
  color: red;
}

/* BOTÓN ENCARGAR */

.btn-encargar{
  background: var(--principal);
  color: var(--blanco);

  text-decoration: none;

  padding: 14px 22px;

  border-radius: 10px;

  font-size: 16px;
  font-weight: bold;

  transition: 0.3s;
}

.btn-encargar:hover{
  background: #234b24;
  transform: translateY(-2px);
}

/* BOTÓN CATÁLOGO */

.contenedor-boton{
  display: flex;
  justify-content: center;

  margin-top: 40px;
}

.btn-catalogo{
  display: inline-block;

  background: var(--secundario);
  color: var(--blanco);

  padding: 16px 32px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: bold;
  font-size: 17px;

  transition: 0.3s;
}

.btn-catalogo:hover{
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */

@media(max-width: 900px){

  .productos-categoria{
    grid-template-columns: 1fr;
  }

}

@media(max-width: 600px){

  .categoria-btn{
    font-size: 20px;
    padding: 18px;
  }

  .producto-disp{
    flex-direction: column;
    gap: 15px;

    text-align: center;
  }

  .producto-info-disp{
    margin-left: 0;
    text-align: center;
  }

  .producto-nombre-disp{
    font-size: 20px;
  }

  .btn-encargar{
    width: 100%;
  }

}