
    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card-img {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #28a745;
      color: #fff;
      font-size: 17px;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 20px;
    }

    .price {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #fff;
      color: #28a745;
      font-size: 18px;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 20px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .category {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: #6c9da8;
      color: #fff;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 16px;
      font-weight: bold;
    }

    .wishlist {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: #fff;
      border-radius: 50%;
      padding: 8px;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .wishlist i {
      color: #e63946;
      font-size: 16px;
    }

    .card-content {
      padding: 15px;
      text-align: left;
    }

    .card-content h3 {
      font-size: 18px;
      font-weight: bold;
      color: #f56a00;
      margin: 0 0 10px;
    }

    .card-content .location {
      font-size: 14px;
      color: #333;
      margin-bottom: 10px;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: #555;
    }

    .rating i {
      color: #ffc107;
    }