/* Vehicle detail page — standalone (no dependency on style.css minified block) */

.vdp-legend.section {
  padding: 28px 0 36px;
}

.vdp-highlights.section,
.vdp-info.section,
.vdp-links.section,
.vdp-details.section {
  padding: 48px 0;
}

.vdp-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 36px;
  align-items: start;
}

.vdp-gallery {
  width: 100%;
}

.vdp-gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
  min-height: 420px;
  max-height: 560px;
}

.vdp-gallery-main > img#vdpMainImage,
.vdp-gallery-main > img.vdp-main-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.vdp-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  pointer-events: none;
}

.vdp-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  z-index: 4;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.vdp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  cursor: pointer;
  z-index: 4;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.vdp-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.vdp-prev {
  left: 14px;
}

.vdp-next {
  right: 14px;
}

.vdp-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.vdp-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #eee;
  padding: 0;
  line-height: 0;
}

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

.vdp-thumb.active,
.vdp-thumb:hover {
  border-color: #111;
}

.vdp-summary {
  position: sticky;
  top: 100px;
}

.vdp-summary-inner {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
}

.vdp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 14px 8px 10px;
  border: 1px solid #e8eaee;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: #111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vdp-brand:hover {
  border-color: #c5cad3;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.vdp-brand-logo {
  display: block;
  width: 42px;
  height: 28px;
  object-fit: contain;
}

.vdp-brand-fallback {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 15px;
  font-weight: 800;
  color: #374151;
}

.vdp-brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vdp-summary h1 {
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.08;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111;
}

.vdp-meta {
  color: #6b7280;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
}

.vdp-location {
  color: #111;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vdp-location i {
  color: #111;
}

.vdp-map-block {
  margin-bottom: 20px;
}

.vdp-map-label {
  display: block;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vdp-map-frame {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  line-height: 0;
}

.vdp-map-embed {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.vdp-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.vdp-map-link:hover {
  color: #4b5563;
}

.vdp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.vdp-actions .btn {
  border-radius: 999px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: none !important;
  transform: none !important;
}

.vdp-btn-dark {
  background: #111 !important;
  color: #fff !important;
  border: 2px solid #111 !important;
}

.vdp-btn-dark:hover {
  background: #2a2a2a !important;
}

.vdp-btn-light {
  background: #fff !important;
  color: #111 !important;
  border: 2px solid #111 !important;
}

.vdp-btn-light:hover {
  background: #f4f5f7 !important;
}

.vdp-price-box {
  border-top: 1px solid #e8eaee;
  padding-top: 18px;
}

.vdp-price-sale-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.vdp-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 10px;
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.vdp-price-msrp {
  font-size: 18px;
  font-weight: 700;
  color: #9ca3af;
}

.vdp-price-main {
  display: block;
  margin-bottom: 12px;
}

.vdp-price-main-left {
  min-width: 0;
}

.vdp-price-label {
  display: block;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.vdp-price-amount {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.vdp-price-toggle {
  width: 100%;
  margin-top: 0;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vdp-price-toggle:hover {
  background: #f4f5f7;
  border-color: #9ca3af;
}

.vdp-price-toggle.is-open {
  background: #111;
  border-color: #111;
  color: #fff;
}

.vdp-price-toggle i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.vdp-price-toggle.is-open i {
  transform: rotate(180deg);
}

.vdp-price-breakdown {
  margin-top: 12px;
  padding: 0;
  border: 1px solid #e8eaee;
  border-radius: 14px;
  background: #fafafa;
  overflow: hidden;
}

.vdp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef0f3;
  font-size: 14px;
  line-height: 1.5;
}

.vdp-price-row:last-child {
  border-bottom: 0;
}

.vdp-price-row-label {
  color: #6b7280;
  font-weight: 600;
}

.vdp-price-row-value {
  color: #111;
  font-weight: 700;
  font-size: 15px;
  text-align: right;
}

.vdp-price-row--save .vdp-price-row-value {
  color: #dc2626;
}

.vdp-price-row-value--muted {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

.vdp-disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
}

/* Tools: compare, share, print */
.vdp-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.vdp-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #1c1c1c;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vdp-tool:hover {
  background: #f4f5f7;
}

.vdp-tool.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.vdp-tool-icon {
  width: 44px;
  min-width: 44px;
  padding: 0;
}

.vdp-tool-share-wrap {
  position: relative;
}

.vdp-share-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border: 1px solid #e8eaee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  z-index: 20;
}

.vdp-share-item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.vdp-share-item:hover {
  background: #f4f5f7;
}

/* Dealer contact card */
.vdp-dealer-card {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #e8eaee;
  border-radius: 16px;
  background: #fff;
}

.vdp-dealer-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.vdp-dealer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.vdp-dealer-avatar--fallback {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 22px;
  font-weight: 800;
  color: #374151;
}

.vdp-dealer-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 6px;
}

.vdp-dealer-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fdf2f2;
  color: #98bc2a;
  font-size: 12px;
  font-weight: 700;
}

.vdp-dealer-verified i {
  color: #98bc2a;
}

.vdp-dealer-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.vdp-dealer-row-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #f4f5f7;
  color: #111;
  flex-shrink: 0;
}

.vdp-dealer-row-icon [class^="icon-aurexo-"] {
  font-size: 18px;
}

.vdp-dealer-row-body a {
  color: #111;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.vdp-dealer-directions {
  display: block;
  margin-top: 4px;
  color: #98bc2a !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vdp-dealer-phone {
  color: #98bc2a !important;
  font-weight: 700;
}

.vdp-dealer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.vdp-dealer-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.vdp-dealer-btn--call {
  background: #98bc2a;
  color: #fff;
}

.vdp-dealer-btn--call [class^="icon-aurexo-"] {
  color: #fff;
}

.vdp-dealer-btn--whatsapp {
  background: #6b21a8;
  color: #fff;
}

.vdp-highlights h2,
.vdp-info h2,
.vdp-details h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.vdp-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vdp-highlight-card {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.vdp-highlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f4f5f7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.vdp-highlight-card i {
  font-size: 30px;
  color: #111;
  line-height: 1;
}

.vdp-highlight-icon img {
  max-height: 36px;
  max-width: 56px;
  width: auto;
  object-fit: contain;
}

.vdp-highlight-card span:last-child {
  font-weight: 700;
  font-size: 15px;
  color: #111;
  line-height: 1.3;
}

.vdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.vdp-tag {
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px 10px 14px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.vdp-tag-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.vdp-tag-text {
  white-space: nowrap;
}

.vdp-tag-text strong {
  font-weight: 800;
  color: #111;
}

.vdp-tag i {
  flex-shrink: 0;
}

.vdp-tag-copy {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vdp-tag-copy:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.vdp-tag-copy.is-copied {
  background: #059669;
  border-color: #059669;
  color: #fff;
}

.vdp-copy-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 10px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.vdp-copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vdp-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vdp-spec-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 18px;
  padding: 22px 20px;
  min-height: 104px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vdp-spec-item:hover {
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  transform: translateY(-2px);
}

.vdp-spec-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f4f5f7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.vdp-spec-icon i {
  font-size: 26px;
  color: #111;
  line-height: 1;
}

.vdp-spec-icon [class^="icon-aurexo-"] {
  font-size: 26px;
  color: #111;
  line-height: 1;
}

.vdp-spec-icon--color {
  background: transparent;
}

.vdp-color-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #e8eaee;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.vdp-spec-text {
  flex: 1;
  min-width: 0;
}

.vdp-spec-item small {
  display: block;
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.vdp-spec-item strong {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.vdp-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vdp-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 18px;
  padding: 22px 20px;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vdp-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.vdp-link-card i:first-child {
  font-size: 26px;
  color: #111;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4f5f7;
  display: grid;
  place-items: center;
}

.vdp-link-arrow {
  margin-left: auto;
  color: #9ca3af;
  flex-shrink: 0;
}

.vdp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.vdp-tab {
  border: 1px solid #e8eaee;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #111;
  transition: background 0.15s;
}

.vdp-tab.active {
  background: #e9eaee;
  border-color: #d1d5db;
}

.vdp-tab-panel {
  display: none;
}

.vdp-tab-panel.active {
  display: block;
}

.vdp-option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vdp-option-list li {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  line-height: 1.45;
  padding: 8px 0;
}

.vdp-option-list i {
  color: #111;
  margin-right: 8px;
  font-size: 11px;
}

.vdp-empty-tab {
  color: #6b7280;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .vdp-top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vdp-summary {
    position: static;
  }

  .vdp-highlight-grid,
  .vdp-spec-grid,
  .vdp-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vdp-option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }
}

@media (max-width: 768px) {
  .vdp-legend.section {
    padding: 0 0 24px;
  }

  .vdp-legend > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .vdp-highlights.section,
  .vdp-info.section,
  .vdp-links.section,
  .vdp-details.section {
    padding: 32px 0;
  }

  .vdp-highlights .container,
  .vdp-info .container,
  .vdp-links .container,
  .vdp-details .container {
    width: 92%;
    margin: auto;
  }

  .vdp-gallery-main {
    border-radius: 0;
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: none;
    height: auto;
  }

  .vdp-gallery-main > img#vdpMainImage,
  .vdp-gallery-main > img.vdp-main-img {
    min-height: 0;
    height: 100%;
    aspect-ratio: 16 / 11;
  }

  .vdp-gallery-badge {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .vdp-counter {
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 5px 10px;
  }

  .vdp-nav {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .vdp-prev {
    left: 8px;
  }

  .vdp-next {
    right: 8px;
  }

  .vdp-thumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-top: 10px;
    padding: 0 12px 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .vdp-thumb {
    flex: 0 0 68px;
    width: 68px;
    aspect-ratio: 1;
    scroll-snap-align: start;
    border-radius: 10px;
  }

  .vdp-summary {
    padding: 0 12px;
    margin-top: 0;
  }

  .vdp-summary-inner {
    border-radius: 18px;
    padding: 20px 16px;
    margin-top: 12px;
    border: 1px solid #e8eaee;
    box-shadow: 0 8px 28px rgba(17, 17, 17, 0.06);
  }

  .vdp-summary h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .vdp-meta {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .vdp-location {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .vdp-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .vdp-actions .btn {
    padding: 11px 10px;
    font-size: 13px;
    min-height: 44px;
  }

  .vdp-price-amount {
    font-size: 30px;
  }

  .vdp-price-main {
    flex-direction: column;
    align-items: stretch;
  }

  .vdp-price-toggle {
    width: 100%;
    justify-content: center;
  }

  .vdp-disclaimer {
    font-size: 11px;
  }

  /* Grids 2x2 en móvil — forzar sobre style.css legacy */
  .vdp-highlights .vdp-highlight-grid,
  .vdp-info .vdp-spec-grid,
  .vdp-links .vdp-link-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .vdp-option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .vdp-highlight-card {
    padding: 14px 10px;
    min-height: auto;
    gap: 8px;
    border-radius: 14px;
  }

  .vdp-highlight-icon {
    width: 56px;
    height: 56px;
  }

  .vdp-highlight-card i {
    font-size: 26px;
  }

  .vdp-highlight-card span:last-child {
    font-size: 12px;
    line-height: 1.25;
    max-width: 100%;
  }

  .vdp-link-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    gap: 8px;
    font-size: 13px;
    border-radius: 14px;
  }

  .vdp-link-card i:first-child {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .vdp-link-arrow {
    margin-left: 0;
    font-size: 12px;
  }

  .vdp-spec-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 8px;
    min-height: auto;
    gap: 8px;
    border-radius: 14px;
  }

  .vdp-spec-text {
    width: 100%;
  }

  .vdp-spec-item small {
    font-size: 11px;
    line-height: 1.25;
  }

  .vdp-spec-item strong {
    font-size: 14px;
    display: block;
  }

  .vdp-spec-icon {
    width: 52px;
    height: 52px;
  }

  .vdp-spec-icon i {
    font-size: 22px;
  }

  .vdp-color-dot {
    width: 32px;
    height: 32px;
  }

  .vdp-tabs {
    gap: 6px;
  }

  .vdp-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .vdp-highlights h2,
  .vdp-info h2,
  .vdp-details h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

@media (max-width: 520px) {
  .vdp-highlights .vdp-highlight-grid,
  .vdp-info .vdp-spec-grid,
  .vdp-links .vdp-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .vdp-option-list {
    grid-template-columns: 1fr;
  }

  .vdp-tag {
    width: 100%;
    justify-content: space-between;
  }

  .vdp-tag-text {
    white-space: normal;
    word-break: break-all;
  }

  .vdp-tags {
    flex-direction: column;
  }

  .vdp-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* Car Overview — Aurexo style */
.vdp-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.vdp-overview-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.vdp-overview-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 22px;
}

.vdp-overview-icon [class^="icon-aurexo-"] {
  font-size: 22px;
  color: #111;
  line-height: 1;
}

.vdp-overview-card small {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

.vdp-overview-card strong {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  word-break: break-word;
}

.detail-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vdp-finance-result {
  padding: 14px;
  background: #f4f5f8;
  border-radius: 12px;
  font-weight: 700;
}

.vdp-muted {
  color: var(--muted);
  margin-bottom: 16px;
}

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

@media (max-width: 768px) {
  .vdp-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-side-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery zoom lightbox */
.vdp-click-zoom {
  cursor: zoom-in;
}

.vdp-zoom-btn,
.vdp-video-btn {
  position: absolute;
  bottom: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  cursor: pointer;
  font-size: 18px;
}

.vdp-zoom-btn {
  right: 16px;
}

.vdp-video-btn {
  right: 66px;
  color: #ff0000;
}

.vdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vdp-lightbox[hidden] {
  display: none !important;
}

.vdp-lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.vdp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.vdp-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  cursor: pointer;
  font-size: 18px;
}

.vdp-lightbox-prev {
  left: 20px;
}

.vdp-lightbox-next {
  right: 20px;
}

.vdp-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 14px;
  border-radius: 999px;
}

body.vdp-lightbox-open,
body.vdp-video-open {
  overflow: hidden;
}

.vdp-video-modal[hidden] {
  display: none !important;
}

.vdp-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vdp-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.vdp-video-dialog {
  position: relative;
  width: min(900px, 96vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.vdp-video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.vdp-video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
}

.vdp-view-all-photos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.vdp-view-all-photos:hover {
  border-color: var(--primary, #84cc16);
  background: #f9fafb;
}

.vdp-gallery-main {
  position: relative;
}

@media print {
  .site-header,
  .site-footer,
  .whatsapp,
  .vdp-nav,
  .vdp-zoom-btn,
  .vdp-video-btn,
  .vdp-thumbs,
  .vdp-view-all-photos,
  .vdp-tools,
  .vdp-share-menu,
  .vdp-actions,
  .vdp-price-toggle {
    display: none !important;
  }

  .vdp-summary {
    position: static;
  }

  .vdp-top {
    display: block;
  }

  .vdp-summary-inner,
  .vdp-dealer-card {
    break-inside: avoid;
    box-shadow: none;
  }

  body {
    background: #fff;
  }
}

/* Vehicle comments / reviews */
.vdp-comments-head {
  margin-bottom: 24px;
}

.vdp-comments-head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.vdp-comment-alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}

.vdp-comment-alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.vdp-comment-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.vdp-comments-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.vdp-comments-list {
  display: grid;
  gap: 16px;
}

.vdp-comment-card {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 16px;
  padding: 20px 22px;
}

.vdp-comment-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.vdp-comment-card-head time {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

.vdp-comment-stars {
  color: #f59e0b;
  font-size: 13px;
}

.vdp-comment-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.vdp-comment-reply {
  margin-top: 14px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 3px solid var(--primary, #111);
}

.vdp-comment-reply strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 6px;
}

.vdp-comment-reply p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.vdp-comment-form-card {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 16px;
  padding: 24px;
}

.vdp-comment-form-card h3 {
  margin-bottom: 6px;
}

.vdp-comment-field {
  margin-bottom: 14px;
}

.vdp-comment-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.vdp-comment-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.vdp-comment-rating-input input {
  display: none;
}

.vdp-comment-rating-input label {
  cursor: pointer;
  color: #d1d5db;
  font-size: 18px;
}

.vdp-comment-rating-input input:checked ~ label,
.vdp-comment-rating-input label:hover,
.vdp-comment-rating-input label:hover ~ label {
  color: #f59e0b;
}

.vdp-comment-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vdp-comments-empty {
  color: #6b7280;
  font-size: 14px;
  padding: 24px;
  background: #fff;
  border: 1px dashed #e5e7eb;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .vdp-comments-layout {
    grid-template-columns: 1fr;
  }
}
