/**********************************************
 * POPULAR PRODUCTS SECTION
 **********************************************/

/* Font Yükleme */
@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
  }
  
  /**********************************************
   * Ürün Kartları Bölümü
   **********************************************/
  
  /* Popular Products Bölümü */
  .popular-products {
    display: flex;
    flex-wrap: wrap; /* Kartların bir sonraki satıra geçmesini sağlar */
    gap: 25px; /* Kartlar arasındaki boşluk */
    justify-content: flex-start; /* Kartları soldan hizala */
    margin: 51px auto; /* Üst ve alt boşluk */
    max-width: 1440px; /* İçerik genişliği */
    padding: 0 20px; /* Sağ ve sol boşluk */
  }
  
  /* Ürün Kartı */
  .product-card {
    width: 310px; /* Sabit genişlik */
    height: 450px; /* Sabit yükseklik */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #000;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Kart boyutu sabit kalsın */
  }
  
  /* Hover Durumu */
  .product-card:hover {
    transform: translateY(-5px); /* Hover durumunda yukarı hareket */
  }
  
  /* Görsel Alanı */
  .product-image {
    width: 310px; /* Görsel genişliği sabit */
    height: 310px; /* Görsel yüksekliği sabit */
    border-radius: 20px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  /* Görsel */
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  /* Kalp Butonu */
  .favorite-button {
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
  }
  
  /* Kalp İkonu */
  .heart-icon {
    width: 30px;
    height: 30px;
  }
  
  .heart-path {
    stroke: #333333;
    fill: none;
    transition: all 0.3s ease;
  }
  
  /* Dolmuş ve kırmızı kalp */
  .favorite-button.active .heart-path {
    stroke: none;
    fill: #B53A3A;
  }
  
  /* Yıldızlar ve Reyting */
  .product-rating {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
  }
  
  /* Yıldızlar */
  .stars {
    display: flex;
    gap: 3px;
  }
  
  .stars svg {
    width: 18.49px;
    height: 18.49px;
  }
  
  /* Reyting Text */
  .rating-text {
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
  }
  
  .rating-text span {
    color: rgba(0, 0, 0, 0.60);
  }
  
  /* Reklam Yazısı */
  .product-discount {
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #717171;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  
  /* Ürün İsmi */
  .product-names {
    font-family: "Satoshi", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 8px;
    line-height: normal;
  }
  
  /* Ürün Fiyatı */
  .product-price {
    display: flex;
    gap: 8px;
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
  }
  
  .product-price .current-price {
    color: #B53A3A;
  }
  
  .product-price .original-price {
    color: #717171;
    text-decoration-line: line-through;
    font-size: 14px;
    font-weight: 500;
  }
  
  /**********************************************
   * Bir Sonraki Div'i Alta Alma
   **********************************************/
  
  /* Popular Products sonrası gelen div */
  .popular-products + .next-div {
    margin-top: 50px; /* Üst boşluk */
    clear: both; /* Float etkisi varsa kaldır */
  }
  