.saved-products-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 24px 46px;
}

.saved-products-page__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 28px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.15), transparent 32%),
    radial-gradient(circle at left center, rgba(147, 51, 234, 0.12), transparent 42%),
    var(--card-background, #fff);
}

.saved-products-page__hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(45px);
  opacity: 0.6;
}

.saved-products-page__hero-orb--one {
  top: -100px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(249, 115, 22, 0.18);
}

.saved-products-page__hero-orb--two {
  bottom: -120px;
  left: 20%;
  width: 240px;
  height: 240px;
  background: rgba(147, 51, 234, 0.14);
}

.saved-products-page__hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.saved-products-page__hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #9333ea, #f97316);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.28);
  color: #fff;
  font-size: 23px;
}

.saved-products-page__hero-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.saved-products-page__eyebrow {
  margin-bottom: 5px;
  color: #8b5cf6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.saved-products-page__hero h1 {
  margin: 0 0 8px;
  color: var(--foreground, #111827);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.saved-products-page__hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-foreground, #667085);
  line-height: 1.55;
}

.saved-products-page__search-link {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.saved-products-page__hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.saved-products-page__count,
.saved-products-page__hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font-size: 13px;
}

.saved-products-page__count > i {
  color: #8b5cf6;
}

.saved-products-page__count strong {
  color: var(--foreground, #111827);
  font-size: 15px;
}

.saved-products-page__hero-note > i {
  color: #8b5cf6;
}

.saved-products-page__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.saved-products-page__search {
  position: relative;
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 620px;
}

.saved-products-page__search > i {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #98a2b3;
  font-size: 14px;
  transform: translateY(-50%);
}

.saved-products-page__search input {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 40px;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: 11px;
  background: #fff;
  color: var(--foreground, #111827);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.saved-products-page__search input:focus {
  border-color: rgba(124, 58, 237, 0.62);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.saved-products-page__search-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #98a2b3;
  cursor: pointer;
  transform: translateY(-50%);
}

.saved-products-page__search-clear:hover {
  background: rgba(17, 24, 39, 0.05);
  color: #344054;
}

.saved-products-page__toolbar-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #667085;
  font-size: 12px;
  white-space: nowrap;
}

.saved-products-page__toolbar-note > i {
  color: #8b5cf6;
}

.saved-products-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 18px;
}

.saved-products-page__grid[hidden],
.saved-products-page__empty[hidden] {
  display: none;
}

.saved-products-page__empty {
  max-width: 560px;
  margin: 46px auto;
  padding: 34px 28px 30px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.1), transparent 44%),
    #fff;
  box-shadow: 0 13px 30px rgba(17, 24, 39, 0.045);
  text-align: center;
}

.saved-products-page__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.15),
    rgba(249, 115, 22, 0.12)
  );
  color: #8b5cf6;
  font-size: 25px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.saved-products-page__empty h2 {
  margin: 0 0 8px;
  color: var(--foreground, #111827);
  font-size: 22px;
  line-height: 1.2;
}

.saved-products-page__empty p {
  max-width: 390px;
  margin: 0 auto 21px;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.saved-products-page__empty .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  margin-top:32px;
}


/* Product card */

.saved-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: visible;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 17px;
  background: var(--card-background, #fff);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
  transition: box-shadow 0.2s ease;
}

.saved-product-card:hover {
  border-color: rgba(17, 24, 39, 0.1);
  box-shadow: 0 17px 38px rgba(124, 58, 237, 0.12);
}

.saved-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.84;
  margin: 10px 10px 0;
  border-radius: 13px;
  background: #f8fafc;
}

.saved-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.saved-product-card:hover .saved-product-card__image {
  transform: scale(1.04);
}

.saved-product-card__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.12),
    rgba(249, 115, 22, 0.13)
  );
  color: #8b5cf6;
  font-size: 28px;
}

.saved-product-card__media-badges {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  pointer-events: none;
}

.saved-product-card__source-badge,
.saved-product-card__market-badge {
  max-width: 54%;
  overflow: hidden;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(8px);
  color: #344054;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.1);
}

.saved-product-card__source-badge small,
.saved-product-card__market-badge small {
  color: #667085;
  font-size: 10px;
  font-weight: 700;
}

.saved-product-card__market-badge {
  margin-left: auto;
  color: #4c1d95;
}

.saved-product-card__media-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
}

.saved-product-card__icon-button,
.saved-product-card__more-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #7c3aed;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.08);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.saved-product-card__icon-button:hover,
.saved-product-card__more-action:hover {
  background: #fff;
  color: #5b21b6;
  box-shadow: 0 5px 13px rgba(124, 58, 237, 0.18);
}

.saved-product-card__icon-button--remove {
  color: #ef4444;
}

.saved-product-card__icon-button--remove:hover {
  color: #dc2626;
}

.saved-product-card__overflow-wrap {
  position: relative;
}

.saved-product-card__overflow-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: 218px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(12px);
}

.saved-product-card__overflow-menu[hidden] {
  display: none;
}

.saved-product-card__overflow-action {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #344054;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.saved-product-card__overflow-action:hover {
  background: rgba(124, 58, 237, 0.08);
  color: #6d28d9;
}

.saved-product-card__overflow-action > i {
  width: 15px;
  color: #8b5cf6;
  text-align: center;
}

.saved-product-card__content {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px 15px 15px;
}

.saved-product-card__title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  margin: 0 0 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--foreground, #111827);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.32;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  cursor: pointer;
}

.saved-product-card__title:hover {
  color: #7c3aed;
}

.saved-product-card__category {
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 9px;
  padding: 4px 10px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 999px;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-product-card__supplier {
  min-height: 17px;
  overflow: hidden;
  margin: -3px 0 10px;
  color: #667085;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-product-card__metrics {
  display: grid;
  gap: 0;
  margin-bottom: 12px;
}

.saved-product-card__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding: 6px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.saved-product-card__metric span,
.saved-product-card__metric strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-product-card__metric span {
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

.saved-product-card__metric strong {
  color: var(--foreground, #111827);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.saved-product-card__metric.is-accent strong {
  color: #db2777;
}

.saved-product-card__metric.is-positive strong {
  color: #7c3aed;
}

.saved-product-card__metric.is-negative strong {
  color: #dc2626;
}

.saved-product-card__forecast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 13px;
  padding: 11px 12px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.06),
    rgba(249, 115, 22, 0.045)
  );
}

.saved-product-card__forecast-item {
  min-width: 0;
}

.saved-product-card__forecast-item:last-child {
  text-align: right;
}

.saved-product-card__forecast-item span,
.saved-product-card__forecast-item strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-product-card__forecast-item span {
  margin-bottom: 4px;
  color: #667085;
  font-size: 10px;
  font-weight: 600;
}

.saved-product-card__forecast-item strong {
  color: var(--foreground, #111827);
  font-size: 14px;
  font-weight: 800;
}

.saved-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.saved-product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
}

.saved-product-card__compare.is-active {
  border-color: #7c3aed;
  background: #7c3aed;
  color: #fff;
}

@media (max-width: 760px) {
  .saved-products-page {
    padding: 18px 14px 34px;
  }

  .saved-products-page__hero {
    padding: 20px;
  }

  .saved-products-page__hero-content {
    flex-wrap: wrap;
  }

  .saved-products-page__hero-icon {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    border-radius: 13px;
    font-size: 19px;
  }

  .saved-products-page__search-link {
    width: 100%;
    margin-left: 0;
  }

  .saved-products-page__hero-footer,
  .saved-products-page__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .saved-products-page__toolbar-note {
    white-space: normal;
  }

  .saved-products-page__search {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .saved-products-page__grid {
    grid-template-columns: 1fr;
  }

  .saved-product-card__actions {
    flex-wrap: wrap;
  }

  .saved-product-card__action {
    min-height: 34px;
  }
}
