* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
/** ============= BANNER =========== */
* img{
  cursor: pointer;
}
#banner_img_homepage img{
  width: 100%;
  margin-bottom: 25px;
  
}
#advertisement_homepage_top img{
  margin-left: 18%;
  margin-bottom: 40px;
}
#homepage_top_parent{
  width: 80%;
  margin: auto;
  background-color: #ebeeef;
  padding: 15px 25px;
}
.head_span {
  font-size: 24px;
}
#homepage_top_parent_div button {
  color: rgb(26, 26, 26);
  border: 0px;
  font-size: 14px;
  background-color: #ebeeef;
}
#homepage_top_parent_div button:hover {
  cursor: pointer;
  border-bottom: 2px solid rgb(26, 26, 26);
}
#homepage_top_parent_div {
  display: flex;
  justify-content: space-between;
}
/* —— Product cards (OLX-style) —— */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.product-card__media {
  position: relative;
  background: #f2f4f5;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  cursor: pointer;
}

.product-card__favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #717171;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: color 0.15s ease, transform 0.15s ease;
}

.product-card__favorite:hover {
  color: #002f34;
  transform: scale(1.05);
}

.product-card__favorite.is-favorited {
  color: #002f34;
}

.product-card__body {
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.product-card__price {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #002f34;
  line-height: 1.2;
}

.product-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #002f34;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__location {
  margin: 6px 0 0;
  font-size: 12px;
  color: #707070;
  line-height: 1.3;
}

.product-card__date {
  margin: 10px 0 0;
  font-size: 11px;
  color: #9e9e9e;
  text-align: right;
  margin-top: auto;
  padding-top: 4px;
}

#homepage_top_child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  align-items: stretch;
  margin: auto;
  height: auto;
}

/* * === 2nd DIV === */

#homepage_scnd_parent {
  width: 77%;
  margin: auto;
  margin-top: 30px;
}
#homepage_scnd_child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  align-items: stretch;
  margin: auto;
  margin-top: 5px;
  height: auto;
}

#homepage_load_more {
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
  width: 120px;
  font-size: 16px;
  height: 50px;
  margin-top: 15px;
  border: 2px solid black;
  cursor: pointer;
  border-radius: 5px;
  background-color: initial;
  margin-bottom: 27px;
}

#homepage_load_more:hover {
  border: 5px solid black;
}

/* * -------------- ADVERTISEMENT DIV ------------- */

#homepage_advertisement_div {
  width: 70%;
  margin: auto;
}
#homepage_advertisement_child_div {
  display: grid;
  width: 100%;
  margin: auto;
  margin-left: -50px;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
#homepage_advertisement_child_div img {
  height: 180px;
  width: 170px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  transition-duration: 150ms;
  background-color: #fff;
}
#homepage_advertisement_scnd_child_div {
  margin-top: 1px;
  margin-bottom: 40px;
  margin-left: -55px;
  position: sticky;
}
#homepage_advertisement_child_div img:hover {
  /* height: 220px;
    width: 200px; */
  transform: scale(1.1);
  margin-top: -20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 3;
}

/** === advertisement === */

#advertisement_homepage_bottom {
  margin-top: 30px;
  margin-left: 20%;
}
#advertisement_homepage_bottom img {
  width: 75%;
}





  /* ?  ====== MEDIA QUERY ======  */
  
  /** MEDIUM SCREEN */
  @media screen and (max-width: 1280px) {
    #banner_img_homepage img {
      height: 120px;
    }
    #advertisement_homepage_top img{
      width: 85%;
      margin: 40px 0px 10px 105px;
    }
    #homepage_top_parent{
      width: 75%;
      height: auto;
      padding: 15px 35px;
      margin-top: 20px;
    }
    #homepage_top_parent_div button {
      font-size: 14px;
    }
    #homepage_top_child {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      padding: 10px;
    }
    #homepage_scnd_parent {
      width: 85%;
    }
    #homepage_scnd_child .product-card__title {
      font-size: 14px;
    }
    #homepage_scnd_child .product-card__date {
      font-size: 10px;
    }
    #homepage_load_more {
      margin-left: 50%;
      transform: translateX(-50%);
      width: 140px;
      font-size: 18px;
      height: 45px;
      margin-top: 35px;
      margin-bottom: 25px;
    }
    #homepage_advertisement_child_div {
      width: 90%;
      margin-left: 5%;
      grid-template-columns: repeat(5, 1fr);
    }
    #homepage_advertisement_scnd_child_div {
      margin-bottom: 40px;
      margin-left: 4.5%;
      
    }
    #homepage_advertisement_scnd_child_div img{
      width: 40%;
    } 
    #advertisement_homepage_bottom img{
      width: 93%;
      margin-left: -10%;
      margin-bottom: 25px;
    }
  }
  @media screen and (max-width: 915px) {
    
    #advertisement_homepage_top img{
      margin-left: 8%;
      margin-top: -0.10%;
    }
    #homepage_scnd_child {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    #homepage_advertisement_child_div {
      margin-left: -30px;
      grid-template-columns: repeat(3, 1fr);
    }
    #homepage_advertisement_scnd_child_div {
      width: 150%;
      margin-left: -35px;  
    }



  }
  
   /* SMALL SCREEN */
   @media screen and (max-width: 770px) {
    #banner_img_homepage img {
      height: 0px;
    }
    #advertisement_homepage_top img{
      width: 70%;
      margin: -15px 0px 0px 15%;
    }
    #homepage_top_parent_div button {
      font-size: 11px;
    }
    #homepage_top_parent{
      width: 65%;
      height: 560px;
      padding: 15px 20px;
      margin-top: 20px;
    }
    .head_span {
      font-size: 20px;
    }

    #homepage_top_child {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      padding: 7px;
    }
    #homepage_top_child .product-card__title {
      font-size: 13px;
    }
    #homepage_top_child .product-card__price {
      font-size: 1rem;
    }
    #homepage_top_child .product-card__date {
      font-size: 10px;
    }
    #homepage_scnd_parent {
      width: 75%;
      margin-left: 14%;
    }
    #homepage_scnd_child {
      grid-template-columns: repeat(2, 1fr);
    }
    #homepage_scnd_child .product-card__title {
      font-size: 13px;
    }
    #homepage_scnd_child .product-card__price {
      font-size: 1rem;
    }
    #homepage_scnd_child .product-card__date {
      font-size: 10px;
    }
    #homepage_scnd_child .product-card__body {
      padding: 10px 12px;
    }
    #homepage_load_more {
      margin-left: 50%;
      transform: translateX(-50%);
      width: 100px;
      font-size: 14px;
      height: 40px;
      margin-top: 25px;
    }
    #homepage_load_more:hover {
      border: 3.5px solid black;
    }
    #homepage_advertisement_child_div {
      margin-left:1%;
      grid-template-columns: repeat(3, 1fr);
    }
    #homepage_advertisement_scnd_child_div {
      margin-bottom: 40px;
      margin-left: 3px;
    }
    #homepage_advertisement_scnd_child_div img{
      width: 48.9%;
    }
  
  }
  
  @media screen and (max-width: 576px) {
    #advertisement_homepage_top img{
      width: 70%;
      margin: 15px 0px 0px 60px;
    }
    #homepage_top_parent{
      height: 1120px;
      padding: 15px 35px;
      margin-top: 20px;
    }
    .head_span {
      font-size: 18px;
    }
    #homepage_top_parent_div button {
      font-size: 10px;
    }
    #homepage_top_child {
      margin-left: -12px;
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
    }
    #homepage_top_child .product-card__title {
      font-size: 13px;
    }
    #homepage_top_child .product-card__price {
      font-size: 1rem;
    }
    #homepage_top_child .product-card__date {
      font-size: 10px;
    }
    #homepage_scnd_parent {
      width: 65%;
    }
    #homepage_scnd_child {
      grid-template-columns: repeat(1, 1fr);
    }
    #homepage_scnd_child .product-card__title {
      font-size: 13px;
    }
    #homepage_scnd_child .product-card__price {
      font-size: 1rem;
    }
    #homepage_scnd_child .product-card__date {
      font-size: 10px;
    }
    #homepage_scnd_child .product-card__body {
      padding: 12px 14px;
    }
    #homepage_load_more {
      margin-left: 50%;
      transform: translateX(-50%);
      width: 100px;
      font-size: 14px;
      height: 40px;
      margin-top: 25px;
    }
    #homepage_load_more:hover {
      border: 3.5px solid black;
    }
    #homepage_advertisement_child_div {
      margin-left: -25px;
      grid-template-columns: repeat(2, 1fr);
    }
    #homepage_advertisement_scnd_child_div {
      margin-bottom: 40px;
      margin-left: -25px;
    }
    #homepage_advertisement_scnd_child_div img{
      width: 60%;
    }
    #advertisement_homepage_bottom img {
      margin-left: -50px;
    }
  
  }

