.user-products-page {
  background: #f7f9fc;
  padding-top: 32px;
  padding-bottom: 56px;
}

.user-products-layout {
  align-items: flex-start;
}

.user-products-sidebar {
  position: sticky;
  top: 110px;
}

.user-products-profile-card,
.user-products-toolbar {
  background: #ffffff;
  border: 1px solid #edf0f5;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.user-products-profile-card {
  padding: 18px;
}

.user-products-profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f2f6;
}

.user-products-avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3b55 0%, #ff6f7f 100%);
  color: #fff;
  font-size: 20px;
  flex: 0 0 48px;
}

.user-products-profile-head h5 {
  margin: 2px 0 0;
  color: #111827;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.user-products-label {
  display: block;
  color: #8a94a6;
  font-size: 13px;
  font-weight: 600;
}

.user-products-photo-card {
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef1f6;
  background: #f5f7fb;
}

.user-products-photo-card img {
  width: 100%;
  min-height: 170px;
  max-height: 230px;
  object-fit: cover;
  display: block;
}

.user-products-info-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.user-products-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #f7f9fc;
  color: #5b6678;
}

.user-products-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #ff344d;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  flex: 0 0 38px;
}

.user-products-info-item span:not(.user-products-info-icon) {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  color: #8a94a6;
}

.user-products-info-item b {
  display: block;
  margin-top: 3px;
  color: #354052;
  font-size: 15px;
}

.user-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  margin-bottom: 26px;
}

.user-products-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 17px;
  background: #f7f9fc;
  color: #596477;
  font-weight: 600;
  white-space: nowrap;
}

.user-products-count b {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff344d;
  color: #fff;
  font-size: 16px;
}

.user-products-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
}

.user-products-search-wrap {
  position: relative;
  width: min(100%, 320px);
}

.user-products-search-wrap i {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a94a6;
  font-size: 16px;
  pointer-events: none;
}

.user-products-search-wrap .form-control {
  height: 52px;
  border: 1px solid #e1e6ef;
  border-radius: 16px;
  padding-left: 46px;
  color: #354052;
  box-shadow: none;
}

.user-products-search-wrap .form-control:focus {
  border-color: #ff445d;
  box-shadow: 0 0 0 4px rgba(255, 52, 77, 0.1);
}

.user-products-search-btn {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff304f 0%, #e62f45 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(255, 48, 79, 0.24);
  cursor: pointer;
}

.user-products-search-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.user-products-grid {
  overflow: visible;
}

.user-products-pagination {
  margin-top: 18px;
}

@media (max-width: 1199.98px) {
  .user-products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .user-products-filter {
    justify-content: flex-start;
  }

  .user-products-search-wrap {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .user-products-sidebar {
    position: static;
    margin-bottom: 20px;
  }

  .user-products-profile-card {
    padding: 14px;
  }

  .user-products-photo-card img {
    max-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .user-products-page {
    padding-top: 18px;
  }

  .user-products-toolbar {
    padding: 14px;
    border-radius: 20px;
  }

  .user-products-count {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .user-products-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .user-products-search-btn {
    width: 100%;
  }
}
html,
body,
body *:not(i):not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands):not([class^="fa-"]):not([class*=" fa-"]):not([class^="icon_"]):not([class*=" icon_"]) {
    font-family: var(--font-geist);
}