:root {
  --ink: #1f1f1f;
  --muted: #6b6f76;
  --line: #e7e7e9;
  --panel: #ffffff;
  --soft: #f6f6f7;
  --brand: #89f02f;
  --accent: #1a1a1a;
  --chip: #ff4d4f;
  --blue: #38bdf8;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body.segundazo-comprar-page .site-main {
  max-width: 1260px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container,
.container_comprar {
  width: min(1330px, calc(100% - 60px));
  margin: 0 auto;
}

.topbar {
  padding: 48px 0 24px;
}

.title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin: 0 0 8px;
}

.subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 15px;
}

.tabs {
  display: inline-flex;
  gap: 12px;
  background: var(--panel);
  padding: 8px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
}

.search-row {
  margin-top: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.search-row input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  font-family: inherit;
}

.marketplace {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding-bottom: 64px;
}

.filters {
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 20px 16px;
  height: fit-content;
}

.filters h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.filter-group {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.filter-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.filter-toggle span {
  color: var(--muted);
  font-weight: 500;
}

.filter-body {
  margin-top: 10px;
  display: none;
  gap: 10px;
  flex-direction: column;
}

.filter-body label {
  font-size: 13px;
  color: var(--muted);
}

.filter-body input,
.filter-body select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 13px;
}

.filter-body .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--soft);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.marketplace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.marketplace-header strong {
  font-size: 15px;
}

.sort-select {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-family: inherit;
  background: var(--panel);
  width: max-content;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
  justify-content: start;
  gap: 20px;
}

.container_comprar .card{
  cursor: pointer;
}

.card {
  background: var(--panel);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.card h4 {
  margin: 0;
  font-size: 16px;
}

.card small {
  color: var(--muted);
  font-size: 12px;
}

.price-old {
  color: #9aa0a6;
  text-decoration: line-through;
  font-size: 13px;
}

.price-main {
  font-size: 26px;
  font-weight: 700;
  margin: 2px 0 0;
}

.price-month {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.card-media {
  margin-top: 6px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(130deg, #dee9f8 0%, #f4f6f8 60%, #fdfdfd 100%);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-discount {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--chip);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
}

.action-round {
  position: absolute;
  right: 12px;
  top: 12px;
  height: 34px;
  width: 34px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.card-arrow {
  position: absolute;
  right: 12px;
  top: 12px;
  height: 36px;
  width: 36px;
  border-radius: 999px;
  border: none;
  background: #111;
  display: grid;
  place-items: center;
}

.card-arrow svg {
  width: 16px;
  height: 16px;
}

.banner {
  margin: 36px 0 24px;
  background: radial-gradient(circle at 10% 10%, #7dd3fc 0%, #38bdf8 35%, #0ea5e9 100%);
  border-radius: 24px;
  padding: 32px 28px;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 40px);
  opacity: 0.4;
}

.banner .banner-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.banner h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
}

.banner p {
  margin: 0 0 20px;
  font-weight: 600;
}

.banner .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #222;
  color: var(--brand);
  font-weight: 700;
  border-radius: 12px;
}

.footer-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 22px 0 40px;
}

.card .favorite {
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.card .favorite.active {
  background: #111;
  color: #fff;
}

.favorite svg {
  width: 16px;
  height: 16px;
  left: -8px;
  position: relative;
}

.favorite svg path {
  stroke: #111;
  fill: none;
}

.favorite.active svg path {
  stroke: #fff;
  fill: #fff;
}

@media (max-width: 980px) {
  .marketplace {
    grid-template-columns: 1fr;
  }

  .filters {
    order: 2;
  }

  .marketplace-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .tabs {
    width: 100%;
    justify-content: space-between;
  }

  .search-row {
    flex-wrap: wrap;
  }

  .card {
    border-radius: 18px;
  }
}

#vehiculo-page {
  margin: 0 auto;
  font-family: "Manrope", system-ui, sans-serif;
  color: #333;
  background: #fff;
  width: min(1360px, 94vw);
  padding: 24px 0 70px;
}

#vehiculo-page .svd-main-container {
  width: 100%;
}

#vehiculo-page .svd-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 36px;
  align-items: start;
}

#vehiculo-page .svd-main-content {
  min-width: 0;
  width: 100%;
}

#vehiculo-page .svd-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  min-width: 0;
  width: 100%;
}

#vehiculo-page .svd-main-col {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

#vehiculo-page .svd-gallery-main {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e9e9eb;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

#vehiculo-page .svd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#vehiculo-page .svd-gallery-thumbs-wrap {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#vehiculo-page .svd-gallery-nav {
  width: 36px;
  height: 36px;
  border: 1px solid #d9dce0;
  border-radius: 999px;
  background: #fff;
  color: #3a3d42;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

#vehiculo-page .svd-gallery-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#vehiculo-page .svd-gallery-thumbs {
  margin-top: 0;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#vehiculo-page .svd-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

#vehiculo-page .svd-gallery-thumbs .thumb {
  border: 2px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 140px;
  scroll-snap-align: start;
}

#vehiculo-page .svd-gallery-thumbs .thumb.active {
  border-color: #4a90e2;
}

#vehiculo-page .svd-mobile-price {
  display: none;
}

#vehiculo-page .svd-tabs {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 70px;
}

#vehiculo-page .svd-tab {
  border: none;
  background: #fff;
  color: #666;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

#vehiculo-page .svd-tab.active {
  background: #333;
  color: #fff;
}

#vehiculo-page .svd-side-col {
  position: sticky;
  top: 74px;
  align-self: start;
  min-width: 0;
  width: 100%;
  max-width: 390px;
  justify-self: end;
}

#vehiculo-page .svd-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 28px;
  margin-bottom: 22px;
}

#vehiculo-page .svd-price-card h1 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
}

#vehiculo-page .svd-meta {
  margin: 0 0 24px;
  font-size: 16px;
  color: #666;
}

#vehiculo-page .svd-spec-grid .spec-label {
  font-size: 12px;
  color: #999;
}

#vehiculo-page .svd-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

#vehiculo-page .svd-monthly {
  font-size: 33px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 23px;
}

#vehiculo-page .svd-discount {
  font-size: 14px;
  font-weight: 700;
  background: #8cff01;
  color: #333;
  border-radius: 6px;
  padding: 8px 10px;
}

#vehiculo-page .svd-discount:empty {
  display: none;
}

#vehiculo-page .svd-cash {
  margin: 6px 0 14px;
  font-size: 16px;
  color: #666;
}

#vehiculo-page .svd-cash:empty {
  display: none;
}

#vehiculo-page .svd-viewing {
  border: 1px solid #ffecb3;
  background: #fff8e1;
  border-radius: 10px;
  color: #f57f17;
  font-size: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#vehiculo-page .svd-eye-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex: 0 0 auto;
}

#vehiculo-page .svd-eye-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

#vehiculo-page .svd-btn-buy {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #8cff01;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 18px;
}

#vehiculo-page .svd-badges {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

#vehiculo-page .svd-badges small {
  color: #666;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

#vehiculo-page .svd-finance-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

#vehiculo-page .svd-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

#vehiculo-page .pill-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

#vehiculo-page .pill {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f5f5f5;
  color: #666;
  font-weight: 700;
}

#vehiculo-page .pill.active {
  background: #333;
  color: #fff;
}

#vehiculo-page .svd-finance-footer {
  margin-top: 14px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px;
}

#vehiculo-page .svd-section {
  margin-top: 32px;
}

#vehiculo-page .svd-section > h2 {
  font-size: 20px;
  margin: 0 0 14px;
}

#vehiculo-page .svd-panel {
  background: #efeff1;
  border-radius: 20px;
  padding: 28px;
}

#vehiculo-page #overview .svd-overview-panel {
  background: #ececef;
  border-radius: 24px;
  padding: 36px 40px 32px;
}

#vehiculo-page #overview .svd-overview-title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #2e3136;
}

#vehiculo-page #overview .svd-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 26px;
}

#vehiculo-page #overview .svd-spec-grid .spec {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
}

#vehiculo-page #overview .svd-spec-grid .spec-icon {
  width: 26px;
  height: 26px;
  color: #72757a;
  grid-column: 1;
  grid-row: 1 / span 2;
}

#vehiculo-page #overview .svd-spec-grid .spec-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

#vehiculo-page #overview .svd-spec-grid .spec-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 16px;
  line-height: 1.2;
  color: #8b8e94;
}

#vehiculo-page #overview .svd-spec-grid .spec strong {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #2f3237;
}

#vehiculo-page #overview .svd-overview-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 16px;
  color: #3d8be8;
  font-weight: 600;
}

#vehiculo-page #features .svd-features-title {
  margin: 28px 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  line-height: 1.25;
  color: #2e3136;
}

#vehiculo-page #features .svd-features-title-icon {
  width: 24px;
  height: 24px;
  color: #2e3136;
}

#vehiculo-page #features .svd-features-title-icon svg {
  width: 100%;
  height: 100%;
}

#vehiculo-page #features .svd-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 12px;
}

#vehiculo-page #features .svd-feature-grid .feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
}

#vehiculo-page #features .svd-feature-grid .feature-icon {
  width: 20px;
  height: 20px;
  color: #2e3136;
  flex: 0 0 auto;
}

#vehiculo-page #features .svd-feature-grid .feature-icon svg {
  width: 100%;
  height: 100%;
}

#vehiculo-page #features .svd-feature-grid .feature-text {
  font-size: 16px;
  line-height: 1.35;
  color: #2f3237;
}

#vehiculo-page #details > h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 18px;
  color: #2f3237;
}

#vehiculo-page #details .svd-accordion {
  display: grid;
  gap: 14px;
}

#vehiculo-page #details .acc-item {
  border: 1px solid #dfe0e3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

#vehiculo-page #details .acc-head {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

#vehiculo-page #details .acc-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

#vehiculo-page #details .acc-icon {
  width: 26px;
  height: 26px;
  color: #2f3237;
  flex: 0 0 auto;
}

#vehiculo-page #details .acc-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

#vehiculo-page #details .acc-title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #2f3237;
}

#vehiculo-page #details .acc-chevron {
  width: 22px;
  height: 22px;
  color: #696d74;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

#vehiculo-page #details .acc-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

#vehiculo-page #details .acc-head.open .acc-chevron {
  transform: rotate(90deg);
}

#vehiculo-page #details .acc-body {
  display: none;
  background: #f2f2f3;
  border-top: 1px solid #e7e7e9;
  padding: 10px 18px 14px;
}

#vehiculo-page #details .acc-body.open {
  display: block;
}

#vehiculo-page #details .acc-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#vehiculo-page #details .acc-body li {
  position: relative;
  padding-left: 12px;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  color: #585c63;
}

#vehiculo-page #details .acc-body li:last-child {
  margin-bottom: 0;
}

#vehiculo-page #details .acc-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

#vehiculo-page #reviews {
  margin-top: 44px;
  padding-top: 6px;
  padding-bottom: 34px;
  border-bottom: 1px solid #dfe0e3;
}

#vehiculo-page #reviews > h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  color: #2f3237;
  margin: 0 0 20px;
}

#vehiculo-page .svd-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#vehiculo-page .svd-review-grid .review {
  background: #efeff1;
  border-radius: 16px;
  padding: 30px 28px 26px;
}

#vehiculo-page .svd-review-grid .review .stars {
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1;
  color: #2f3237;
}

#vehiculo-page .svd-review-grid .review h4 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: #2f3237;
}

#vehiculo-page .svd-review-grid .review p {
  color: #585c63;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

#vehiculo-page .svd-review-grid .review .author {
  margin-top: 22px;
  color: #8b8e94;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#vehiculo-page .svd-review-grid .review .author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #e1e2e4;
  color: #2f3237;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

#vehiculo-page .svd-similar-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

#vehiculo-page .svd-similar-grid .similar-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}

#vehiculo-page .svd-similar-grid .similar-card .similar-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

#vehiculo-page .svd-similar-grid .similar-card img {
  width: 100%;
  border-radius: 12px;
  height: 230px;
  object-fit: cover;
  display: block;
}

#vehiculo-page .svd-similar-grid .similar-card .tag {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
}

#vehiculo-page .svd-similar-grid .similar-card small {
  display: block;
  margin-top: 14px;
  color: #8b8e94;
  font-size: 16px;
  line-height: 1.25;
}

#vehiculo-page .svd-similar-grid .similar-card h4 {
  margin: 8px 0 6px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #2f3237;
}

#vehiculo-page .svd-similar-grid .similar-card strong {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #2f3237;
}

#vehiculo-page .svd-seller-row {
  margin-top: 18px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#vehiculo-page .svd-inspection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

#vehiculo-page .svd-inspection-grid img {
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

#vehiculo-page .svd-report-box {
  margin-top: 16px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 24px;
}

#vehiculo-page .svd-imperfections {
  margin-top: 20px;
}

#vehiculo-page .svd-imperfect-tabs {
  display: inline-flex;
  gap: 4px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 4px;
}

#vehiculo-page .svd-imperfect-tabs .pill {
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 8px 16px;
}

#vehiculo-page .svd-imperfect-media {
  margin-top: 14px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

#vehiculo-page .svd-imperfect-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.86;
}

#vehiculo-page .svd-imperfect-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(320px, 85%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 14px;
}

#vehiculo-page .svd-imperfect-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2f3237;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

#vehiculo-page .svd-imperfect-nav.prev {
  left: 12px;
}

#vehiculo-page .svd-imperfect-nav.next {
  right: 12px;
}

#vehiculo-page .svd-imperfect-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#vehiculo-page .svd-imperfect-counter {
  margin-top: 8px;
  font-size: 13px;
  color: #6b6f76;
  text-align: right;
}

#vehiculo-page .svd-more-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1240px) {
  #vehiculo-page .svd-content-wrapper {
    grid-template-columns: 1fr;
  }

  #vehiculo-page .svd-hero {
    grid-template-columns: 1fr;
  }

  #vehiculo-page .svd-mobile-price {
    display: block;
  }

  #vehiculo-page .svd-price-card {
    display: none;
  }

  #vehiculo-page .svd-side-col {
    position: static;
    max-width: none;
    justify-self: stretch;
  }

  #vehiculo-page .svd-tabs {
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  #vehiculo-page {
    padding-top: 16px;
  }

  #vehiculo-page #overview .svd-overview-panel {
    padding: 18px;
    border-radius: 14px;
  }

  #vehiculo-page #overview .svd-overview-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  #vehiculo-page #overview .svd-spec-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #vehiculo-page #overview .svd-spec-grid .spec-icon {
    width: 24px;
    height: 24px;
  }

  #vehiculo-page #overview .svd-spec-grid .spec {
    grid-template-columns: 24px 1fr;
  }

  #vehiculo-page #overview .svd-spec-grid .spec-label {
    font-size: 14px;
  }

  #vehiculo-page #overview .svd-spec-grid .spec strong {
    font-size: 18px;
  }

  #vehiculo-page #overview .svd-overview-link {
    font-size: 16px;
    margin-top: 16px;
  }

  #vehiculo-page #features .svd-features-title {
    font-size: 24px;
    margin: 18px 0 14px;
  }

  #vehiculo-page #features .svd-features-title-icon {
    width: 24px;
    height: 24px;
  }

  #vehiculo-page #features .svd-feature-grid {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  #vehiculo-page #features .svd-feature-grid .feature-icon {
    width: 20px;
    height: 20px;
  }

  #vehiculo-page #features .svd-feature-grid .feature-text {
    font-size: 16px;
  }

  #vehiculo-page .svd-gallery-thumbs {
    padding-bottom: 2px;
  }

  #vehiculo-page .svd-review-grid,
  #vehiculo-page .svd-similar-grid,
  #vehiculo-page .svd-inspection-grid {
    grid-template-columns: 1fr;
  }

  #vehiculo-page .svd-gallery-thumbs .thumb {
    flex: 0 0 140px;
    min-width: 140px;
    scroll-snap-align: start;
  }

  #vehiculo-page .svd-gallery-thumbs-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #vehiculo-page .svd-gallery-nav {
    display: none;
  }

  #vehiculo-page .svd-tab {
    padding: 10px 16px;
    font-size: 15px;
  }

  #vehiculo-page .svd-monthly {
    font-size: 38px;
  }

  #vehiculo-page .svd-section > h2 {
    font-size: 28px;
  }
}
