 @font-face {
            font-family: 'Kia Signature';
            src: url('assets/KiaSignatureFixOTFBold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Kia Signature';
            src: url('assets/KiaSignatureFixOTFLight.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Kia Signature';
            src: url('assets/KiaSignatureFixOTFRegular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kia Signature', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    padding-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #000;
    padding: 0px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    height:80px;
}

.header.scrolled {
    padding: 0px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height:60px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-cjaar {
    height: 80px;
    filter: invert(1);
    transition: height 0.3s ease;
}

.header.scrolled .logo-cjaar {
    height: 60px;
}

.logo-outlet {
    height: 80px;
    transition: height 0.3s ease;
}

.header.scrolled .logo-outlet {
    height: 60px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
}


.title-section h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 300;
}

.title-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.restrictions-link {
    display: block;
    text-align: end;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight:600;
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s ease;
}

.restrictions-link:hover {
    color: #BB162B;
    text-decoration: underline;
}

.restrictions-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.restrictions-content li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
    color: #555;
}

.restrictions-content li:last-child {
    border-bottom: none;
}

.restrictions-content li::before {
    content: "• ";
    color: #BB162B;
    font-weight: bold;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .title-section {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .banner-image {
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
    }
}

.kia-text {
    font-weight: 700;
    color: #000;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.kia-logo {
    position: absolute;
    right: 50px;
    top: 0;
    height: 70px;
    transition: background 0.3s ease;
}

.kia-logo:hover {
     transform: scale(1.05);

}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.vehicle-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card.hidden {
    display: none;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.vehicle-image-wrapper {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    transform: scale(1.05);
}

.vehicle-image-wrapper:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}

.vehicle-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vehicle-image-wrapper:hover .vehicle-image {
    transform: scale(1.05);
}

.vehicle-name {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    color: #333;
    background: white;
    cursor: pointer;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    padding: 40px 0;
}

.btn-load-more {
    background: #05141F;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #0a1f2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 20, 31, 0.3);
}

.btn-load-more.hidden {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #333;
    font-size: 28px;
}

.modal-vehicle-image-wrapper {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 0;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.modal-vehicle-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
}

.modal-vehicle-name {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-call {
    background: #05141F;
    color: white;
}

.btn-call:hover {
    background: #0a1f2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 20, 31, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
    background: #05141F;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-kia-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-contact h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-links {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    width: fit-content;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #BB162B;
    transition: width 0.4s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: #BB162B;
}

.footer-text {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .vehicle-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .kia-logo {
        position: static;
        margin-top: 20px;
    }
    
    .title-section {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .logo-cjaar,
    .logo-outlet {
        height: 40px;
    }
    
    .header.scrolled .logo-cjaar,
    .header.scrolled .logo-outlet {
        height: 30px;
    }
    
    .title-section h1 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }
    
    .vehicle-image-wrapper {
        height: 200px;
        padding: 0;
        transform: scale(1.05);
    }
    
    .vehicle-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: fill;
        transition: transform 0.3s ease;
    }
    
     .title-section {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .banner-image {
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .vehicle-image-wrapper {
        height: 200px;
        padding: 0;
        transform: scale(1.05);
    }
    
    .vehicle-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: fill;
        transition: transform 0.3s ease;
    }
    
    .modal-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}



/* ── Sección VIN ── */
.vin-section {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0 0;
}
 
/* ── Barra de búsqueda ── */
.vin-bar {
  max-width: 1220px;
  margin: 0 auto;
  padding-bottom: 32px;
}

 
.vin-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vin-bar-label { flex-shrink: 0; }
.vin-bar-hint {
  font-size: 13px;
  color: #888;
  margin: 4px 0 0;
}
.vin-bar-hint-sm {
  font-size: 11px;
  color: #bbb;
  flex-basis: 100%;
  margin-top: -8px;
}
 
.vin-input-row {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
}
.vin-input-row input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 13px;
  font-size: 14px;
  font-family: monospace;
  letter-spacing: 1px;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color .18s;
}
.vin-input-row input:focus { border-color: #1a1a1a; background: #fff; }
 
.vin-input-row button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.vin-input-row button:hover { background: #333; }
.vin-input-row button:disabled { background: #999; cursor: not-allowed; }
 
.vin-error {
  margin-top: 10px;
  padding: 11px 14px;
  background: #fdf3f3;
  border: 1px solid #e8b4b4;
  color: #9b2020;
  font-size: 13px;
  border-radius: 3px;
}
 
/* ── Resultados ── */
.vin-results {
  border-top: 1px solid #efefef;
  padding: 0 0 40px;
}
 
.vin-results-bar {
  position: sticky;
  top: 60px;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
 
.vin-model-found {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.vin-model-label { font-size: 11px; color: #aaa; }
.vin-model-found strong { font-size: 14px; color: #1a1a1a; }
.vin-model-code {
  font-size: 11px;
  background: #1a1a1a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
}
 
.vin-filter-wrap { flex: 1; min-width: 160px; }
.vin-filter-wrap input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 8px 11px;
  font-size: 13px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color .18s;
}
.vin-filter-wrap input:focus { border-color: #1a1a1a; background: #fff; }
 
.vin-sel-count {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 3px;
}
 
.btn-cotizar {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
  white-space: nowrap;
}
.btn-cotizar:hover { background: #333; }
 
.vin-total-txt {
  max-width: 920px;
  margin: 16px auto 20px;
  font-size: 13px;
  color: #888;
}
 
/* ── Categoría acordeón ── */
.vin-cat {
  max-width: 920px;
  margin: 0 auto 12px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}
.vin-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fafafa;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.vin-cat-header:hover { background: #f0f0f0; }
.vin-cat-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vin-cat-count {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  background: #e8e8e8;
  padding: 2px 8px;
  border-radius: 2px;
}
.vin-cat-arrow {
  width: 16px; height: 16px;
  color: #aaa;
  transition: transform .2s;
  flex-shrink: 0;
}
.vin-cat.open .vin-cat-arrow { transform: rotate(180deg); }
 
.vin-cat-body {
  display: none;
  border-top: 1px solid #efefef;
}
.vin-cat.open .vin-cat-body { display: block; }
 
/* ── Tabla de repuestos ── */
.vin-parts-table {
  width: 100%;
  border-collapse: collapse;
}
.vin-parts-table th {
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 9px 14px;
  text-align: left;
}
.vin-parts-table th:first-child { width: 36px; }
.vin-parts-table td {
  padding: 9px 14px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.vin-parts-table tr:last-child td { border-bottom: none; }
.vin-parts-table tr.hidden-part { display: none; }
.vin-parts-table tr:hover td { background: #fafafa; }
.vin-parts-table tr.selected-part td { background: #f5f5f5; }
 
.vin-parts-table input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: #1a1a1a;
  cursor: pointer;
}
 
.part-code {
  font-size: 11px;
  color: #aaa;
  font-family: monospace;
}
 
.disc-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
 
.no-results-row td {
  text-align: center;
  color: #aaa;
  padding: 20px;
  font-size: 13px;
}
 
/* ── Modal cotización ── */
.vin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vin-modal-box {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.vin-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.vin-modal-close:hover { color: #1a1a1a; }
.vin-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.vin-modal-sub {
  font-size: 13px;
  color: #888;
  margin: 0 0 22px;
}
.vin-modal-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
 
.vin-partes-resumen {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  padding: 12px 16px;
  max-height: 180px;
  overflow-y: auto;
}
.vin-parte-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #efefef;
  font-size: 12px;
  color: #444;
  gap: 10px;
}
.vin-parte-item:last-child { border-bottom: none; }
.vin-parte-item span:first-child { flex: 1; }
 
@media (max-width: 600px) {
  .vin-results-bar { gap: 8px; }
  .vin-model-found { flex-wrap: wrap; }
  .vin-filter-wrap { flex: 1 1 100%; }
  .vin-parts-table th:nth-child(3),
  .vin-parts-table td:nth-child(3) { display: none; }
}

/* ── Sección solicitud ── */
.solicitud-section {
    background: #f2f2f2;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 52px 0 60px;
}

.solicitud-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.solicitud-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #888;
    margin-bottom: 8px;
}

.solicitud-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.2;
}

.solicitud-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 28px;
}

/* ── Bloques ── */
.form-block {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 22px 24px 20px;
    margin-bottom: 16px;
}

.form-block-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #aaa;
    margin: 0 0 16px;
}

/* ── Layout filas ── */
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-row.three-col .form-group { flex: 1 1 180px; }
.form-row.two-col   .form-group { flex: 1 1 260px; }

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.req { color: #1a1a1a; }

/* ── Inputs ── */
.form-group input,
.form-group textarea {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #1a1a1a;
    font-size: 14px;
    padding: 10px 12px;
    outline: none;
    transition: border-color .18s, background .18s;
    font-family: inherit;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a1a1a;
    background: #fff;
}

.form-group input.has-error,
.form-group textarea.has-error { border-color: #c0392b; }

.custom-multiselect.has-error .multiselect-display { border-color: #c0392b; }

.field-error {
    font-size: 11px;
    color: #c0392b;
    margin-top: 4px;
    min-height: 14px;
    display: block;
}

.field-hint {
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
    display: block;
    line-height: 1.4;
}

/* Año solo números */
#sf-anio { -moz-appearance: textfield; }
#sf-anio::-webkit-inner-spin-button,
#sf-anio::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Multiselect ── */
.custom-multiselect { position: relative; }

.multiselect-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 12px;
    cursor: pointer;
    min-height: 42px;
    gap: 8px;
    transition: border-color .18s;
}
.multiselect-display:focus,
.multiselect-display.open { border-color: #1a1a1a; outline: none; }
.multiselect-display.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.multiselect-placeholder { font-size: 14px; color: #bbb; flex: 1; }

.ms-tags { display: flex; flex-wrap: wrap; gap: 4px; flex: 1; }

.ms-tag {
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ms-tag-remove { cursor: pointer; opacity: .6; font-size: 14px; line-height: 1; }
.ms-tag-remove:hover { opacity: 1; }

.ms-arrow {
    width: 15px; height: 15px;
    color: #aaa;
    flex-shrink: 0;
    transition: transform .2s;
}
.multiselect-display.open .ms-arrow { transform: rotate(180deg); }

.multiselect-dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border: 1px solid #1a1a1a;
    border-top: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 200;
    max-height: 230px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.multiselect-dropdown.open { display: block; }

.ms-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background .12s;
}
.ms-option:hover { background: #f5f5f5; }
.ms-option input[type="checkbox"] {
    accent-color: #1a1a1a;
    width: 14px; height: 14px;
    cursor: pointer; margin: 0;
}

/* ── Botón submit ── */
.form-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.btn-solicitud {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 13px 36px;
    cursor: pointer;
    transition: background .18s, transform .12s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.btn-solicitud:hover  { background: #333; }
.btn-solicitud:active { transform: scale(.98); }
.btn-solicitud:disabled { background: #999; cursor: not-allowed; }

/* ── Feedback ── */
.form-feedback {
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
}
.form-feedback.success {
    background: #f0faf4;
    border: 1px solid #b7dfca;
    color: #1e6b42;
}
.form-feedback.error {
    background: #fdf3f3;
    border: 1px solid #e8b4b4;
    color: #9b2020;
}

/* ── VIN inline (integrado en form) ── */
.vin-inline-row {
    display: flex;
    gap: 8px;
}
.vin-inline-row input { flex: 1; }

.btn-vin-buscar {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-vin-buscar:hover    { background: #333; }
.btn-vin-buscar:disabled { background: #aaa; cursor: not-allowed; }

.vin-inline-results-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.vin-inline-results-bar input {
    flex: 1;
    min-width: 180px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 13px;
    font-family: inherit;
    background: #fafafa;
    outline: none;
    color: #1a1a1a;
    transition: border-color .18s;
}
.vin-inline-results-bar input:focus { border-color: #1a1a1a; }

.vin-inline-total {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
}

/* ── Spin animation (compartida) ── */
.spin {
    width: 16px; height: 16px;
    animation: sol-spin .8s linear infinite;
}
@keyframes sol-spin { to { transform: rotate(360deg); } }

/* ── Responsive form ── */
@media (max-width: 600px) {
    .solicitud-section { padding: 36px 0 44px; }
    .form-block { padding: 18px 16px; }
    .form-row.three-col .form-group,
    .form-row.two-col   .form-group { flex: 1 1 100%; }
    .form-submit-row { justify-content: stretch; }
    .btn-solicitud { width: 100%; justify-content: center; }
    .vin-inline-row { flex-direction: column; }
    .btn-vin-buscar { width: 100%; justify-content: center; }
}