/* Car Accessories Styles */
.accessories-container {
    margin-top: 30px;
}

.accessories-row {
    margin: 0 -15px; /* Bootstrap row margin reset */
}

.car_accessories {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    height: 100%; /* Equal height for all cards */
}

.car_accessories:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.orange_text {
    color: #ff6b35;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

.car_accessories_img {
    margin-bottom: 15px;
}

.car_accessories_img img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.car_accessories div:last-child {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .car_accessories {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .orange_text {
        font-size: 14px;
    }
}

/* Ensure only one accessories container */
.accessories-container:not(:first-child) {
    display: none;
}
