/* SDM Platform · Portal dealers (modulo autocontenido, independiente del tema) */

:root {
	--sdm-portal-accent: #f5ce16;
	--sdm-portal-header-bg: #0a0a0a;
	--sdm-portal-header-text: #ffffff;
	--sdm-portal-on-accent: #0a0a0a;
}

/* Si la pagina cayo en plantilla del tema por error, ocultar chrome duplicado */
body.sdm-dealer-portal [data-testid="corporate-topbar"],
body.sdm-dealer-portal header[data-testid="site-header"],
body.sdm-dealer-portal .smn26-yellow:not(.sdm-dp-header) {
	display: none !important;
}

body.sdm-dealer-portal #wpadminbar {
	display: none !important;
}

body.sdm-dealer-portal.admin-bar .sdm-dp-app {
	margin-top: 0 !important;
}

.sdm-dp-html,
.sdm-dp-body {
	margin: 0;
	padding: 0;
	background: #f4f5f7;
}

.sdm-dp-app {
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #0f172a;
}

.sdm-dealer-portal-main {
	display: flex;
	flex-direction: column;
}

/* ── Header ── */
.sdm-dp-header {
	background: var(--sdm-portal-header-bg, #0a0a0a);
	color: var(--sdm-portal-header-text, #fff);
	border-bottom: 3px solid var(--sdm-portal-accent, #f5ce16);
}

.sdm-dp-header__top {
	max-width: 1280px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.sdm-dp-header__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sdm-dp-header__logo-img {
	height: 48px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}

.sdm-dp-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--sdm-portal-accent, #f5ce16);
	color: var(--sdm-portal-on-accent, #0a0a0a);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.04em;
}

.sdm-dp-header__brand-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.2;
}

.sdm-dp-header__brand-text strong {
	font-size: 15px;
	font-weight: 700;
}

.sdm-dp-header__brand-text span {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.sdm-dp-header__session {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.sdm-dp-header__dealer {
	text-align: right;
	line-height: 1.25;
}

.sdm-dp-header__dealer-label {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.5);
}

.sdm-dp-header__dealer strong {
	color: var(--sdm-portal-accent, #f5ce16);
	font-size: 14px;
}

.sdm-dp-header__logout {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}

.sdm-dp-header__logout:hover {
	border-color: var(--sdm-portal-accent, #f5ce16);
	background: rgba(245, 206, 22, 0.08);
	color: #fff;
}

/* ── Nav tabs ── */
.sdm-dp-nav {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px 0;
	display: flex;
	gap: 4px;
	overflow-x: auto;
}

.sdm-dp-nav__link {
	display: inline-flex;
	align-items: center;
	padding: 12px 18px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
}

.sdm-dp-nav__link:hover {
	color: #fff;
}

.sdm-dp-nav__link.is-active {
	color: var(--sdm-portal-accent, #f5ce16);
	border-bottom-color: var(--sdm-portal-accent, #f5ce16);
}

/* ── Main content ── */
.sdm-dp-main {
	flex: 1;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 28px 24px 40px;
}

.sdm-dp-intro {
	margin-bottom: 24px;
}

.sdm-dp-intro h1 {
	margin: 0 0 6px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #0f172a;
}

.sdm-dp-intro p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	max-width: 640px;
}

.sdm-dp-count {
	display: inline-block;
	margin-top: 10px;
	padding: 4px 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #475569;
}

/* ── Grid ── */
.sdm-dp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

/* ── Cards ── */
.sdm-dp-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	overflow: hidden;
}

.sdm-dp-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.sdm-dp-card--activa:hover {
	border-color: #dc2626;
}

.sdm-dp-card--programada:hover {
	border-color: #2563eb;
}

.sdm-dp-card--finalizada {
	opacity: 0.92;
}

.sdm-dp-card--finalizada:hover {
	border-color: #64748b;
}

.sdm-dp-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #e2e8f0;
	overflow: hidden;
}

.sdm-dp-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.sdm-dp-card:hover .sdm-dp-card__img {
	transform: scale(1.04);
}

.sdm-dp-card--finalizada .sdm-dp-card__img {
	filter: grayscale(0.35);
}

.sdm-dp-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
}

.sdm-dp-card__badge--activa { background: #dc2626; }
.sdm-dp-card__badge--programada { background: #2563eb; }
.sdm-dp-card__badge--cerrada { background: #475569; }
.sdm-dp-card__badge--adjudicada { background: #0f766e; }

.sdm-dp-card__pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	animation: sdm-dp-pulse 1.2s infinite;
}

@keyframes sdm-dp-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.85); }
}

.sdm-dp-card__timer {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 8px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 11px;
	font-weight: 600;
}

.sdm-dp-card__meta-chip {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 8px;
	background: rgba(15, 23, 42, 0.8);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sdm-dp-card__body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.sdm-dp-card__title {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	color: #0f172a;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.sdm-dp-card__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}

.sdm-dp-card__label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin-bottom: 2px;
}

.sdm-dp-card__price {
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
}

.sdm-dp-card__branch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #64748b;
}

.sdm-dp-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	border-top: 1px solid #f1f5f9;
	font-size: 12px;
	color: #64748b;
}

.sdm-dp-card__footer strong {
	color: #0f172a;
	font-size: 14px;
}

.sdm-dp-card__cta {
	margin-top: auto;
	padding-top: 10px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0a0a0a;
}

.sdm-dp-card__cta--muted {
	color: #64748b;
}

/* ── Empty state ── */
.sdm-dp-empty {
	text-align: center;
	padding: 56px 24px;
	background: #fff;
	border: 1px dashed #cbd5e1;
}

.sdm-dp-empty h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
}

.sdm-dp-empty p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

/* ── Login ── */
.sdm-dp-login-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.sdm-dp-login {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 36px 32px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.sdm-dp-login__brand {
	text-align: center;
	margin-bottom: 28px;
}

.sdm-dp-login__logo-img {
	display: block;
	margin: 0 auto 14px;
	height: 64px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.sdm-dp-login__error {
	margin-bottom: 16px;
	padding: 10px 12px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	font-size: 13px;
	text-align: center;
}

.sdm-dp-login__brand span {
	display: inline-block;
	padding: 6px 12px;
	background: var(--sdm-portal-header-bg, #0a0a0a);
	color: var(--sdm-portal-accent, #f5ce16);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.sdm-dp-login h2 {
	margin: 14px 0 8px;
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
}

.sdm-dp-login p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
}

.sdm-dp-login label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #64748b;
	margin-bottom: 6px;
}

.sdm-dp-login input {
	width: 100%;
	border: 1px solid #cbd5e1;
	padding: 12px 14px;
	font-size: 14px;
	margin-bottom: 16px;
}

.sdm-dp-login button {
	width: 100%;
	border: 0;
	padding: 14px;
	background: var(--sdm-portal-header-bg, #0a0a0a);
	color: var(--sdm-portal-accent, #f5ce16);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
}

.sdm-dp-login button:disabled {
	opacity: 0.6;
	cursor: wait;
}

/* ── Tarjetas: estado de pujas ── */
.sdm-dp-card__bids {
	margin-top: 4px;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
}

.sdm-dp-card__bid-leading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 6px;
}

.sdm-dp-card__bid-amount {
	font-size: 18px;
	font-weight: 800;
	color: #0f766e;
}

.sdm-dp-card--activa .sdm-dp-card__bid-amount {
	color: #dc2626;
}

.sdm-dp-card__bid-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sdm-dp-card__bid-sep {
	opacity: 0.5;
}

/* ── Detalle de subasta ── */
.sdm-dp-detail__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 12px;
	color: #64748b;
}

.sdm-dp-detail__crumbs a {
	color: #0f172a;
	text-decoration: none;
	font-weight: 600;
}

.sdm-dp-detail__crumbs a:hover {
	color: #ca8a04;
}

.sdm-dp-detail__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

@media (min-width: 1024px) {
	.sdm-dp-detail__layout {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
		gap: 28px;
	}
}

.sdm-dp-detail__gallery {
	background: #fff;
	border: 1px solid #e2e8f0;
	overflow: hidden;
}

.sdm-dp-detail__hero {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #e2e8f0;
}

.sdm-dp-detail__hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sdm-dp-detail__cert {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 10px;
	background: var(--sdm-portal-accent, #f5ce16);
	color: var(--sdm-portal-on-accent, #0a0a0a);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sdm-dp-detail__thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: #e2e8f0;
	border-top: 1px solid #e2e8f0;
}

.sdm-dp-detail__thumb {
	border: 0;
	padding: 0;
	background: #fff;
	aspect-ratio: 1;
	cursor: pointer;
	overflow: hidden;
	opacity: 0.75;
	transition: opacity 0.2s;
}

.sdm-dp-detail__thumb.is-active,
.sdm-dp-detail__thumb:hover {
	opacity: 1;
	outline: 2px solid var(--sdm-portal-accent, #f5ce16);
	outline-offset: -2px;
}

.sdm-dp-detail__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sdm-dp-detail__description {
	margin-top: 20px;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sdm-dp-detail__description-title {
	margin: 0 0 14px;
	padding-bottom: 12px;
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
	border-bottom: 2px solid var(--sdm-portal-accent, #f5ce16);
}

.sdm-dp-detail__content {
	margin-top: 20px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 22px 24px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sdm-dp-detail__content--features {
	margin-top: 20px;
}

.sdm-dp-detail__content h2,
.sdm-dp-detail__content h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
}

.sdm-dp-detail__content h3 {
	margin-top: 24px;
	font-size: 16px;
}

.sdm-dp-detail__prose {
	font-size: 14px;
	line-height: 1.65;
	color: #475569;
}

.sdm-dp-detail__features {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 8px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	color: #475569;
}

.sdm-dp-detail__features li::before {
	content: "✓";
	color: #ca8a04;
	font-weight: 700;
	margin-right: 8px;
}

.sdm-dp-detail__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

@media (min-width: 1024px) {
	.sdm-dp-detail__sidebar {
		position: sticky;
		top: 20px;
		align-self: start;
		max-height: calc(100vh - 40px);
		overflow-y: auto;
		scrollbar-gutter: stable;
	}
}

.sdm-dp-detail__summary,
.sdm-dp-detail__bid-panel {
	background: #fff;
	border: 1px solid #e2e8f0;
	width: 100%;
}

.sdm-dp-detail__summary {
	padding: 24px;
}

.sdm-dp-detail__summary-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.sdm-dp-detail__year {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #2563eb;
}

.sdm-dp-detail__status {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 4px 8px;
}

.sdm-dp-detail__status--activa { background: #fee2e2; color: #b91c1c; }
.sdm-dp-detail__status--programada { background: #dbeafe; color: #1d4ed8; }
.sdm-dp-detail__status--cerrada { background: #f1f5f9; color: #475569; }
.sdm-dp-detail__status--adjudicada { background: #ccfbf1; color: #0f766e; }

.sdm-dp-detail__title {
	margin: 0 0 16px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #0f172a;
	text-transform: uppercase;
}

.sdm-dp-detail__prices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.sdm-dp-detail__price-box {
	border: 1px solid #e2e8f0;
	padding: 12px 14px;
}

.sdm-dp-detail__price-box span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin-bottom: 4px;
}

.sdm-dp-detail__price-box strong {
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
}

.sdm-dp-detail__price-box--highlight strong {
	color: #0f766e;
}

.sdm-dp-detail__timer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #e2e8f0;
	margin-bottom: 12px;
}

.sdm-dp-detail__timer span {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.sdm-dp-detail__timer strong {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 18px;
	color: #0f172a;
}

.sdm-dp-detail__bid-stats {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sdm-dp-detail__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.sdm-dp-detail__spec {
	border: 1px solid #e2e8f0;
	padding: 10px 12px;
	min-width: 0;
}

.sdm-dp-detail__spec span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin-bottom: 4px;
}

.sdm-dp-detail__spec strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
	word-break: break-word;
}

.sdm-dp-detail__spec--full {
	grid-column: 1 / -1;
}

.sdm-dp-detail__bid-head {
	padding: 12px 18px;
	background: var(--sdm-portal-accent, #f5ce16);
	color: var(--sdm-portal-on-accent, #0a0a0a);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sdm-dp-detail__bid-body {
	padding: 20px 18px;
}

.sdm-dp-detail__bid-hint {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.5;
	color: #64748b;
}

.sdm-dp-detail__bid-form label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #64748b;
	margin-bottom: 6px;
}

.sdm-dp-detail__bid-form input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #cbd5e1;
	padding: 12px 14px;
	font-size: 16px;
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	margin-bottom: 14px;
}

.sdm-dp-detail__bid-submit {
	width: 100%;
	border: 0;
	padding: 14px;
	background: var(--sdm-portal-header-bg, #0a0a0a);
	color: var(--sdm-portal-accent, #f5ce16);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	border-radius: 12px;
}

.sdm-dp-detail__bid-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.sdm-dp-detail__bid-feedback {
	margin-top: 10px;
	font-size: 13px;
	text-align: center;
}

.sdm-dp-detail__bid-feedback.hidden {
	display: none;
}

.sdm-dp-detail__back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	margin-top: 16px;
	padding: 12px 16px;
	border: 1px solid #e2e8f0;
	color: #0f172a;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: border-color 0.2s;
}

.sdm-dp-detail__back:hover {
	border-color: var(--sdm-portal-header-bg, #0a0a0a);
}

.sdm-dp-detail__branch {
	margin: 0 0 16px;
	padding: 10px 12px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
}

.sdm-dp-detail__branch span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin-bottom: 4px;
}

.sdm-dp-detail__branch strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sdm-dp-detail__ficha {
	margin-top: 20px;
	padding: 0;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
	background: #fff;
	color: #0f172a;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__table th,
.sdm-dp-detail__ficha .sdm-vehicle-ficha__table td {
	border: 1px solid #e2e8f0;
	padding: 12px 16px;
	vertical-align: middle;
}

.sdm-vehicle-ficha__table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #0f172a;
	background: #fff;
	color: #0f172a;
}

.sdm-vehicle-ficha__table th,
.sdm-vehicle-ficha__table td {
	border: 1px solid #0f172a;
	padding: 12px 16px;
	vertical-align: middle;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__caption,
.sdm-vehicle-ficha__caption {
	text-align: center;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: #fff;
	color: #0f172a;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__label,
.sdm-vehicle-ficha__label {
	width: 38%;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: #f8fafc;
	color: #0f172a;
	padding-left: 16px;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__value,
.sdm-vehicle-ficha__value {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: #0f172a;
	word-break: break-word;
	padding-left: 16px;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__list-cell,
.sdm-vehicle-ficha__list-cell {
	padding: 10px 16px 14px;
	vertical-align: top;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__list,
.sdm-vehicle-ficha__list {
	margin: 0;
	padding: 0 0 0 18px;
	list-style: disc;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__list li,
.sdm-vehicle-ficha__list li {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: #0f172a;
	padding: 4px 0;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__extras,
.sdm-vehicle-ficha__extras {
	margin-top: 0;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__table--group,
.sdm-vehicle-ficha__table--group {
	margin-top: -1px;
}

.sdm-dp-detail__ficha .sdm-vehicle-ficha__table--group .sdm-vehicle-ficha__caption,
.sdm-vehicle-ficha__table--group .sdm-vehicle-ficha__caption {
	font-size: 13px;
	letter-spacing: 0.08em;
}

@media (max-width: 640px) {
	.sdm-dp-header__top {
		padding: 14px 16px;
	}

	.sdm-dp-nav {
		padding: 0 12px;
	}

	.sdm-dp-main {
		padding: 20px 16px 32px;
	}

	.sdm-dp-header__dealer {
		text-align: left;
	}

	.sdm-dp-detail__prices,
	.sdm-dp-detail__specs {
		grid-template-columns: 1fr;
	}

	.sdm-vehicle-ficha__table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.sdm-vehicle-ficha__table {
		min-width: 300px;
	}

	.sdm-vehicle-ficha__label {
		width: 42%;
		font-size: 10px;
	}
}
