.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f4f4f4;
  }
  
  .header-left,
  .header-right {
    width: 200px;
    flex-shrink: 0;
    justify-content: center;
  }

  .header-center {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
  
  .header-left img {
    height: 80px;
  }
  
  .header-center {
    flex: 1;
    justify-content: center;
  }
  
  #searchInput {
    width: 100%;
    max-width: 500px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .header-right {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-right > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .bag-link,
  .offers-link {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .bag-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #3d3d3d;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
  }