/* Breadcrumbs */
.breadcrumbs {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #007bff;
}

/* Post Content */
.post-single {
    margin-bottom: 3rem;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.section-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #333;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.news-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: #007bff;
}

.news-card-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.news-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Dealers Section */
.dealers-container {
    background: #fff;
    border-radius: 8px;
}

.search-box {
    position: relative;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
}

.search-box input {
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 35px;
    border-color: #e9ecef;
}

.search-box input:focus {
    box-shadow: none;
    border-color: var(--primary);
}

#noResults {
    margin: 20px 0;
    border-radius: 8px;
    background-color: #e3f2fd;
    border-color: #90caf9;
    color: #1976d2;
}

#noResults small {
    color: #42a5f5;
}

.dealer-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.dealer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dealer-item.active {
    border-color: var(--primary);
    background-color: #f8f9fa;
}

.dealer-item i {
    width: 16px;
    margin-right: 8px;
    color: var(--primary);
}

.dealer-item a.btn {
    color: #495057;
    text-decoration: none;
    background-color: #e3e3e3;
    border: 0px;
}

.dealer-item a:hover {
    background-color: #e3e3e3;
    color: #000;
}

#dealersMap {
    height: 500px;
    border-radius: 8px;
}

/* Dealer Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.2);
}

.dealer-popup {
    min-width: 200px;
    padding: 5px;
}

.dealer-popup h5 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.dealer-popup p {
    margin: 5px 0;
    font-size: 14px;
    color: #495057;
}

.dealer-popup i {
    width: 16px;
    margin-right: 8px;
    color: var(--primary);
}

.dealer-popup a {
    color: #495057;
    text-decoration: none;
}

.dealer-popup a:hover {
    color: var(--primary);
}

/* Custom Scrollbar */
.dealers-list::-webkit-scrollbar {
    width: 6px;
}

.dealers-list::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.dealers-list::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 3px;
}

.dealers-list::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

/* Dealers Responsive */
@media (max-width: 991px) {
    .dealers-list {
        height: 300px;
        margin-bottom: 20px;
    }
}

.search-location-marker {
    background: none;
    border: none;
}

.search-location-marker i {
    text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}


.inquiry-widget .modal-dialog {
    max-width: 600px;
}
.inquiry-widget p {
    margin-bottom: 0.5rem;
}
.inquiry-message {
    color: #495057;
    line-height: 1.2;
    font-size: 14px;
}

.inquiry-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.inquiry-form .form-control {
    margin-bottom: 1rem;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
} 

#reviewModal .help-error {
    display: none !important;
}