/* Core Layout Structure */
.yutong-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

/* Specs Column */
.yutong-specs-col {
    width: 45%;
    text-align: right;
}

.yutong-main-title {
    color: #002b5e;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.yutong-dynamic-title {
    color: #4285f4;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Dynamic Grid generated by JS */
.yutong-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.yutong-spec-box {
    display: flex;
    flex-direction: column;
}

.yutong-spec-label {
    color: #888;
    font-size: 1rem;
}

.yutong-spec-value {
    color: #002b5e;
    font-size: 1.5rem;
}

/* Slider Column */
.yutong-slider-col {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.yutong-custom-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.yutong-custom-slide img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 15px 15px rgba(0,0,0,0.15));
}

/* Progress Line underneath slider */
.yutong-progress-wrapper {
    width: 80%;
    height: 2px;
    background: #e0e0e0;
    margin: 40px auto 0 auto;
    position: relative;
    border-radius: 2px;
}

.yutong-progress-bar {
    height: 100%;
    background: #4285f4;
    width: 0%;
    transition: width 0.4s ease-out;
}

/* Custom Swiper Dots to match Yutong style */
.yutong-wrapper .swiper-pagination {
    bottom: -30px !important;
}

.yutong-wrapper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.yutong-wrapper .swiper-pagination-bullet-active {
    background: transparent;
    border: 2px solid #4285f4;
    transform: scale(1.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .yutong-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .yutong-specs-col, .yutong-slider-col {
        width: 100%;
        text-align: center;
    }
}