* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }

 



  .hero {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 120px;
    
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
  }

  .hero-left {
    flex: 1;
  }

  .hero-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .hero-right {
    flex: 1;
  }

  .hero-right h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 15px;
  }

  .hero-right h2 {
    font-size: 15px;
    color: #666;
  }

  /* Responsive Tasarım */
  @media (max-width: 992px) {
    .hero-right h1 {
      font-size: 36px;
    }
    .hero-right h2 {
      font-size: 20px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding: 40px 20px;
    }

    .hero-content {
      flex-direction: column;
      text-align: center;
    }

    .hero-left, .hero-right {
      width: 100%;
    }

    .hero-right h1 {
      font-size: 32px;
    }

    .hero-right h2 {
      font-size: 18px;
    }
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }


  .urulerimiz-title{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
  }
  .card {
    width: calc(100% / 5 - 20px);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding-bottom: 15px;
  }

  .card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }

  .card h3 {
    margin: 10px 0 5px;
    font-size: 12px;
  }

  .card p {
    padding: 0 10px;
    font-size: 6px;
  }

  .card .fiyat {
    color: green;
    font-weight: bold;
    margin: 10px 0;
  }

  .buy-button {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: #D2292F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
  }

  .buy-button:hover {
    background-color: #ff7979;
  }

  @media (max-width: 992px) {
    .card {
      width: calc(100% / 3 - 20px);
    }
  }

  @media (max-width: 768px) {
    .card {
      width: calc(100% / 2 - 20px);
    }
  }

  @media (max-width: 480px) {
    .card {
      width: 100%;
    }
  }