.containerProduct {
    background-color: var(--box-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px rgb(0, 0, 0, 12%);
    padding: 45px;
    margin: 15px 0;
    width: 950px;
    display: grid;
    grid-template-columns: repeat (2, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "images info"
      "images description";
    grid-gap: 35px;
  }
  .box .images {
    grid-area: images;
    display: grid;
    grid-gap: 5px;
  }
  .box .images.img-holder img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  .box .images .img-holder.active-product {
    grid-area: active;
  }
  .box .images .img-holder:not(.active-product):hover {
    opacity: 0.95;
    cursor: pointer;
  }
  .box .basic-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .box .basic-info span {
    font-weight: 800;
    font-size: 25px;
  }
  .box .basic-info .options a {
    color: rgb(255, 255, 255);
    background-color: var(--secondary-color);
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
  }
  .box .basic-info .options img {
    width: 18px;
    height: 10px;
  }
  .box .basic-info .options a {
    background-color: var(--box-color);
  }
  .box .basic-info .options a:hover {
    color: black;
    background-color: var(--bg-colorBtn);
    transition: all 0.2s;
  }
  .box .description {
    grid-area: description;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .box .description p {
    color: black;
    font-size: 15px;
    line-height: 1.5;
  }
  .box .description .more-informations {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-color);
  }
  .box .description .features i {
    margin-right: 5px;
  }


  @media screen and (max-width: 600px) {

    .box .images {
      grid-area: images;
      display: flex;
      flex-direction: column;
      grid-gap: 5px;
      width: 125px;
    }

    .box .basic-info {
      gap: 10px;
    }
    .box .basic-info span {
      font-weight: 800;
      font-size: 15px;
    }
    .box .description {
      gap: 10px;
    }
    .box .description .more-informations {
      gap: 5px;
    }
  }