    body {
      font-family: 'Inter', sans-serif;
      background: #f8fafc;
      margin: 0;
      padding: 0;
    }

    .search-bar-container {
      display: flex;
      justify-content: center;
      margin: 2rem 0 0.5rem 0;
      padding-top: 60px;
      
    }
    .search-bar {
      width: 100%;
      max-width: 400px;
      padding: 0.7rem 1.2rem;
      font-size: 1rem;
      border-radius: 24px;
      border: 1px solid #bbb;
      outline: none;
      transition: border-color 0.2s;
      background: #fff;
      box-sizing: border-box;
    }
    .search-bar:focus {
      border-color: #232f3e;
    }
    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin: 1.5rem 0 1rem 0;
    }
    .filters button {
      background: #fff;
      border: 1px solid #bbb;
      border-radius: 20px;
      padding: 0.5rem 1.2rem;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s, border 0.2s;
    }
    .filters button.active, .filters button:hover {
      background: #232f3e;
      color: #fff;
      border-color: #232f3e;
    }
    .filters #clearBtn {
      margin-left:1.5rem;
      background:#f44336;
      color:#fff;
      border:none;
    }
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      padding: 0 1rem 2rem 1rem;
      max-width: 1200px;
      margin: auto;
      justify-items: center;
    }
    .card-link-wrapper {
      text-decoration: none;
      color: inherit;
      display: block;
      transition: box-shadow 0.2s;
      width: 100%;
      max-width: 340px;
    }
    .card-link-wrapper:focus .card,
    .card-link-wrapper:hover .card {
      box-shadow: 0 6px 24px rgba(35,47,62,0.16);
    }
    .card {
      width: 100%;
      min-height: 410px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      overflow: hidden;
      position: relative;
      transition: box-shadow 0.2s;
    }
    .card-image-area {
      width: 100%;
      background: #f3f3f3;
      position: relative;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      min-height: 180px;
      background: #f3f3f3;
    }
    .discount-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: linear-gradient(90deg, #ff6a00 60%, #ffb347 100%);
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 4px 12px;
      border-radius: 14px;
      box-shadow: 0 2px 8px rgba(255,106,0,0.12);
      z-index: 2;
      letter-spacing: 0.5px;
    }
    .card-body {
      padding: 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #232f3e;
      min-height: 40px;
      word-break: break-word;
    }
    .card-category {
      font-size: 0.95rem;
      color: #888;
      margin-bottom: 0.7rem;
    }
    .card-price {
      font-size: 1.1rem;
      font-weight: 600;
      color: #e47911;
      margin-bottom: 0.7rem;
    }
    .card-link-btn {
      display: inline-block;
      background: #ffa41c;
      color: #232f3e;
      font-weight: 600;
      border-radius: 16px;
      padding: 0.5rem 1rem;
      text-align: center;
      margin-top: 0.5rem;
      transition: background 0.2s, color 0.2s;
    }
    .card-link-btn:hover {
      background: #ff9900;
      color: #fff;
    }
    #pagination {
      text-align: center;
      margin: 0.5rem 0 2rem 0;
    }
    #pagination button {
      margin: 0 4px;
      padding: 6px 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      background: #fff;
      color: #232f3e;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    #pagination button.active,
    #pagination button:hover:not(:disabled) {
      background: #232f3e;
      color: #fff;
      border-color: #232f3e;
    }
    #pagination button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    @media (max-width: 600px) {
      .products {
        grid-template-columns: 1fr;
      }
      .card-link-wrapper, .card {
        max-width: 100%;
      }
      .card {
        min-height: 340px;
      }
      .card img, .card-image-area {
        min-height: 120px;
      }
    }