.specials-section {
    padding: 0;
}

.services-section-1 {
    position: relative;
    padding-bottom: 60px;
    background-color: #2c2f33;
}

.section-top-text-1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}

.specials-section .swiper {
    width: 100%;
    max-width: 1100px;
    padding: 10px 0 10px 0;
    margin: 0 auto;
    position: relative;
}

.specials-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Changed to stretch to ensure cards take full height */
    height: auto; /* Ensure slide height adapts to tallest card */
}

.specials-section .specials-card {
    background-color: #383b3f;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1; /* Make card stretch to fill slide height */
}

.specials-section .specials-card-image-container {
    position: relative;
    overflow: hidden;
    height: 200px; /* Fixed height for image consistency */
}

.specials-section .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specials-section .specials-card:hover .card-image {
    transform: scale(1.05);
}

.specials-section .specials-ribbon {
    position: absolute;
    top: 15px;
    left: -30px;
    background-color: #ff5100;
    color: #fff;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(-45deg);
    z-index: 10;
}

.specials-section .specials-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ensure content stretches to fill card */
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.specials-section .specials-card-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.specials-section .specials-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex-grow: 1;
    margin-right: 10px;
}

.specials-section .specials-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
}

.specials-section .specials-original-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #8a8e91;
}

.specials-section .specials-sale-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.specials-section .specials-limited-offer {
    font-size: 12px;
    color: #ff9900;
    font-weight: 500;
    margin-top: -10px;
    min-height: 18px; /* Reserve space for cards without limited-offer text */
}

.specials-section .specials-specs-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    border-top: 1px solid #4a4d50;
    padding-top: 15px;
    margin-top: auto; /* Push specs to bottom */
}

.specials-section .specials-spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #8a8e91;
}

.specials-section .specials-spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.specials-section .specials-spec-icon img {
    width: 100%;
    height: 100%;
}

.specials-section .specials-spec-item:nth-child(2) {
    margin-left: auto;
}

.specials-section .specials-spec-item.specials-mileage {
    margin-right: 15px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    z-index: 1000 !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    top: 60% !important;
    transform: translateY(-60%) !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev {
    left: 20px !important;
}

.swiper-pagination {
    position: relative !important;
    bottom: -20px !important;
    z-index: 1000 !important;
    padding-bottom: 10px !important;
    display: block !important;
    visibility: visible !important;
}

.swiper-pagination-bullet {
    background: #555 !important;
    opacity: 0.7 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
}

@media (min-width: 1024px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
        visibility: visible !important;
    }
    .swiper-pagination {
        display: block !important;
        visibility: visible !important;
    }
}