:root {
  color-scheme: light;
  --ink: #181513;
  --muted: #746c67;
  --soft: #a79f99;
  --line: #e9e4df;
  --surface: #fff;
  --canvas: #f7f4ef;
  --red: #e1251b;
  --red-deep: #b9140c;
  --red-soft: #fff0ed;
  --gold: #cf8c21;
  --green: #117a5b;
  --shadow: 0 16px 42px rgba(60, 43, 30, 0.08);
  --radius: 20px;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(225, 37, 27, 0.08), transparent 22rem),
    radial-gradient(circle at 92% 8%, rgba(218, 157, 65, 0.1), transparent 24rem),
    var(--canvas);
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 13px 13px 13px 5px;
  font-size: 21px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(225, 37, 27, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-actions,
.mode-switch {
  display: flex;
  align-items: center;
}

.topbar-actions {
  gap: 20px;
}

.mode-switch {
  gap: 9px;
  color: #554d48;
  font-size: 13px;
  cursor: pointer;
}

.mode-switch[hidden] {
  display: none;
}

.mode-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 38px;
  height: 22px;
  background: #d8d2cd;
  border-radius: 999px;
  transition: 180ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: 180ms ease;
}

.mode-switch input:checked + .switch-track {
  background: var(--ink);
}

.mode-switch input:checked + .switch-track::after {
  transform: translateX(16px);
}

.history-button {
  padding: 8px 0;
  color: var(--muted);
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 13px;
}

.history-button:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.hero {
  width: min(1040px, calc(100% - 40px));
  margin: 48px auto 42px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 span {
  position: relative;
  color: var(--red);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2%;
  right: -3%;
  bottom: 5px;
  height: 12px;
  background: #ffd9c8;
  border-radius: 3px;
  transform: rotate(-1.5deg);
}

.hero-subtitle {
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 15px;
}

.search-form {
  max-width: 820px;
  margin: 0 auto;
}

.search-shell {
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 206, 199, 0.86);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.search-shell:focus-within {
  border-color: rgba(225, 37, 27, 0.45);
  box-shadow:
    0 18px 50px rgba(60, 43, 30, 0.11),
    0 0 0 4px rgba(225, 37, 27, 0.07);
}

.search-shell svg {
  width: 23px;
  margin-left: 17px;
  fill: none;
  stroke: #827973;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-shell input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 16px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.search-shell input::placeholder {
  color: #aaa29c;
}

.search-shell button {
  height: 56px;
  padding: 0 27px;
  color: white;
  border: 0;
  border-radius: 16px;
  background: var(--red);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(225, 37, 27, 0.2);
  transition: 150ms ease;
}

.search-shell button:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.suggestions {
  min-height: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  color: var(--soft);
  font-size: 12px;
}

.suggestions > span {
  padding-top: 5px;
}

#historyChips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.history-chip {
  padding: 5px 10px;
  color: #665e58;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.history-chip:hover {
  color: var(--red);
  background: white;
}

.channel-search {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  text-align: left;
}

.channel-search-heading,
.channel-form,
.channel-select-wrap,
.channel-chips {
  display: flex;
  align-items: center;
}

.channel-search-heading {
  justify-content: space-between;
  gap: 24px;
}

.channel-search-heading h2 {
  margin: 3px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.channel-search-heading p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.channel-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.channel-form {
  gap: 12px;
  margin-top: 16px;
}

.channel-form > label {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.channel-select-wrap {
  min-width: 0;
  flex: 1;
  gap: 8px;
}

.channel-select-wrap select {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 38px 0 13px;
  color: var(--ink);
  border: 1px solid #dcd5cf;
  border-radius: 11px;
  outline: 0;
  background: white;
}

.channel-select-wrap select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 37, 27, 0.08);
}

.channel-select-wrap button {
  height: 44px;
  padding: 0 18px;
  color: white;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.channel-select-wrap button:hover {
  background: var(--red);
}

.channel-select-wrap button:disabled,
.channel-select-wrap select:disabled {
  cursor: wait;
  opacity: 0.6;
}

.channel-chips {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.channel-chip {
  padding: 7px 10px;
  color: #625a55;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 11px;
}

.channel-chip:hover,
.channel-chip.active {
  color: var(--red);
  border-color: #efb3ae;
  background: var(--red-soft);
}

.result-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 60px;
}

.result-heading,
.result-title-row,
.filter-panel,
.quick-filters,
.advanced-filters,
.check-filter,
.price-filter {
  display: flex;
  align-items: center;
}

.result-heading {
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px 16px;
}

.result-title-row {
  gap: 10px;
}

.result-heading h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.result-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.data-badge {
  padding: 4px 8px;
  color: var(--gold);
  border: 1px solid rgba(207, 140, 33, 0.2);
  border-radius: 999px;
  background: #fff8e8;
  font-size: 10px;
  font-weight: 700;
}

.data-badge.live {
  color: var(--green);
  border-color: rgba(17, 122, 91, 0.2);
  background: #ebf8f2;
}

.filter-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-size: 13px;
}

.filter-toggle svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.filter-toggle span {
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 99px;
  font-size: 10px;
}

.filter-panel {
  justify-content: space-between;
  gap: 20px;
  padding: 13px 14px 13px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quick-filters {
  gap: 4px;
}

.filter-chip {
  padding: 9px 13px;
  color: var(--muted);
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--ink);
  background: #f0ece8;
  font-weight: 700;
}

.advanced-filters {
  gap: 16px;
}

.check-filter {
  gap: 7px;
  color: #59514c;
  font-size: 12px;
  white-space: nowrap;
}

.check-filter input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}

.price-filter {
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.price-filter input {
  width: 62px;
  padding: 7px 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: white;
  font-size: 12px;
}

.price-filter input:focus {
  border-color: var(--red);
}

.price-filter i {
  color: var(--soft);
  font-style: normal;
}

.apply-filter {
  padding: 9px 12px;
  color: white;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  font-size: 12px;
}

.insight-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.pro-mode .insight-bar {
  grid-template-columns: repeat(4, 1fr);
}

.insight-bar > div {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.82);
}

.insight-bar span,
.insight-bar strong {
  display: block;
}

.insight-bar span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
}

.insight-bar strong {
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: #dcd4cd;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: #f2eee9;
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.025);
}

.product-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-badge {
  padding: 5px 8px;
  color: #58433e;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
}

.product-badge.self {
  color: var(--red);
}

.discount-flag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: white;
  border-radius: 9px 9px 9px 3px;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(225, 37, 27, 0.22);
}

.card-body {
  padding: 15px 15px 16px;
}

.shop-line {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.shop-line svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.shop-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-self-badge {
  flex: 0 0 auto;
  padding: 2px 6px;
  color: #fff;
  border-radius: 4px;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.product-title {
  min-height: 44px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #27221f;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-title mark {
  padding: 0;
  color: var(--red);
  background: transparent;
}

.price-block {
  margin-top: 13px;
  padding: 10px 12px 9px;
  border: 1px solid rgba(225, 37, 27, 0.12);
  border-radius: 10px;
  background: var(--red-soft);
}

.subsidy-price-label {
  display: block;
  margin-bottom: 1px;
  color: var(--red-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.final-price {
  display: inline-flex;
  align-items: baseline;
  color: var(--red);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.final-price small {
  margin-right: 2px;
  font-size: 15px;
}

.final-price strong {
  font-size: 32px;
  letter-spacing: -0.045em;
}

.review-rate {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.review-rate b {
  color: #4e4742;
  font-weight: 700;
}

.product-info-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.info-tag {
  max-width: 100%;
  padding: 3px 6px;
  overflow: hidden;
  color: #6d625c;
  border: 1px solid #ded7d1;
  border-radius: 4px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-tag.coupon,
.info-tag.promotion {
  color: var(--red);
  border-color: #f1aaa4;
  background: #fff8f7;
}

.info-tag.category {
  max-width: 42%;
}

.pro-metrics {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 9px;
}

.pro-mode .pro-metrics {
  display: grid;
}

.pro-metrics > div {
  padding: 8px;
  border-radius: 8px;
  background: #f7f5f2;
}

.pro-metrics span,
.pro-metrics strong {
  display: block;
}

.pro-metrics span {
  color: var(--muted);
  font-size: 9px;
}

.pro-metrics strong {
  margin-top: 3px;
  color: var(--green);
  font-size: 12px;
}

.pro-metrics .sku-value {
  color: #5a524d;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.card-actions.has-coupon {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coupon-button,
.deal-button {
  height: 42px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.coupon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 1px solid #efb3ae;
  background: #fff6f5;
}

.coupon-button:hover {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

.deal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  border: 0;
  background: var(--ink);
}

.deal-button:hover {
  background: var(--red);
}

.deal-button span {
  transition: transform 150ms ease;
}

.deal-button:hover span {
  transform: translateX(2px);
}

.pro-only {
  display: none;
}

.pro-mode .pro-only {
  display: block;
}

.status-panel {
  margin: 26px 0;
  padding: 58px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed #ddd5ce;
  border-radius: var(--radius);
}

.status-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--red);
  border-radius: 50%;
  background: var(--red-soft);
  font-weight: 900;
}

.status-panel h3 {
  margin: 0;
}

.status-panel p {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.status-panel button {
  padding: 10px 16px;
  color: white;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #eeeae6;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.25s infinite;
}

.skeleton-image {
  aspect-ratio: 1 / 0.92;
}

.skeleton-line {
  height: 13px;
  margin-top: 10px;
  border-radius: 5px;
}

.skeleton-line.short {
  width: 38%;
}

.skeleton-line.medium {
  width: 72%;
}

.skeleton-price {
  width: 44%;
  height: 28px;
  margin-top: 18px;
  border-radius: 6px;
}

.skeleton-button {
  height: 42px;
  margin-top: 20px;
  border-radius: 11px;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

.result-footnote {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--soft);
  font-size: 10px;
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .advanced-filters {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 28px);
    height: 68px;
  }

  .history-button {
    display: none;
  }

  .hero {
    width: calc(100% - 28px);
    margin-top: 36px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    line-height: 1.7;
  }

  .channel-search {
    padding: 16px;
  }

  .channel-search-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .channel-search-heading p {
    max-width: none;
    text-align: left;
  }

  .channel-form {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .channel-select-wrap {
    width: 100%;
  }

  .channel-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .channel-chip {
    flex: 0 0 auto;
  }

  .search-shell {
    height: 62px;
    border-radius: 18px;
  }

  .search-shell input {
    padding: 0 9px;
    font-size: 14px;
  }

  .search-shell svg {
    width: 20px;
    margin-left: 10px;
  }

  .search-shell button {
    height: 48px;
    padding: 0 17px;
    border-radius: 13px;
    font-size: 13px;
  }

  .result-section {
    width: calc(100% - 28px);
  }

  .result-heading h2 {
    font-size: 20px;
  }

  .filter-toggle {
    display: flex;
  }

  .filter-panel {
    display: none;
    padding: 12px;
  }

  .filter-panel.open {
    display: flex;
  }

  .quick-filters {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .filter-chip {
    white-space: nowrap;
  }

  .advanced-filters {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .price-filter {
    width: 100%;
  }

  .price-filter input {
    width: 74px;
  }

  .insight-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-mode .insight-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .card-body {
    padding: 12px;
  }

  .product-title {
    min-height: 41px;
    font-size: 13px;
  }

  .result-footnote {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 430px) {
  .mode-switch > span:last-child {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .product-image-wrap {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .product-image {
    position: absolute;
    inset: 0;
  }

  .discount-flag {
    left: 8px;
    right: auto;
    bottom: 8px;
  }

  .card-body {
    padding: 12px 12px 12px 13px;
  }

  .shop-line {
    margin-top: 7px;
  }

  .final-price strong {
    font-size: 27px;
  }

  .price-block {
    padding: 8px 9px 7px;
  }

  .subsidy-price-label {
    font-size: 10px;
  }

  .review-rate {
    width: 100%;
    margin-left: 0;
  }

  .product-info-tags {
    margin-top: 6px;
  }

  .card-actions {
    margin-top: 9px;
  }

  .pro-mode .product-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
