:root {
  color-scheme: dark;
  --bg: #070a12;
  --surface: #0d1320;
  --surface-2: #121b2b;
  --surface-3: #172235;
  --border: rgba(148, 163, 184, 0.2);
  --border-strong: rgba(148, 163, 184, 0.34);
  --text: #f5f7fb;
  --muted: #92a0b6;
  --blue: #60a5fa;
  --blue-strong: #2563eb;
  --orange: #fb923c;
  --orange-strong: #ea580c;
  --green: #34d399;
  --red: #fb7185;
  --yellow: #facc15;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.18), transparent 34rem),
    radial-gradient(circle at 95% 10%, rgba(234, 88, 12, 0.12), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

[v-cloak] {
  display: none;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 10, 18, 0.86);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  display: flex;
  width: min(1500px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.32), rgba(234, 88, 12, 0.2));
  color: #fff;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 6px;
}

.nav-link,
.lang-button {
  display: inline-flex;
  min-height: 40px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 160ms ease;
}

.nav-link:hover,
.nav-link.router-link-active,
.lang-button:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-button {
  min-width: 48px;
  border-color: var(--border);
}

.page {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.page-narrow {
  width: min(1060px, calc(100% - 32px));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(18, 27, 43, 0.96), rgba(13, 19, 32, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--hero-glow, rgba(96, 165, 250, 0.14));
  content: "";
  filter: blur(15px);
  right: -160px;
  top: -220px;
}

.hero-eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.source-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.source-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13, 19, 32, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transition: 180ms ease;
}

.source-card:hover {
  border-color: var(--card-accent, rgba(96, 165, 250, 0.6));
  transform: translateY(-3px);
}

.source-card::after {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--card-glow, rgba(96, 165, 250, 0.13));
  content: "";
  filter: blur(4px);
  right: -90px;
  top: -85px;
}

.source-card.orange {
  --card-accent: rgba(251, 146, 60, 0.72);
  --card-glow: rgba(234, 88, 12, 0.15);
}

.source-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 15px;
  color: var(--blue);
  font-weight: 900;
}

.source-card.orange .source-icon {
  color: var(--orange);
}

.source-card h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.source-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.card-action {
  display: inline-flex;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.orange .card-action {
  color: var(--orange);
}

.section {
  margin-top: 34px;
}

.section-heading {
  display: flex;
  margin-bottom: 14px;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.88rem;
}

.history-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.history-link {
  display: grid;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(13, 19, 32, 0.76);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.history-link:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.history-source {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.12);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.history-source.source-1688 {
  background: rgba(251, 146, 60, 0.12);
  color: var(--orange);
}

.history-key {
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.87rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-time,
.empty-state {
  color: var(--muted);
  font-size: 0.84rem;
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  text-align: center;
}

.source-hero {
  --hero-glow: rgba(251, 146, 60, 0.14);
  padding-block: 34px;
}

.source-hero.taobao {
  --hero-glow: rgba(96, 165, 250, 0.14);
}

.source-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.report-form {
  display: flex;
  max-width: 780px;
  margin-top: 26px;
  gap: 10px;
}

.field,
.select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 11px;
  background: rgba(5, 8, 15, 0.72);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field:focus,
.select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12);
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-2);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: 160ms ease;
}

.button:hover:not(:disabled) {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.button-primary {
  border-color: rgba(96, 165, 250, 0.5);
  background: linear-gradient(135deg, var(--blue-strong), #1d4ed8);
}

.button-orange {
  border-color: rgba(251, 146, 60, 0.6);
  background: linear-gradient(135deg, var(--orange-strong), #c2410c);
}

.state-panel {
  display: grid;
  min-height: 330px;
  padding: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13, 19, 32, 0.8);
  text-align: center;
}

.state-panel h2 {
  margin: 18px 0 8px;
}

.state-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(148, 163, 184, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.report-heading {
  display: flex;
  margin-bottom: 22px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.report-heading h1 {
  margin: 0 0 5px;
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  letter-spacing: -0.035em;
}

.report-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.key-chip {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.stats-grid {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(13, 19, 32, 0.88);
}

.stat-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.2;
}

.stat-value.good {
  color: var(--green);
}

.filters {
  display: grid;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(13, 19, 32, 0.78);
  grid-template-columns: minmax(240px, 2fr) minmax(160px, 1fr) minmax(190px, 1fr);
  gap: 10px;
}

.filters.taobao-filters {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-summary {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.result-stack {
  display: grid;
  gap: 16px;
}

.result-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13, 19, 32, 0.92);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
  grid-template-columns: 310px minmax(0, 1fr);
}

.image-column {
  display: grid;
  padding: 14px;
  border-right: 1px solid var(--border);
  background: rgba(5, 8, 15, 0.48);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}

.image-box,
.image-placeholder {
  position: relative;
  display: grid;
  min-height: 150px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #080c14;
}

button.image-box {
  width: 100%;
  padding: 0;
  cursor: zoom-in;
}

.image-box img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.image-box:hover img {
  transform: scale(1.025);
}

.image-placeholder {
  padding: 20px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.image-tag {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  padding: 4px 7px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 7px;
  background: rgba(7, 10, 18, 0.86);
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 900;
}

.image-tag.orange {
  border-color: rgba(251, 146, 60, 0.4);
  color: var(--orange);
}

.data-column {
  min-width: 0;
  padding: 20px;
}

.card-meta {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-meta h2,
.card-meta h3 {
  margin: 0 0 5px;
  font-size: 1.12rem;
}

.card-meta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.badge {
  display: inline-flex;
  padding: 5px 8px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge.good {
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
  color: var(--green);
}

.badge.warn {
  border-color: rgba(251, 113, 133, 0.3);
  background: rgba(251, 113, 133, 0.08);
  color: var(--red);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

th {
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr.lowest td {
  background: rgba(52, 211, 153, 0.055);
}

.product-name {
  min-width: 230px;
  max-width: 430px;
  font-weight: 650;
}

.price {
  color: var(--orange);
  font-weight: 850;
  white-space: nowrap;
}

.shop {
  min-width: 140px;
  color: var(--muted);
}

.actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.action-link,
.like-button {
  display: inline-flex;
  min-height: 32px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--blue);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.like-button {
  color: var(--muted);
}

.like-button.liked {
  border-color: rgba(251, 113, 133, 0.35);
  background: rgba(251, 113, 133, 0.1);
  color: var(--red);
}

.guide-banner {
  display: flex;
  margin-bottom: 14px;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 12px;
  background: rgba(251, 146, 60, 0.07);
  color: #fed7aa;
  font-size: 0.84rem;
}

.guide-banner button {
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox,
.modal-backdrop {
  position: fixed;
  z-index: 100;
  display: grid;
  padding: 22px;
  background: rgba(2, 4, 9, 0.88);
  inset: 0;
  place-items: center;
  backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  display: grid;
  width: min(1100px, 96vw);
  max-height: 92vh;
  gap: 10px;
  place-items: center;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: 82vh;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #05080f;
  object-fit: contain;
}

.lightbox-title {
  color: #dbe4f1;
  font-size: 0.86rem;
  text-align: center;
}

.close-button {
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-2);
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-trigger {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 146, 60, 0.55);
  border-radius: 18px;
  background: linear-gradient(145deg, #ea580c, #c2410c);
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.28);
  cursor: pointer;
  font-size: 1.35rem;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  z-index: 69;
  right: 24px;
  bottom: 94px;
  width: min(420px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: #0d1320;
  box-shadow: var(--shadow);
}

.cart-header,
.cart-footer {
  display: flex;
  padding: 15px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.cart-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
}

.cart-header h3 {
  margin: 0;
  font-size: 1rem;
}

.cart-list {
  display: grid;
  max-height: 310px;
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  gap: 7px;
  list-style: none;
}

.cart-item {
  display: grid;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cart-item strong,
.cart-item a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item a {
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.72rem;
}

.remove-button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(251, 113, 133, 0.08);
  color: var(--red);
  cursor: pointer;
}

.modal-card {
  width: min(560px, 96vw);
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 0 0 8px;
}

.modal-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.modal-card textarea {
  width: 100%;
  min-height: 190px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  background: #060912;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  resize: vertical;
}

.modal-actions {
  display: flex;
  margin-top: 14px;
  justify-content: flex-end;
  gap: 8px;
}

.toast-stack {
  position: fixed;
  z-index: 120;
  top: 82px;
  right: 20px;
  display: grid;
  width: min(360px, calc(100vw - 40px));
  gap: 8px;
}

.toast {
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: #141d2d;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  font-size: 0.84rem;
}

.toast.success {
  border-color: rgba(52, 211, 153, 0.35);
  color: #a7f3d0;
}

.toast.error {
  border-color: rgba(251, 113, 133, 0.35);
  color: #fecdd3;
}

.mobile-label {
  display: none;
}

@media (max-width: 1050px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .image-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar-inner,
  .page,
  .page-narrow {
    width: min(100% - 22px, 1500px);
  }

  .topbar-inner {
    min-height: 60px;
    gap: 8px;
  }

  .brand span:last-child {
    display: none;
  }

  .main-nav {
    gap: 2px;
  }

  .nav-link,
  .lang-button {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .page {
    padding-top: 24px;
  }

  .hero {
    padding: 26px 20px;
    border-radius: 19px;
  }

  .source-grid,
  .result-card {
    grid-template-columns: 1fr;
  }

  .report-form,
  .report-heading,
  .card-meta {
    flex-direction: column;
  }

  .report-heading {
    display: flex;
  }

  .report-form .button {
    width: 100%;
  }

  .filters,
  .filters.taobao-filters {
    grid-template-columns: 1fr;
  }

  .result-card {
    overflow: visible;
  }

  .image-column {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-box img {
    height: 155px;
  }

  .data-column {
    padding: 14px;
  }

  .badges {
    justify-content: flex-start;
  }

  .history-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .history-time {
    display: none;
  }

  .cart-trigger {
    right: 14px;
    bottom: 14px;
  }

  .cart-drawer {
    right: 11px;
    bottom: 82px;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 94px;
  }

  .image-column {
    grid-template-columns: 1fr;
  }

  .image-box img {
    height: 210px;
  }

  .table-scroll {
    border: 0;
    overflow: visible;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 9px;
  }

  tbody tr {
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

  td {
    min-width: 0 !important;
    max-width: none !important;
    padding: 5px 0;
    border: 0;
  }

  .product-name {
    min-width: 0;
  }

  .actions {
    margin-top: 5px;
  }
}
