.about__section{
    display: flex;
    justify-content: space-evenly;
}
.product__items--link:hover,
.product__items--content__title a:hover,
.product__items--price a:hover {
    text-decoration: underline;
}



/* -------------- */
   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .index-location {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
        background: url("img/other/BG1.jpeg");
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }

    .main-container {
      width: 100%;
      max-width: 500px;
      /* background-color: #f9f9f9; */
      border-radius: 10px;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
      padding: 10px;
       /* background: url("img/other/BG1.jpeg");
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover; */
    }

    .image-container {
      position: relative;
      width: 100%;
      margin-bottom: 10px;
    }

    .image-container img {
      width: 100%;
      display: block;
      border-radius: 10px;
    }

    .text-over-image {
      position: absolute;
      top: 60%;
      left: 50%;
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 40px;
      font-weight: 700;
      font-family: sans-serif;
      transform: translate(-50%, -50%);
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }

    .small-images {
      display: flex;
      flex-direction: column;
      gap: 10px;
       /* background: url("img/other/BG1.jpeg");
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover; */
    }

    .loc {
        height: auto;
      display: flex;
      gap: 15px;
      /* background-color: antiquewhite; */
      padding: 10px;
      border-radius: 8px;
      align-items: center;
    }

    .loc img {
      width: 80px;
      height: auto;
      border-radius: 5px;
    }

    .loc a {
      text-decoration: none;
      color: green;
    }

    .loc a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .index-location {
        flex-direction: column;
        align-items: center;
      }

      .main-container {
        max-width: 90%;
      }
    }