/* Unikatowy namespace: wshi__* */

.wshi {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: inherit;
}

.wshi__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.wshi__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.wshi__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Badge (kółko w prawym górnym rogu ikony) */
.wshi__badge {
  position: absolute;
  top: -6px;
  right: -6px;

  min-width: 18px;
  height: 18px;
  padding: 0 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #FDA635; /* wymagany kolor */
  color: #ffffff;

  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
}

.wshi__badge.is-zero {
  display: none; /* chowamy gdy 0 */
}

/* Total obok koszyka */
.wshi__total {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
}

/* Opcjonalnie delikatne dopasowanie spacingu jak w mockup */
.wshi__link--cart {
  margin-right: -6px;
}

/* Responsive: mniejsze na mobilu */
@media (max-width: 480px) {
  .wshi {
    gap: 12px;
  }
  .wshi__icon {
    width: 26px;
    height: 26px;
  }
  .wshi__total {
    font-size: 14px;
  }
}
