/**
 * Frontend styles for Toco OnePrice
 */

/* Container */
.toco-vehicle-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* No vehicles message */
.toco-no-vehicles {
    padding: 30px;
    text-align: center;
    background-color: #f8f8f8;
    border-radius: 4px;
    color: #666;
}

/* Vehicle item */
.toco-vehicle-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.toco-vehicle-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Vehicle image */
.toco-vehicle-image {
    flex: 0 0 300px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.toco-vehicle-image img {
    width: 100%;
    height: auto;
    max-height: 225px;
    object-fit: cover;
    border-radius: 6px;
}

.toco-no-image {
    width: 100%;
    height: 225px;
    background-color: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-style: italic;
}

/* Vehicle info */
.toco-vehicle-info {
    flex: 1;
    min-width: 300px;
}

.toco-vehicle-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
    line-height: 1.3;
}

.toco-vehicle-grade {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

/* Specs */
.toco-vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.toco-spec-item {
    flex: 0 0 50%;
    margin-bottom: 10px;
    padding-right: 10px;
    font-size: 15px;
    line-height: 1.4;
}

.toco-spec-label {
    font-weight: 600;
    color: #666;
    margin-right: 5px;
}

.toco-spec-value {
    color: #333;
}

/* Price */
.toco-vehicle-price {
    margin-bottom: 20px;
}

.toco-price-tag {
    display: inline-block;
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 10px 15px;
}

.toco-price-label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.toco-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
}

/* Actions */
.toco-vehicle-actions {
    display: flex;
    gap: 15px;
}

.toco-view-details, .toco-inquiry-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toco-view-details {
    background-color: #3498db;
    color: #fff;
    border: none;
}

.toco-view-details:hover {
    background-color: #2980b9;
}

.toco-inquiry-btn {
    background-color: #fff;
    color: #3498db;
    border: 2px solid #3498db;
}

.toco-inquiry-btn:hover {
    background-color: #f5f9fc;
}

/* Pagination */
.toco-pagination {
    margin-top: 30px;
    text-align: center;
}

.toco-page-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.toco-page-link:hover {
    background-color: #e0e0e0;
}

.toco-page-link.toco-current-page {
    background-color: #3498db;
    color: #fff;
}

/* Modal styles */
.toco-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.toco-modal-content {
    position: relative;
    background-color: #fff;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.toco-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toco-modal-close:hover {
    color: #333;
}

#toco-vehicle-title {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 24px;
}

.toco-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.toco-modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Gallery */
.toco-vehicle-gallery {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.toco-gallery-item {
    width: calc(50% - 5px);
}

.toco-gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.toco-no-images {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-style: italic;
}

/* Vehicle details */
.toco-vehicle-details {
    flex: 1;
    min-width: 300px;
}

.toco-info-section {
    margin-bottom: 25px;
}

.toco-info-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 18px;
}

.toco-info-table {
    width: 100%;
    border-collapse: collapse;
}

.toco-info-table th, .toco-info-table td {
    padding: 8px 0;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
}

.toco-info-table th {
    width: 40%;
    color: #666;
    font-weight: 600;
}

.toco-options-list {
    margin: 0;
    padding-left: 20px;
}

.toco-options-list li {
    margin-bottom: 5px;
}

.toco-modal-actions {
    margin-top: 30px;
    text-align: center;
}

.toco-inquiry-btn-modal {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.toco-inquiry-btn-modal:hover {
    background-color: #2980b9;
}

/* Responsive styles */
@media (max-width: 768px) {
    .toco-vehicle-item {
        flex-direction: column;
    }
    
    .toco-vehicle-image {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .toco-spec-item {
        flex: 0 0 100%;
    }
    
    .toco-modal-content {
        margin: 10px;
        padding: 15px;
    }
    
    #toco-vehicle-title {
        padding-right: 30px;
    }
}