/* Ã¢â€â‚¬Ã¢â€â‚¬ Section Ã¢â€â‚¬Ã¢â€â‚¬ */
    .products-section {
      padding: 52px 0px 72px;
      display: block !important;
      /* max-width: 1200px; */
      /* margin: 0 auto; */
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Heading Ã¢â€â‚¬Ã¢â€â‚¬ */
    .section-heading {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
    }
    .section-heading .all-word {
      font-size: 2.2rem;
      font-weight: 800;
      color: #0bc5c5;
      letter-spacing: -.5px;
    }
    .section-heading .rest {
      font-size: 1.15rem;
      font-weight: 700;
      color: #1a1a1a;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Filter tabs Ã¢â€â‚¬Ã¢â€â‚¬ */
    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
    }
    .filter-tab {
      background: #fff;
      border: 1.5px solid #ddd;
      color: #333;
      font-family: 'Manrope', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      padding: .52rem 1.2rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all .18s ease;
      text-align: center;
      line-height: 1.3;
      white-space: nowrap;
    }
    .filter-tab:hover {
      border-color: #0bc5c5;
      color: #0bc5c5;
    }
    .filter-tab.active {
      background: #0bc5c5;
      border-color: #0bc5c5;
      color: #fff;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Product grid Ã¢â€â‚¬Ã¢â€â‚¬ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Product card Ã¢â€â‚¬Ã¢â€â‚¬ */
    .product-card {
      
padding: 15px;
      
cursor: pointer;
      
display: flex;
      
flex-direction: column;
    }
    .product-item{
        background: #fff;
        border-radius: 14px;
        border: 1px solid #f0f0f0;
        padding: 5px;
        transition: transform .2s ease, box-shadow .2s ease;
        overflow: hidden;
        text-decoration: none;
        /* height: 550px; */
    }
    .product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 34px rgba(0,0,0,.09);
    }

    /* hidden by default; shown by JS */
    .product-card.hidden { display: none; }

    .card-img-wrap {
      background: #f7f7f7;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 20px 16px;
      min-height: 190px;
    }
    .card-img-wrap img {
      max-height: 150px;
      object-fit: contain;
      transition: transform .3s ease;
    }
    .product-card:hover .card-img-wrap img {
      transform: scale(1.05);
    }

    .card-body-inner {
      padding: 14px 12px 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .card-category {
      font-size: .68rem;
      font-weight: 700;
      color: #0bc5c5;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 5px;
    }
    .card-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .card-desc {
      font-size: .78rem;
      color: #777;
      line-height: 1.55;
      flex: 1;
      margin-bottom: 12px;
    }
    .card-price-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }
    .price-now { font-size: .95rem; font-weight: 800; color: #1a1a1a; }
    .price-old { font-size: .8rem; color: #aaa; text-decoration: line-through; }
    .price-save {
      font-size: .68rem;
      font-weight: 700;
      background: #e6faf5;
      color: #0a9e7a;
      padding: 2px 7px;
      border-radius: 20px;
    }
    .btn-add {
      display: block;
      width: 100%;
      background: #f59e0b;
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .6rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background .18s, transform .15s;
    }
    .btn-add:hover { background: #d97706; transform: translateY(-1px); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Empty state Ã¢â€â‚¬Ã¢â€â‚¬ */
    .empty-state {
      display: none;
      text-align: center;
      padding: 48px 0;
      color: #aaa;
      font-size: .95rem;
      font-weight: 600;
      grid-column: 1 / -1;
    }

    @media (max-width: 480px) {
      .section-heading .all-word { font-size: 1.7rem; }
      .section-heading .rest { font-size: .95rem; }
    }

    .btn-group {
  width: 80%;
  display: inline-flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid #00BFCF;
  font-family: sans-serif;
  cursor: pointer;
  user-select: none;
}
.btn-details {
  width: 40%;
  padding: 10px 20px;
  background: #fff;
  color: #111;
  border: none;
  border-right: 1.5px solid #00BFCF;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-cart {
  width: 60%;
  padding: 10px 22px;
  background: #00BFCF;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-cart :hover{
    color: #222!important;
}

/* Responsive: full-width on mobile */
@media (max-width: 480px) {
  .btn-group { width: 100%; }
  .btn-details, .btn-cart { flex: 1; text-align: center; }
}