.almasur-models-container {
    position: relative;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}



.models-slider .swiper-slide {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.model-image-column {
    flex: 5;
    position: relative;
}

.model-image-column img {
    max-width: 100%;
    height: 100%;
    display: block;
}
.model-image-column img.wp-post-image {
    height: 500px;
    object-fit: cover;
}

.model-icon {
    position: absolute;
    top: -30px;
    left: 20px;
    height: 60px!important;
    z-index: 10;
}

.model-info-column {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.model-info-column h2 {
    font-size: 1.125rem;
    color: #d8005d;
    margin-top: 0;
    font-family: "Geologica", Sans-serif;
}

.model-info-column .price {
    font-size: 1.125rem;
    font-weight: bold;
    color: #333;
    font-family: "Geologica", Sans-serif;
    margin-bottom: .5rem;
}
.model-info-column .description {
    color: rgb(123, 103, 86);
    text-align: left;
    font-size: .875rem;
    font-family: "Geologica", Sans-serif;
}
.model-info-column .description ul {
    padding-left: 20px;
    list-style: disc;
}



/* Ensure only active slide is visible */
.models-slider {
    overflow-x: hidden;
    overflow-y: visible; /* Allow icon to be visible */
    padding-top: 40px; /* Make space for the icon */
    margin-top: -40px; /* Adjust position */
}

.swiper-slide {
    position: relative; /* Needed for icon positioning */
}

/* Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
    display: none;
}

.swiper-button-prev {
    right: 50px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Responsive adjustments */
/* Model Tabs */
.model-tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.model-tab {
    padding: 10px 3rem;
    cursor: pointer;
    border: none;
    background-color: rgb(246, 245, 244);
    color: rgb(123, 103, 86);
    font-weight: 400;
    font-size: .75rem;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Geologica", Sans-serif;
}

.model-tab.active-tab {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .models-slider .swiper-slide {
        flex-direction: column;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none; /* Hide arrows on smaller screens if desired */
    }

    .almasur-models-container {
        padding: 0 15px;
    }
}
