/* Vehicle Detail Styles */

/* Safety Ratings Styles */
.safety-ratings-box, .awards-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

.safety-ratings-box h4, .awards-box h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #86c440;
}

.rating-item {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-label {
    color: #666;
    font-weight: 500;
}

.rating-stars {
    color: #86c440;
    font-weight: bold;
}

.rating-value {
    color: #333;
    font-weight: bold;
}

.awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.awards-list li:last-child {
    border-bottom: none;
}

.awards-list li i {
    color: #ffd700;
    margin-right: 10px;
    font-size: 18px;
}

.alert-info {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: #495057;
}

/* Table Styles */
.tablecol .fa-check {
    color: #86c440;
}

.tableinnercols {
    border-radius: 0;
}

.tableinnercols .tablecol {
    height: 57px;
}

.tablerow .stickycol {
    height: 57px;
    padding-left: 10px;
}

/* Car Icon Box Styles */
.car-icon-box .slick-slider .slick-track,
.slick-slider .slick-list {
    width: 100% !important;
    margin: 0;
}

.car-icon-box li.slick-slide.slick-active {
    width: 25% !important;
}

.car-icon-box a {
    cursor: default;
}

/* Horsepower Meter Styles */
.comparecaraccordians .eachaccordian .accordiancontent .horsepowermeter .overlaymeter::before {
    background: #86c440;
}

/* Section Styles */
section.detail-sec h3 {
    font-size: 26px;
}

/* Vertical Buttons Styles */
.vertical-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 28px;
}

.btn-variation {
    width: 100%;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    text-align: center;
    color: #333;
    transition: background-color 0.3s ease;
}

.btn-variation:hover {
    background-color: #e9ecef;
}

.btn-variation.active {
    background-color: #e9ecef;
    font-weight: bold;
    border-color: #bbb;
}

/* Product Slider Styles */
.product-slider {
    margin-bottom: 20px;
}

.product-thumbs {
    margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #86c440;
}

/* Grid Container Styles */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 15px;
}

.grid-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.compareheading {
    font-weight: 500;
    color: #333;
}

/* Accordion Styles */
.eachaccordian {
    margin-bottom: 20px;
}

.accordiantitle {
    background: #f8f9fa;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.accordiantitle.active {
    background: #86c440;
    color: white;
}

.accordiancontent {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

/* Social Share Styles */
.hidesocial {
    display: none;
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.social-share-links {
    display: flex;
    gap: 10px;
}

.social-share-links img {
    width: 24px;
    height: 24px;
}

.closesocial {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
} 