/* PDP Certificate of Authenticity badge */
.vb-auth-cert-badge {
  --ink: #1a1714;
  --ink-45: rgba(26, 23, 20, 0.45);
  --gold-deep: #b08d4f;
  --gold-light: #d8bd85;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gold-deep);
  border-radius: 10px;
  padding: 13px 16px;
  margin: 0 0 18px;
  background: linear-gradient(135deg, rgba(216, 189, 133, 0.1), rgba(176, 141, 79, 0.04));
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-align: left;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.vb-auth-cert-badge:hover {
  box-shadow: 0 8px 20px rgba(176, 141, 79, 0.18);
  transform: translateY(-1px);
}

.vb-auth-cert-badge:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.vb-auth-cert-badge .seal-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, #2a2521, var(--ink) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(216, 189, 133, 0.15);
  position: relative;
}

.vb-auth-cert-badge .seal-ico::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1.2px solid var(--gold-deep);
}

.vb-auth-cert-badge .seal-ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.6;
  position: relative;
  z-index: 1;
}

.vb-auth-cert-badge .txt {
  flex: 1;
  min-width: 0;
}

.vb-auth-cert-badge .txt .t1 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.vb-auth-cert-badge .txt .t2 {
  font-size: 11px;
  color: var(--ink-45);
  margin-top: 2px;
  line-height: 1.4;
}

.vb-auth-cert-badge .view-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  white-space: nowrap;
  padding-bottom: 1px;
}

@media (max-width: 480px) {
  .vb-auth-cert-badge {
    flex-wrap: wrap;
  }

  .vb-auth-cert-badge .view-link {
    margin-left: 50px;
  }
}
