:root {
  --vf-bg: #020302;
  --vf-panel: rgba(10, 13, 10, .78);
  --vf-line: rgba(255, 204, 70, .24);
  --vf-line-strong: rgba(255, 204, 70, .55);
  --vf-gold: #ffd13d;
  --vf-green: #a2ff13;
  --vf-text: #f5f3e8;
  --vf-muted: #a9a79a;
}

.vf-product-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 14px);
}

.vf-product-card-clean {
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 158px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 204, 70, .16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 209, 61, .055), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.01)),
    var(--vf-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .032),
    0 10px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.vf-product-card-clean::before {
  content: "";
  position: absolute;
  inset: 0 20% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 61, .32), transparent);
  pointer-events: none;
}

a.vf-product-card-clean {
  text-decoration: none;
  color: inherit;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

a.vf-product-card-clean:hover,
a.vf-product-card-clean:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 61, .36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .042),
    0 14px 30px rgba(0,0,0,.22);
  outline: none;
}

.vf-product-card-clean img {
  width: 100%;
  height: 52px;
  padding: 2px 0;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin-bottom: 0;
  transform: scale(1.02);
  transform-origin: center;
  filter:
    saturate(1.04)
    contrast(1.04)
    drop-shadow(0 0 10px rgba(255, 196, 0, .09));
}

.vf-card-category {
  color: var(--vf-green);
  font: 700 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vf-product-card-clean h3 {
  margin: 0;
  color: var(--vf-text);
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.06;
}

.vf-product-card-clean p {
  margin: 0;
  color: var(--vf-muted);
  font-size: 10.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.vf-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 6px 10px;
  border: 1px solid rgba(255, 209, 61, .28);
  border-radius: 999px;
  color: var(--vf-gold);
  font: 800 8px/1 ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(7, 8, 7, .42);
}

.vf-product-card-muted {
  opacity: .78;
}

.vf-product-card-muted .vf-card-link {
  border-color: rgba(255, 255, 255, .18);
  color: #b7b8af;
}

@media (max-width: 1180px) {
  .vf-product-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-product-card-clean {
    min-height: 150px;
    padding: 12px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .04),
      0 9px 20px rgba(0,0,0,.18);
  }

  .vf-product-card-clean img {
    height: 50px;
    transform: scale(1);
  }

  .vf-product-card-clean h3 {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .vf-product-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .vf-product-card-clean {
    min-height: 136px;
    padding: 10px;
    border-radius: 14px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .04),
      0 7px 16px rgba(0,0,0,.14);
  }

  .vf-product-card-clean img {
    height: 42px;
    transform: scale(1);
  }

  .vf-product-card-clean h3 {
    font-size: 14px;
  }

  .vf-product-card-clean p {
    font-size: 10px;
    line-height: 1.34;
    -webkit-line-clamp: 2;
  }

  .vf-card-link {
    padding: 5px 8px;
    font-size: 7px;
  }
}

@media (max-width: 430px) {
  .vf-product-grid-clean {
    gap: 8px;
  }

  .vf-product-card-clean {
    min-height: 128px;
    padding: 9px;
  }

  .vf-product-card-clean img {
    height: 38px;
  }

  .vf-product-card-clean h3 {
    font-size: 13.5px;
  }

  .vf-product-card-clean p {
    -webkit-line-clamp: 2;
    font-size: 9.5px;
  }
}
