.__logiplaydays {
  background-color: #fbbd84;

  .__hero {
    height: 100%;

    picture {
      background-color: #303133;
    }

    img {
      width: 100%;
      margin: 0;
    }
  }

  .__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #fff;
    font-weight: 900;
    padding: 125px 30px 100px;
    background-color: #303133;

    div {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 30px;
      flex-basis: 535px;
    }
    .__link-button {
      flex-basis: 335px;
      padding: 15px 25px;
      background-color: #00b8fc;
      color: inherit;
      font-weight: 900;
      font-size: 18px;
      text-decoration: none;
      text-align: center;
    }
    p {
      font-size: 16px;
      margin: 0;
    }
  }

  .__text__date {
    color: #333333;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    padding: 80px 00;

    p {
      margin: 0;
    }
  }

  .__grid__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
    gap: 20px;
    place-content: center;
    width: calc(100% - 290px);
    margin: 0 auto;
    padding: 0 20px 80px;
  }

  /* PRODUCT */
  .__item__product__container {
    font-family: granRegular;
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #fff;
    color: unset;
    text-decoration: none;

    .__item__image__container {
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        aspect-ratio: 1/1;
        max-width: 190px;
      }
    }

    .__item__info__container {
      display: grid;
      grid-template-rows: 100px 40px auto;
      gap: 5px;
      align-items: center;

      h3 {
        color: black;
        font-size: 14px;
        font-weight: normal;
        margin: 0;
        min-height: 55px;
        text-wrap: pretty;
        word-break: break-all;
      }
      .__item__pricing__container {
        display: flex;
        flex-wrap: wrap-reverse;
        align-items: center;
        gap: 0 5px;
        font-size: 14px;

        .__price {
          color: black;
          font-size: 16px;
        }

        .__old__price {
          color: #b7b7b7;
          text-decoration: line-through;
        }
      }

      .__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;

        .__tag {
          border-radius: 4px;
          background-color: var(--accent);
          color: black;
          font-size: 10px;
          font-weight: lighter;
          padding: 5px 8px;
        }
        .__tag__stock {
          color: #fff;
          background-color: #3d9b04;
        }
        .__tag__sin__stock {
          color: #990000;
          background-color: #ff5a5a;
        }
        .__tag__poco__stock {
          color: #553400;
          background-color: #ffa500;
        }
      }

      .__item__buttons__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;

        button {
          border-radius: 4px;
          cursor: pointer;
          font-size: 14px;
          text-align: center;
          text-decoration: none;
          padding: 10px;
          width: 100%;
        }

        .__item__btn__main {
          background-color: var(--accent);
          color: white;
          border: 2px solid transparent;
          transition: all ease 0.2s;
          -moz-transition: all ease 0.2s;
          -webkit-transition: all ease 0.2s;
          /* width: 100%; */
        }

        .__item__btn__main:hover {
          background-color: var(--accent-dark);
          border: 2px solid var(--accent-dark);
          color: white;
        }

        .__item__btn__secondary {
          background-color: white;
          color: var(--accent);
          border: 2px solid var(--accent);
          transition: all ease 0.2s;
          -moz-transition: all ease 0.2s;
          -webkit-transition: all ease 0.2s;
          /* width: 100%; */
          height: fit-content;
        }
        .__item__btn__secondary:hover {
          background-color: var(--accent-dark);
          border: 2px solid var(--accent-dark);
          color: white;
        }

        .__disabled {
          background-color: #9ea6af;
          pointer-events: none;
        }
      }
    }
  }
}
