: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(12px, 1.25vw, 18px);
}

.vf-product-card-clean {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 314px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(255, 204, 70, .24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 209, 61, .12), transparent 48%),
    radial-gradient(circle at 50% 84%, rgba(162, 255, 19, .07), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012)),
    var(--vf-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    inset 0 0 0 1px rgba(255, 225, 143, .03),
    0 24px 52px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

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

.vf-product-card-clean::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 224, 136, .07);
  border-radius: 17px;
  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, .42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 24px 50px rgba(0,0,0,.3),
    0 0 0 1px rgba(255, 214, 99, .08);
  outline: none;
}

.vf-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 188px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(255, 214, 99, .14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 209, 61, .16), transparent 36%),
    radial-gradient(circle at 50% 92%, rgba(162, 255, 19, .06), transparent 42%),
    linear-gradient(180deg, rgba(9, 11, 9, .92), rgba(4, 5, 4, .98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    0 18px 34px rgba(0, 0, 0, .22);
}

.vf-product-card-clean img {
  width: min(100%, 244px);
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  transform: scale(1.16);
  transform-origin: center;
  filter:
    saturate(1.08)
    contrast(1.08)
    drop-shadow(0 0 24px rgba(255, 196, 0, .18))
    drop-shadow(0 0 34px rgba(10, 157, 58, .09));
}

a.vf-product-card-clean[href="/products/coworker/"] .vf-product-media img {
  clip-path: circle(47%);
}

.vf-card-category {
  color: var(--vf-green);
  font: 700 11.5px/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(20px, 1.45vw, 24px);
  line-height: 1.02;
}

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

.vf-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 209, 61, .28);
  border-radius: 999px;
  color: var(--vf-gold);
  font: 800 11.25px/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));
    gap: 12px;
  }

  .vf-product-card-clean {
    min-height: 286px;
    padding: 18px 16px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .04),
      0 18px 36px rgba(0,0,0,.24);
  }

  .vf-product-media {
    min-height: 156px;
  }

  .vf-product-card-clean img {
    width: min(100%, 210px);
    transform: scale(1.1);
  }

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

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

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

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

  .vf-product-media {
    min-height: 136px;
    padding: 9px 9px 7px;
    border-radius: 16px;
  }

  .vf-product-card-clean img {
    width: min(100%, 166px);
    transform: scale(1.06);
  }

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

  .vf-product-card-clean p {
    font-size: 13.4px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }

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

@media (max-width: 430px) {
  .vf-product-grid-clean {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vf-product-card-clean {
    min-height: 0;
    padding: 14px;
  }

  .vf-product-media {
    min-height: 132px;
  }

  .vf-product-card-clean img {
    width: min(100%, 176px);
    transform: scale(1.08);
  }

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

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

/* 026: one premium family, five distinct material signatures. */
.vf-product-card-clean:nth-child(1) { --product-accent: #ffd13d; --product-accent-soft: rgba(255, 209, 61, .15); }
.vf-product-card-clean:nth-child(2) { --product-accent: #b6ee64; --product-accent-soft: rgba(162, 255, 19, .13); }
.vf-product-card-clean:nth-child(3) { --product-accent: #e9b34f; --product-accent-soft: rgba(255, 140, 0, .11); }
.vf-product-card-clean:nth-child(4) { --product-accent: #a2ff13; --product-accent-soft: rgba(10, 157, 58, .15); }
.vf-product-card-clean:nth-child(5) { --product-accent: #ffd96a; --product-accent-soft: rgba(255, 184, 36, .13); }

.vf-product-card-clean::before {
  background: linear-gradient(90deg, transparent, var(--product-accent), transparent);
}

.vf-product-media {
  background:
    radial-gradient(circle at 50% 46%, var(--product-accent-soft), transparent 36%),
    radial-gradient(circle at 50% 92%, rgba(162, 255, 19, .06), transparent 42%),
    linear-gradient(180deg, rgba(9, 11, 9, .92), rgba(4, 5, 4, .98));
}

.vf-product-card-clean img {
  filter:
    saturate(1.08)
    contrast(1.08)
    drop-shadow(0 0 24px var(--product-accent-soft))
    drop-shadow(0 0 34px rgba(10, 157, 58, .09));
}

.vf-card-category {
  color: var(--product-accent);
}

a.vf-product-card-clean:hover,
a.vf-product-card-clean:focus-visible {
  border-color: var(--product-accent);
}
