:root {
  --sa-seinto-primary: #07145f;
  --sa-seinto-primary-dark: #006fc0;
  --sa-seinto-primary-soft: #eef7ff;
  --sa-seinto-accent: #006fc0;
  --sa-seinto-accent-dark: #14244d;
  --sa-seinto-btn-color: #14244d;
  --sa-seinto-btn-bg: #f4db34;
  --sa-seinto-white: #ffffff;
  --sa-seinto-text: #111827;
  --sa-seinto-text-soft: #344054;
  --sa-seinto-muted: #667085;
  --sa-seinto-border: rgba(7, 20, 95, .12);
  --sa-seinto-border-strong: rgba(7, 20, 95, .16);
  --sa-seinto-shadow: 0 8px 24px rgba(7, 20, 95, .08);
  --sa-seinto-radius: 14px;
}

.vz-pdp,
.vz-pdp * {
  box-sizing: border-box;
}

.vz-pdp {
  width: min(100% - 32px, 1500px);
  margin: 0px 0px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px;
  align-items: start;
  color: var(--sa-seinto-text);
}

.vz-left {
  min-width: 0;
}

.vz-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.vz-thumbs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 650px;
  max-height: 650px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 111, 192, .35) transparent;
}

.vz-thumbs::-webkit-scrollbar {
  width: 5px;
}

.vz-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.vz-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0, 111, 192, .35);
  border-radius: 999px;
}

.vz-thumb {
  flex: 0 0 94px;
  width: 100%;
  height: 94px;
  padding: 0;
  overflow: hidden;
  background: var(--sa-seinto-white);
  border: 1px solid var(--sa-seinto-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.vz-thumb:hover {
  border-color: rgba(0, 111, 192, .5);
  box-shadow: 0 8px 18px rgba(7, 20, 95, .08);
  transform: translateY(-1px);
}

.vz-thumb.is-active {
  border-color: var(--sa-seinto-accent);
  box-shadow: 0 0 0 3px rgba(0, 111, 192, .18);
}

.vz-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vz-main,
.vz-prices,
.vz-left {
  min-width: 0;
}

.vz-main-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 650px;
  min-height: 650px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--sa-seinto-border);
  border-radius: var(--sa-seinto-radius);
  contain: layout paint;
}

.vz-main-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.vz-wm {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: block;
  width: clamp(120px, 15vw, 220px);
  height: auto;
  opacity: .16;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

.vz-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: rgba(7, 20, 95, .82);
  border: 0;
  border-radius: 10px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .2s ease, transform .2s ease;
}

.vz-nav:hover {
  background: var(--sa-seinto-primary);
  transform: translateY(-50%) scale(1.04);
}

.vz-nav-prev {
  left: 14px;
}

.vz-nav-next {
  right: 14px;
}

.vz-counter {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 5;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 9px;
  color: #ffffff;
  background: rgba(7, 20, 95, .62);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(6px);
}

.vz-buybox {
  position: sticky;
  top: 0px;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.vz-card,
.vz-panel,
.vz-seller-card,
.vz-specs {
  background: var(--sa-seinto-white);
  border: 1px solid var(--sa-seinto-border);
  border-radius: var(--sa-seinto-radius);
  box-shadow: var(--sa-seinto-shadow);
}

.vz-card {
  padding: 20px 18px 18px;
}

.vz-sku {
  margin-bottom: 8px;
  color: var(--sa-seinto-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.vz-title {
  margin: 0 0 22px;
  color: var(--sa-seinto-primary);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.vz-shortdesc {
  margin: -10px 0 16px;
  color: var(--sa-seinto-text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.vz-shortdesc p {
  margin: 0 0 8px;
}

.vz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

/* Badge normal: En stock */
.vz-badge-stock {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #067647;
  background: #ecfdf3;
  border: 1px solid rgba(6, 118, 71, .16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
/* =========================================================
   AVISO SUPERIOR - PRODUCTO VENDIDO
   ========================================================= */

.vz-sold-top-warning {
  width: min(100% - 32px, 1500px);
  margin: 12px 0 18px;
  padding: 16px 18px;

  display: flex;
  align-items: flex-start;
  gap: 13px;

  color: #92400e;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(146, 64, 14, .06);
}

.vz-sold-top-warning__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #b45309;
  background: #ffedd5;
  border-radius: 50%;
}

.vz-sold-top-warning__icon svg {
  display: block;
  width: 21px;
  height: 21px;
}

.vz-sold-top-warning__content {
  min-width: 0;
  flex: 1;
}

.vz-sold-top-warning__title {
  display: block;
  margin-bottom: 4px;

  color: #9a3412;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.vz-sold-top-warning__text {
  margin: 0 0 5px;

  color: #92400e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.vz-sold-top-warning__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: #9a3412 !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;

  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.vz-sold-top-warning__link:hover {
  color: #7c2d12 !important;
}

#vz-productos-similares {
  scroll-margin-top: 120px;
}

@media (max-width: 767px) {

  .vz-sold-top-warning {
    width: min(100% - 24px, 1500px);
    margin: 10px auto 16px;
    padding: 14px;
    gap: 10px;
  }

  .vz-sold-top-warning__icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .vz-sold-top-warning__title {
    font-size: 14px;
  }

  .vz-sold-top-warning__text,
  .vz-sold-top-warning__link {
    font-size: 13px;
  }
}
/* Badge cuando el producto está vendido */
.vz-badge-stock.vz-badge-stock--sold {
  color: #9a3412;
  background: #ffedd5;
  border-color: #fdba74;
}

/* Aviso para productos vendidos */
.vz-sold-notice {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;

  color: #92400e;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
}

.vz-sold-notice__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #f59e0b;
  border-radius: 50%;

  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.vz-sold-notice__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.vz-sold-notice__content strong {
  color: #9a3412;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.vz-sold-notice__content span {
  color: #92400e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.vz-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.vz-price-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.vz-price-old {
  color: #98a2b3;
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.vz-discount-badge {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #ffffff;
  background: #e60000;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.vz-price-tax-exc {
  margin-bottom: 6px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.vz-price-tax-exc span {
  color: #98a2b3;
  font-size: 11px;
  font-weight: 700;
}

.vz-price-main {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  color: var(--sa-seinto-accent-dark);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.vz-price-note {
  display: inline-flex;
  margin: 0 0 5px;
  color: var(--sa-seinto-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.vz-icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--sa-seinto-text);
  background: var(--sa-seinto-white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.vz-icon-btn:hover {
  color: var(--sa-seinto-accent);
  background: var(--sa-seinto-primary-soft);
  transform: translateY(-1px);
  text-decoration: none;
}

.vz-icon-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.vz-buy-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.vz-buy-form {
  margin: 0;
}

.vz-buy-btn,
.vz-whatsapp-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 10px;
  border: 0;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.vz-buy-btn {
  color: var(--sa-seinto-btn-color);
  background: var(--sa-seinto-btn-bg);
  box-shadow: 0 10px 22px rgba(244, 219, 52, .24);
  text-transform: uppercase;
}

.vz-buy-btn:hover {
  color: var(--sa-seinto-btn-color);
  background: #ffe95c;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(244, 219, 52, .34);
}

.vz-cart svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.vz-whatsapp-btn {
  color: #ffffff !important;
  background: #20b15a;
  box-shadow: 0 10px 22px rgba(32, 177, 90, .18);
}

.vz-whatsapp-btn:hover {
  color: #ffffff !important;
  background: #159947;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(32, 177, 90, .25);
}

.vz-whatsapp-ico {
  display: inline-flex;
}

.campa-disabled-box {
  width: 100%;
  padding: 14px;
  color: #7a271a;
  background: #fff4ed;
  border: 1px solid #ffd6ae;
  border-radius: 10px;
}

.campa-disabled-text {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.vz-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.vz-feature {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  background: var(--sa-seinto-white);
  border: 1px solid var(--sa-seinto-border);
  border-radius: 12px;
}

.vz-feature-ico {
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--sa-seinto-accent);
  font-size: 26px;
}

.vz-feature-img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.vz-feature-title {
  color: var(--sa-seinto-accent-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.vz-panel {
  overflow: hidden;
}

.vz-panel-head,
.vz-specs-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--sa-seinto-border);
}

.vz-panel-ico,
.vz-specs-ico {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--sa-seinto-accent-dark);
  flex: 0 0 auto;
}

.vz-panel-ico svg,
.vz-specs-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.vz-panel-title,
.vz-specs-title {
  margin: 0;
  color: var(--sa-seinto-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.vz-panel-body {
  padding: 16px 18px 18px;
  color: var(--sa-seinto-text-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.vz-product-description p {
  margin: 0 0 12px;
}

.vz-panel-placeholder {
  color: var(--sa-seinto-muted);
  font-style: italic;
}

.vz-vehiculo-origen {
  min-height: 120px;
}

.vz-seller-card {
  padding: 16px 18px;
}

.vz-seller-name {
  margin-bottom: 8px;
  color: var(--sa-seinto-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.vz-seller-sub {
  min-height: 32px;
  color: var(--sa-seinto-muted);
  font-size: 13px;
  font-weight: 600;
}

.vz-specs {
  margin-top: 24px;
  overflow: hidden;
}

.vz-specs-table {
  width: 100%;
}

.vz-specs-row {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  min-height: 36px;
  border-bottom: 1px solid rgba(7, 20, 95, .08);
}

.vz-specs-row:last-child {
  border-bottom: 0;
}

.vz-specs-row.is-alt {
  background: var(--sa-seinto-primary-soft);
}

.vz-specs-cell {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 9px 16px;
  color: var(--sa-seinto-text);
  font-size: 14px;
  line-height: 1.25;
}

.vz-specs-key {
  font-weight: 600;
}

.vz-specs-val {
  font-weight: 500;
}

.vz-specs-val a,
.vz-panel-body table a,
.vz-product-description table a {
  color: var(--sa-seinto-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vz-product-relacionado,
.vz-info-adicional {
  margin-inline: auto;
}

.vz-product-relacionado {
  margin-top: 32px;
  margin-bottom: 36px;
  background: var(--sa-seinto-white);
  border: 1px solid var(--sa-seinto-border);
  border-radius: var(--sa-seinto-radius);
  box-shadow: var(--sa-seinto-shadow);
}

.vz-product-relacionado {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #e2e6f0;
  border-radius: 14px;
  overflow: hidden;
}

.vz-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid #e2e6f0;
  background: #fff;
}

.vz-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07145f;
  flex-shrink: 0;
}

.vz-section-title h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #07145f;
}

.vz-info-adicional {
  margin-top: 24px;
  margin-bottom: 54px;
  padding: 32px;
  background: var(--sa-seinto-primary-soft);
  border: 1px solid rgba(0, 111, 192, .12);
  border-radius: 18px;
}

.vz-info-adicional h2 {
  margin: 0 0 14px;
  color: var(--sa-seinto-primary);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.vz-info-adicional h3 {
  margin: 24px 0 12px;
  color: var(--sa-seinto-primary);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.vz-info-adicional p {
  margin: 0 0 14px;
  color: var(--sa-seinto-text-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.vz-pdp a {
  text-decoration: none;
}

.vz-pdp button,
.vz-pdp input,
.vz-pdp textarea,
.vz-pdp select {
  font-family: inherit;
}

.vz-pdp img {
  max-width: 100%;
}

@media (max-width: 1300px) {
  .vz-pdp {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 22px;
  }

  .vz-gallery {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .vz-thumbs,
  .vz-main-inner {
    height: 590px;
    min-height: 590px;
    max-height: 590px;
  }

  .vz-thumb {
    flex-basis: 86px;
    height: 86px;
  }

  .vz-title {
    font-size: 16px;
  }

  .vz-price-main {
    font-size: 31px;
  }
}

@media (max-width: 1100px) {
  .vz-pdp {
    grid-template-columns: 1fr;
  }

  .vz-buybox {
    position: static;
    order: 2;
  }

  .vz-left {
    order: 1;
  }

  .vz-gallery {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .vz-thumbs,
  .vz-main-inner {
    height: 560px;
    min-height: 560px;
    max-height: 560px;
  }

  .vz-thumb {
    flex-basis: 82px;
    height: 82px;
  }

  .vz-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .vz-pdp {
    width: min(100% - 24px, 1500px);
    margin-top: 16px;
    gap: 18px;
  }

  .vz-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .vz-thumbs {
    flex-direction: row;
    gap: 10px;
    height: auto;
    min-height: 0;
    max-height: none;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .vz-thumbs::-webkit-scrollbar {
    display: none;
  }

  .vz-thumb {
    flex: 0 0 calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
    height: 76px;
    border-radius: 10px;
  }

  .vz-main-inner {
    height: 390px;
    min-height: 390px;
    max-height: 390px;
    border-radius: 12px;
  }

  .vz-nav {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .vz-nav-prev {
    left: 10px;
  }

  .vz-nav-next {
    right: 10px;
  }

  .vz-wm {
    right: 14px;
    bottom: 14px;
    width: clamp(90px, 24vw, 150px);
    opacity: .14;
  }

  .vz-card,
  .vz-panel,
  .vz-seller-card,
  .vz-specs {
    border-radius: 12px;
  }

  .vz-card {
    padding: 18px 16px;
  }

  .vz-title {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .vz-price-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vz-actions {
    justify-content: flex-start;
  }

  .vz-price-main {
    font-size: 32px;
  }

  .vz-features {
    grid-template-columns: 1fr;
  }

  .vz-feature {
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    place-items: initial;
    align-items: center;
    justify-content: start;
    text-align: left;
    padding: 12px 14px;
  }

  .vz-panel-head,
  .vz-specs-head {
    padding: 0 14px;
  }

  .vz-panel-body {
    padding: 14px;
  }

  .vz-specs-row {
    grid-template-columns: 1fr;
  }

  .vz-specs-cell {
    padding: 8px 14px;
  }

  .vz-specs-key {
    color: var(--sa-seinto-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
  }

  .vz-specs-val {
    padding-top: 0;
  }

  .vz-product-relacionado,
  .vz-info-adicional {
    width: min(100% - 24px, 1500px);
  }

  .vz-info-adicional {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .vz-info-adicional p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .vz-main-inner {
    height: 320px;
    min-height: 320px;
    max-height: 320px;
  }

  .vz-thumb {
    flex-basis: calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
    height: 66px;
  }

  .vz-price-main {
    font-size: 29px;
  }

  .vz-buy-btn,
  .vz-whatsapp-btn {
    min-height: 46px;
    font-size: 14px;
  }

  .vz-panel-title,
  .vz-specs-title {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .vz-pdp {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .vz-left {
    display: contents;
  }

  .vz-gallery {
    order: 1;
  }

  .vz-buybox {
    order: 2;
    position: static;
  }

  .vz-specs.vz-specs--under-gallery {
    order: 3;
    margin-top: 0;
  }
}


/* Calidad de la pieza junto a En stock */
.vz-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  overflow: visible;
}

/* Badge vehículo en campa */
.da-vehicle-kicker {
  display: flex;
  align-items: center;
  margin: 0;
}

.da-vehicle-campa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  width: auto;
  min-height: 32px;
  padding: 7px 12px;

  border-radius: 8px;

  background: #eef8f2;
  border: 1px solid #b9e4ca;

  color: #168a4a;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
}

.da-vehicle-campa-badge svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke: currentColor;
}


/* Badge vehículo destruido */
.da-vehicle-status-box {
  display: inline-flex;
  width: auto;
  margin: 0;
}

.da-vehicle-status-box__content {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  min-height: 32px;
  padding: 7px 10px 7px 12px;

  border-radius: 8px;

  background: #fff2f2;
  border: 1px solid #f3bcbc;

  color: #c62828;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.da-vehicle-status-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.da-vehicle-status-box__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}


/* Botón información */
.da-vehicle-status-info {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(198,40,40,.10);
  color: #c62828;

  cursor: help;
}

.da-vehicle-status-info__icon {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}


/* Tooltip */
.da-vehicle-status-info__tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 9999;

  width: 280px;
  padding: 11px 13px;

  border-radius: 9px;

  background: #111827;
  color: #fff;

  box-shadow: 0 12px 28px rgba(17,24,39,.22);

  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%,6px);

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
}

.da-vehicle-status-info__tooltip::after {
  content: "";
  position: absolute;

  top: 100%;
  left: 50%;

  width: 9px;
  height: 9px;

  background: #111827;

  transform: translate(-50%,-5px) rotate(45deg);
}

.da-vehicle-status-info:hover .da-vehicle-status-info__tooltip,
.da-vehicle-status-info:focus .da-vehicle-status-info__tooltip {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%,0);
}


/* Mobile */
@media (max-width: 767px) {

  .da-vehicle-campa-badge,
  .da-vehicle-status-box__content {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .da-vehicle-status-info__tooltip {
    left: auto;
    right: 0;

    width: 240px;

    transform: translateY(6px);
  }

  .da-vehicle-status-info__tooltip::after {
    left: auto;
    right: 6px;

    transform: translate(0,-5px) rotate(45deg);
  }

  .da-vehicle-status-info:hover .da-vehicle-status-info__tooltip,
  .da-vehicle-status-info:focus .da-vehicle-status-info__tooltip {
    transform: translateY(0);
  }
}

.vz-quality-icon-wrap {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  cursor: help;
  outline: none;
}

.vz-quality-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.vz-quality-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 9999;
  width: 245px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 28px rgba(17,24,39,.22);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%,6px);
  transition: opacity .18s ease,transform .18s ease,visibility .18s ease;
}

.vz-quality-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #111827;
  transform: translate(-50%,-5px) rotate(45deg);
}

.vz-quality-tooltip strong,
.vz-quality-tooltip span {
  display: block;
}

.vz-quality-tooltip strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.vz-quality-icon-wrap:hover .vz-quality-tooltip,
.vz-quality-icon-wrap:focus .vz-quality-tooltip,
.vz-quality-icon-wrap:focus-within .vz-quality-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,0);
}

@media (max-width: 767px) {
  .vz-quality-tooltip {
    left: 0;
    width: 210px;
    transform: translateY(6px);
  }

  .vz-quality-tooltip::after {
    left: 16px;
    transform: translate(0,-5px) rotate(45deg);
  }

  .vz-quality-icon-wrap:hover .vz-quality-tooltip,
  .vz-quality-icon-wrap:focus .vz-quality-tooltip,
  .vz-quality-icon-wrap:focus-within .vz-quality-tooltip {
    transform: translateY(0);
  }
}