/* ========================================
   VEHICLE DETAIL PAGE STYLES
   ======================================== */

/* Breadcrumbs */
.awtu-breadcrumb {
    background: var(--light-bg);
    padding: 1rem 0;
    margin-top: 6.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9f2f0;
    font-size: 0.875rem;
    color: var(--secondary-text);
}

.awtu-breadcrumb .container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.awtu-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.awtu-breadcrumb .breadcrumb li {
    display: inline;
}

.awtu-breadcrumb .breadcrumb li:not(:last-child)::after {
    content: " > ";
    color: #6c757d;
    margin: 0 0.5rem;
}

.awtu-breadcrumb .breadcrumb a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.awtu-breadcrumb .breadcrumb a:hover {
    color: var(--primary);
}

.awtu-breadcrumb .breadcrumb .active {
    color: #6c757d;
}

/* Main Vehicle Detail Section */
.awtu-vehicle-detail-section {
    padding: 2rem 0;
    background: white;
}

.awtu-vehicle-detail-section .container {
    position: relative;
}

.awtu-vehicle-detail-section .row {
    align-items: flex-start;
}

.vehicle-detail-content {
    margin-bottom: 2rem;
}

/* Vehicle Header - alineado con flex */
.vehicle-header {
    margin-bottom: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem 1.5rem;
}

.vehicle-header .header-left {
    flex: 1 1 0;
    min-width: 0;
}

.header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    z-index: 10;
}

.action-btn {
    padding: 0.25rem 0.75rem;
    border: 1px solid #e9f2f0;
    background: white;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    height: 32px;
    min-height: 32px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.action-btn:hover {
    border-color: #e9f2f0;
    color: #111827;
    background: #f9fafb;
}

.favorite-btn {
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    width: 50px;
    height: 30px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.favorite-btn:hover {
    background: #f9fafb;
    border-color: #e9f2f0;
    transform: scale(1.05);
}

.favorite-btn i {
    color: #6b7280;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.favorite-btn.active {
    background: white;
    border-color: #e9f2f0;
}

.favorite-btn:hover i {
    color: #dc3545;
}

.favorite-btn.active i {
    color: #dc3545 !important;
    font-weight: 900 !important;
    animation: heartBeat 0.6s ease-in-out;
}

/* Forzar corazón rojo sólido - MÁXIMA PRIORIDAD */
.favorite-btn.active i.fas.fa-heart {
    color: #dc3545 !important;
    font-weight: 900 !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
}

.favorite-btn.active i.fas.fa-heart:before {
    content: "\f004" !important;
    color: #dc3545 !important;
    font-weight: 900 !important;
}

/* Backup - aplicar directamente al elemento */
.favorite-btn[class*="active"] i[class*="fas"] {
    color: #dc3545 !important;
    font-weight: 900 !important;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.share-btn {
    padding: 0.5rem 1rem;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
    min-width: auto;
}

.vehicle-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

/* Badge para "Usado" */
.vehicle-badge-usado {
    background: transparent;
    color: #ea580c;
    border: 1px solid #ea580c;
}

/* Badge para "Nuevo" */
.vehicle-badge-nuevo {
    background: white;
    color: #14b08e;
    border: 1px solid #14b08e;
}

.vehicle-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.vehicle-specs span:not(:last-child)::after {
    content: " • ";
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    color: #6b7280;
    font-weight: 400;
}

.vehicle-stats {
    display: flex;
    gap: 0;
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.vehicle-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.vehicle-stats span:not(:last-child)::after {
    content: " • ";
    margin-left: 1rem;
    margin-right: 1rem;
    color: #9ca3af;
}

.vehicle-stats i {
    font-size: 0.85rem;
    width: 14px;
    text-align: center;
}

/* Vehicle Description */
.awtu-alert-mantenimiento-vencido {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: #fef2f2;
    border: 1px solid #dc2626;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.9375rem;
}

.awtu-alert-mantenimiento-vencido i {
    color: #dc2626;
    flex-shrink: 0;
}

.awtu-alert-mantenimiento-pendiente {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.9375rem;
}

.awtu-alert-mantenimiento-pendiente i {
    color: #f59e0b;
    flex-shrink: 0;
}

.vehicle-description {
    margin-bottom: 2rem;
}

.vehicle-description p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    font-weight: 400;
}

/* Image Gallery */
.vehicle-gallery {
    margin-bottom: 3rem;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f0f2f5;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.image-counter {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Technical Specifications */
.technical-specifications {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9f2f0;
}

.technical-specifications h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.technical-specifications h3 i {
    color: #14b08e;
    font-size: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem;
    background: oklab(0.95374 -0.00986376 -0.000223696 / 0.3);
    border-radius: 8px;
}

.spec-item i {
    color: #9ca3af;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.spec-item i.fa-circle {
    color: #14b08e; /* Verde por defecto para "Nuevo" */
}

/* Círculo verde para vehículos "Nuevo" */
.spec-item.estado-nuevo i.fa-circle {
    color: #14b08e;
}

/* Círculo rojo para vehículos "Usado" */
.spec-item.estado-usado i.fa-circle {
    color: #dc3545;
}

.spec-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
}

.spec-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    margin-left: auto;
}

.show-more-btn {
    width: 100%;
    padding: 0.45rem 1rem;
    background: #ffffff;
    border: 1px solid #e9f2f0;
    border-radius: 6px;
    color: #000000;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3sease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.show-more-btn:hover {
    background: #e9ecef;
    color: #1f2937;
}

/* Maintenance History */
.awtu-maintenance-history {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9f2f0;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.awtu-maintenance-history h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awtu-maintenance-history h3 i {
    color: #14b08e;
    font-size: 1rem;
}

.awtu-maintenance-history .maintenance-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.awtu-maintenance-empty {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8faf9;
    border: 1px dashed #c5e3de;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.awtu-maintenance-empty-text {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.awtu-maintenance-empty-sub {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Statistics with colored numbers */
.awtu-maintenance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

@media (max-width: 36em) {
    .awtu-maintenance-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.awtu-stat-item {
    text-align: center;
}

.awtu-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.awtu-stat-completed .awtu-stat-number {
    color: #10b981; /* Green */
}

.awtu-stat-pending .awtu-stat-number {
    color: #f59e0b; /* Orange */
}

.awtu-stat-vencido .awtu-stat-number {
    color: #dc2626; /* Red */
}

.awtu-stat-total .awtu-stat-number {
    color: #14b08e;
}

.awtu-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Maintenance Timeline */
.maintenance-timeline {
    position: relative;
    padding-left: 3rem;
}

.maintenance-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9f2f0;
    z-index: 1;
}

.awtu-maintenance-card {
    position: relative;
    background: white !important;
    border: 1px solid #e9f2f0 !important;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.maintenance-icon {
    position: absolute;
    left: -4rem;
    top: 0rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.maintenance-icon i.fa-check-circle {
    color: #10b981;
    font-size: 1.125rem;
}

.maintenance-icon i.fa-hourglass-half {
    color: #f59e0b;
    font-size: 1.125rem;
}

.maintenance-icon i.fa-exclamation-triangle {
    color: #dc2626;
    font-size: 1.125rem;
}

.maintenance-content {
    width: 100%;
}

.maintenance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.maintenance-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    flex: 1;
}

.maintenance-status {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.maintenance-status.completado {
    background: #dcfce7;
    color: #15803d;
}

.maintenance-status.pendiente {
    background: #fef3c7;
    color: #d97706;
}

.maintenance-status.vencido {
    background: #fef2f2;
    color: #991b1b;
}

.maintenance-date-mileage {
    margin-bottom: 1rem;
}

.maintenance-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.maintenance-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.maintenance-service,
.maintenance-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.maintenance-service i,
.maintenance-location i {
    color: #14b08e;
    width: 16px;
}

.maintenance-description {
    background: #f8f9fa;
    color: #6b7280;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.5rem 0;
}

.maintenance-cost {
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer section */
.awtu-maintenance-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(90deg,
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%,
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%,
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.awtu-maintenance-footer-text {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.awtu-maintenance-footer-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.awtu-view-complete-history-btn {
    background: white;
    color: #374151;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awtu-view-complete-history-btn:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* Vehicle Documents Section */
.awtu-vehicle-documents {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9f2f0;
    margin-bottom: 2rem;
}

.awtu-vehicle-documents h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awtu-vehicle-documents h3 i {
    color: #14b08e;
    font-size: 1rem;
}

.awtu-documents-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Documents Summary */
.awtu-documents-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem;
    background: #f8f9fa;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.awtu-summary-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.awtu-summary-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.awtu-summary-valid {
    color: #10b981;
}

.awtu-summary-total {
    color: #0d9488;
}

.awtu-summary-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1;
    margin-top: 0;
}

.awtu-summary-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.awtu-summary-verified {
    color: #10b981;
}

.awtu-summary-secure {
    color: #ea580c;
}

/* Documents List */
.awtu-documents-list {
    margin-bottom: 2rem;
}

.awtu-doc-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.awtu-doc-item:last-child {
    margin-bottom: 0;
}

.awtu-doc-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.awtu-doc-icon i {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.awtu-doc-icon-soat {
    color: #3b82f6;
    background: #eff6ff;
}

.awtu-doc-icon-technical {
    color: #6b7280;
    background: #f3f4f6;
}

.awtu-doc-icon-property {
    color: #f59e0b;
    background: #fef3c7;
}

.awtu-doc-icon-insurance {
    color: #3b82f6;
    background: #eff6ff;
}

.awtu-doc-content {
    flex: 1;
    margin-right: 1rem;
}

.awtu-doc-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.awtu-doc-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.awtu-doc-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -3.5rem;
}

/* FAQ Section Styles */
.awtu-faq-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9f2f0;
    margin-bottom: 2rem;
}

.awtu-faq-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.25rem;
}

.awtu-faq-subtitle {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.awtu-faq-list {
    margin-bottom: 1rem;
}

.awtu-faq-item {
    border-bottom: 1px solid #e9f2f0;
}

.awtu-faq-item:last-child {
    border-bottom: none;
}

.awtu-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awtu-faq-question:hover {
    color: #14b08e;
}

.awtu-faq-question span {
    font-weight: 500;
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.awtu-faq-question:hover span {
    border-bottom-color: #000000;
}

.awtu-faq-question i {
    color: #9ca3af;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.awtu-faq-item.active .awtu-faq-question i {
    transform: rotate(180deg);
}

.awtu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.awtu-faq-item.active .awtu-faq-answer {
    max-height: 1000px;
    padding: 0 0 0.5rem 0;
}

.awtu-faq-answer p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}

.awtu-faq-answer ol {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.25rem;
}

.awtu-faq-answer li {
    margin-bottom: 0.25rem;
}

/* FAQ Support Section */
.awtu-faq-support {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.awtu-faq-support h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.25rem;
}

.awtu-faq-support p {
    color: #6b7280;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.awtu-contact-options {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.awtu-contact-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.175rem 0.625rem;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.awtu-contact-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #14b08e;
    color: white;
    border: 1px solid #14b08e;
}

.awtu-contact-item i {
    font-size: 0.75rem;
}

/* Chat en vivo - Icono blanco */
.awtu-contact-item:nth-child(1) i {
    color: #8b5cf6;
}

.awtu-contact-item:nth-child(1):hover i {
    color: white;
}

/* Llamada gratis - Icono rosa */
.awtu-contact-item:nth-child(2) i {
    color: #ec4899;
}

.awtu-contact-item:nth-child(2):hover i {
    color: #ec4899;
}

/* Email - Icono púrpura */
.awtu-contact-item:nth-child(3) i {
    color: #8b5cf6;
}

.awtu-contact-item:nth-child(3):hover i {
    color: #8b5cf6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .awtu-contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .awtu-contact-item {
        justify-content: center;
    }
}

/* Trust Guarantee Section Styles */
.awtu-trust-guarantee-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9f2f0;
    margin-bottom: 2rem;
}

.awtu-trust-header {
    text-align: left;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.awtu-trust-icon {
    color: #14b08e;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.awtu-trust-guarantee-section h3 {
    font-size: 1.25rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0.20rem;
}

.awtu-trust-subtitle {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.awtu-trust-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.awtu-trust-feature {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.awtu-trust-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.awtu-icon-verification {
    background: #14b08e;
}

.awtu-icon-documents {
    background: #3b82f6;
}

.awtu-icon-seller {
    background: #14b08e;
}

.awtu-icon-warranty {
    background: #f59e0b;
}

.awtu-trust-feature h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.25rem;
}

.awtu-trust-feature p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.awtu-trust-footer {
    background: linear-gradient(90deg,
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%,
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%,
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 8px;
    padding: 1rem;
}

.awtu-trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.awtu-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.awtu-badge-verified {
    background: #dcfce7;
    color: #14b08e;
}

.awtu-badge-protected {
    background: oklch(.882 .059 254.128);
    color: #0d6efd;

}

.awtu-trust-badge i {
    font-size: 0.75rem;
    color: white;
}

.awtu-trust-description {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    text-align: left;
    margin: 0;
}

/* Responsive Trust Guarantee */
@media (max-width: 768px) {
    .awtu-trust-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .awtu-trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Custom sidebar layout - NO Bootstrap dependency */
.awtu-detail-sidebar-wrapper {
    position: relative;
    clear: none;
    margin: 0;
    padding: 0;
    align-self: flex-start;
}

.awtu-detail-sidebar-content {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
}

/* Adjust main content when sidebar is present */
.awtu-vehicle-detail-section .container .row .col-lg-8 {
    width: 66.666667%;
    float: left;
}

/* Clear floats for the row */
.awtu-vehicle-detail-section .container .row::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure no Bootstrap interference */
.awtu-detail-sidebar-wrapper,
.awtu-detail-sidebar-wrapper *,
.awtu-detail-sidebar-content,
.awtu-detail-sidebar-content * {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
}

/* Responsive behavior */
@media (max-width: 991.98px) {
    .awtu-detail-sidebar-wrapper {
        width: 100%;
        float: none;
        margin-top: 2rem;
    }
    
    .awtu-vehicle-detail-section .container .row .col-lg-8 {
        width: 100%;
        float: none;
    }
}

.awtu-doc-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

.awtu-status-valid {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.awtu-status-expired {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.awtu-doc-expiry {
    font-size: 0.875rem;
    color: #6b7280;
}

.awtu-doc-action {
    flex-shrink: 0;
}

.awtu-doc-download-btn {
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awtu-doc-download-btn:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
}

.awtu-doc-unavailable {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.awtu-no-documents {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    font-style: italic;
}

/* Documentation Verified Section */
.awtu-documentation-verified {
    background: linear-gradient(90deg,
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%,
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%,
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    box-shadow: none !important;
    transition: all 0.3s ease;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.awtu-documentation-verified h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awtu-documentation-verified h4 i {
    color: #10b981;
    font-size: 0.875rem;
}

.awtu-verification-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.awtu-verification-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.awtu-verification-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.awtu-verification-dot {
    color: #10b981;
    font-size: 0.5rem;
}

/* Download All Section */
.awtu-download-all-section {
    text-align: center;
}

.awtu-download-all-btn {
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.awtu-download-all-btn:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
}

.awtu-download-all-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f3f4f6;
}

.awtu-download-all-btn:disabled:hover {
    background: #f3f4f6;
    border-color: #e9f2f0;
}

.awtu-download-all-btn .fa-spinner {
    margin-right: 0.5rem;
}

/* Sidebar */
.awtu-detail-sidebar-content {
    position: relative !important;
    top: 0 !important;
    height: fit-content;
    max-height: none !important;
    overflow-y: visible;
    flex: 0 0 350px;
    padding-left: 2rem;
}

/* Ensure sidebar column is not sticky */
.col-lg-4 {
    position: relative !important;
}

/* Force sidebar to scroll with content */
.awtu-detail-sidebar-content,
.awtu-detail-sidebar-content *,
.col-lg-4 .awtu-detail-sidebar-content,
.row .col-lg-4 {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

/* Ensure the entire row and container behave normally */
.awtu-vehicle-detail-section .row,
.awtu-vehicle-detail-section .container {
    position: static !important;
}

/* Override any potential sticky behavior from other CSS files */
@media (min-width: 992px) {
    .col-lg-4 {
        position: static !important;
        top: auto !important;
    }
}

/* Force normal document flow - HIGHEST SPECIFICITY */
.awtu-vehicle-detail-section .container .row .col-lg-4.awtu-detail-sidebar-content,
.awtu-vehicle-detail-section .container .row .col-lg-4,
.awtu-vehicle-detail-section .container .row .col-lg-4 .awtu-detail-sidebar-content {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
}

/* Price Section */
.price-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;

    position: relative;
}

.vehicle-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.1rem;
}

.vehicle-price .price-amount .currency {
    color: #14b08e;
    font-size: 1.8rem;
}

.vehicle-price .price-amount .amount {
    color: #14b08e;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.price-badge {
    background: white;
    color: #14b08e;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
    border: 1px solid #14b08e;
}

.price-badge-usado {
    background: white;
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Contact Buttons */
.contact-buttons {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.whatsapp-btn {
    background: #14b08e;
    color: white;
    border: none;
}

.whatsapp-btn:hover {
    background: #14b08e;
    color: white;
    transform: translateY(-2px);
}

.call-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.call-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Horizontal Rule */
hr {
    border: none;
    border-top: 2px solid #929292;
    margin: 1rem 0;
}

/* Complete Vehicle Information Section */
.vehicle-info-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 0.1px solid #e9f2f0;
}

.vehicle-info-section .price-section {
    margin-bottom: 1rem;
    text-align: center;
}

.vehicle-info-section .contact-buttons {
    margin-bottom: 1.5rem;
}

.vehicle-info-section .contact-buttons .whatsapp-btn {
    width: 100%;
    margin-bottom: 0.1rem;
    padding: 0.75rem 1rem;
    background:  #14b08e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vehicle-info-section .contact-buttons .whatsapp-btn:hover {
    background:  #14b08e;
    transform: translateY(-1px);
}

.vehicle-info-section .contact-buttons .call-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    color:  #14b08e;
    border: 3px solid #14b08e;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vehicle-info-section .contact-buttons .call-btn:hover {
    background: #14b08e;
    color: white;
    transform: translateY(-1px);
}

.vehicle-info-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
}

.vehicle-info-section .seller-details {
    margin-bottom: 1.5rem;
}

.vehicle-info-section .action-buttons {
    margin-bottom: 1.5rem;
}

.vehicle-info-section .action-buttons .action-btn {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-info-section .action-buttons .action-btn:hover {
    background: #e9f2f0;
    border-color: #e9f2f0;
    color: #374151;
}

.vehicle-info-section .action-buttons .download-btn {
  
    border: none;
    color: #6b7c7c;
}

.vehicle-info-section .action-buttons .download-btn:hover {
    background: #e9f2f0;
    color: #030303;
}

.vehicle-info-section .app-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.vehicle-info-section .app-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    background: white;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.vehicle-info-section .app-btn:hover {
    background: #f9fafb;
    border-color: #e9f2f0;
    color: #374151;
}

.vehicle-info-section .security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #374151;
    white-space: nowrap;
}

.vehicle-info-section .security-item i {
    font-size: 1rem;
}

.vehicle-info-section .security-item:first-child i {
    color: #f59e0b;
}

.vehicle-info-section .security-item:last-child i {
    color: #10b981;
}

.vehicle-info-section .security-separator {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.vehicle-info-section .app-download {
    margin-bottom: 1.5rem;
    text-align: center;
}

.vehicle-info-section .app-download h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.vehicle-info-section .app-download p {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 0 0 1rem 0;
}

.vehicle-info-section .security-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

/* Seller Information */
.seller-info {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9f2f0;
}

.seller-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.seller-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.seller-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.056rem;
}

.seller-item.verified {
    color: #6b7280;
    font-weight: 400;
}

.seller-item i {
    width: 16px;
    color: #6b7280;
    text-align: center;
}

.seller-item.verified i {
    color: oklch(.723 .219 149.579);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    color: var(--dark-bg);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* App Download */
.app-download {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.app-download h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.app-download p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.app-buttons {
    display: flex;
    gap: 0.75rem;
}

.app-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e9f2f0;
    border-radius: 8px;
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.app-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Security Notice */
.security-notice {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.security-item:last-child {
    margin-bottom: 0;
}

.security-item i {
    color: #10b981;
    width: 16px;
    text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .awtu-detail-sidebar-content {
        position: static;
        margin-top: 2rem;
    }
    
    .vehicle-title {
        font-size: 2rem;
    }
    
    .vehicle-specs {
        gap: 1rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .main-image-container {
        height: 300px;
    }
}

/* Tablet responsive for specs grid */
@media (max-width: 992px) and (min-width: 769px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .awtu-breadcrumb {
        margin-top: 70px;
    }
    
    .vehicle-title {
        font-size: 1.75rem;
    }
    
    .vehicle-specs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .vehicle-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .thumbnail {
        width: 100px;
        height: 70px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .vehicle-title {
        font-size: 1.5rem;
    }
    
    .vehicle-price .price-amount {
        font-size: 2rem;
    }
    
    .main-image-container {
        height: 200px;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .technical-specifications,
    .price-section,
    .seller-info,
    .app-download,
    .security-notice {
        padding: 1rem;
    }
}

/* ========================================
   APP DOWNLOAD SECTION STYLES
   ======================================== */

.awtu-app-download-section {
    background: linear-gradient(90deg,
    color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%,
    color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%,
    color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
       padding: 4rem 0;
       border: 1px solid
    color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
       margin: 2rem 0 0 0;
}

.app-download-content {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    padding: 0 2rem;
}

.app-download-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.app-download-content p {
    font-size: 1rem;
    color: #6b7c7c;
    margin: 0 0 3rem 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 0 3rem 0;
    flex-wrap: wrap;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.ios-download-btn {
    background: #1a1a1a;
    color: white;
}

.ios-download-btn:hover {
    background: #333;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.android-download-btn {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.android-download-btn:hover {
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.app-download-btn i {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.app-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #6b7c7c;
    font-weight: 400;
    text-decoration: none !important;
    border-bottom: none !important;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-dot-teal {
    background: #20b2aa;
}

.feature-dot-blue {
    background: #3b82f6;
}

.feature-dot-green {
    background: #10b981;
}

/* Responsive */
@media (max-width: 900px) {
    .app-download-content {
        width: 90%;
    }
    
    .app-download-content h2 {
        font-size: 2rem;
    }
    
    .app-download-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .app-download-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .app-features {
        gap: 1.5rem;
    }
}

/* ========================================
   SIMILAR CARS SECTION STYLES
   ======================================== */

.awtu-similar-cars-section {
    
    background: white;
    padding: 3rem 2rem;
    margin: -1rem 0 2rem 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    clear: both;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.similar-cars-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.similar-cars-title h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.similar-cars-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.similar-cars-navigation {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    font-size: 0.9rem;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.similar-cars-container {
    overflow: hidden;
    margin-bottom: 2rem;
}

.similar-cars-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    padding: 0.5rem 1rem;
}

/* Usar exactamente las mismas cards del catálogo */
.similar-car-card {
    flex: 0 0 320px; /* Ancho fijo para el carrusel */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: auto;
}

.similar-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(20, 176, 142, 0.15);
    border-color: var(--primary, #14b08e);
}

.similar-car-card:hover .awtu-vehicle-name {
    color: var(--primary);
}

/* Imagen igual que en el catálogo */
.similar-car-card .awtu-vehicle-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-car-card .awtu-vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-car-card:hover .awtu-vehicle-img {
    transform: scale(1.05);
}

/* Botón de favoritos igual que en el catálogo */
.similar-car-card .favorite-btn {
    position: absolute;
    top: 4px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.similar-car-card .favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.similar-car-card .favorite-btn i {
    color: var(--secondary-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.similar-car-card .favorite-btn.active {
    background: white;
}

/* Forzar corazón rojo sólido cuando está activo - igual que en el catálogo */
.similar-car-card .favorite-btn.active i.fas.fa-heart {
    color: #dc3545 !important;
    font-weight: 900 !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
}

/* Precio igual que en el catálogo */
.similar-car-card .vehicle-price-tag {
    position: absolute !important;
    bottom: 0.75rem !important;
    right: 0.75rem !important;
    background: #f4f7f5 !important;
    color: #14b08e !important;
    padding: 0.2rem 0.75rem !important;
    border-radius: 9px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    z-index: 10 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Contenido de la card igual que en el catálogo */
.similar-car-card .awtu-vehicle-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.similar-car-card .vehicle-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}

.similar-car-card .vehicle-title-left {
    flex: 1;
}

.similar-car-card .awtu-vehicle-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.similar-car-card .vehicle-year-status {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.similar-car-card .vehicle-title-price {
    display: none; /* Ocultar precio duplicado */
}

.similar-car-card .awtu-vehicle-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.similar-car-card .vehicle-details-left,
.similar-car-card .vehicle-details-right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.similar-car-card .awtu-vehicle-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #495057;
    font-weight: 400;
}

.similar-car-card .awtu-vehicle-detail i {
    width: 14px;
    color: var(--secondary-text);
    font-size: 0.8rem;
}

.similar-car-card .vehicle-rating-views {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.similar-car-card .vehicle-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.similar-car-card .vehicle-views i {
    color: var(--secondary-text);
    font-size: 0.8rem;
}

.similar-car-card .awtu-vehicle-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.similar-car-card .awtu-vehicle-btn:hover {
    background: var(--primary-dark, #0d9488);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.similar-cars-footer {
    text-align: center;
}

.view-more-cars-btn {
    background: #e9ecef;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-cars-btn:hover {
    background: #dee2e6;
    border-color: #adb5bd;
    color: #343a40;
}

/* Responsive Design for Similar Cars */
@media (max-width: 1200px) {
    .similar-car-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 992px) {
    .similar-cars-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .similar-cars-navigation {
        align-self: flex-end;
    }
    
    .similar-car-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .awtu-similar-cars-section {
        padding: 2rem 1rem;
        margin: 0.5rem 0 1rem 0;
        clear: both;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .similar-cars-title h2 {
        font-size: 1.3rem;
    }
    
    .similar-car-card {
        flex: 0 0 260px;
    }
    
    .similar-car-card .awtu-vehicle-image {
        height: 180px;
    }
    
    .similar-car-card .awtu-vehicle-info {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .similar-cars-carousel {
        gap: 1rem;
        padding: 0.5rem 0.5rem;
    }
    
    .similar-car-card {
        flex: 0 0 240px;
    }
    
    .similar-car-card .awtu-vehicle-image {
        height: 160px;
    }
    
    .similar-car-card .awtu-vehicle-detail {
        font-size: 0.75rem;
    }
}
