.horizontal-product-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: solid 1px #FAFAFA;
    padding: 20px;
    background-color: #fff;
}

.horizontal-slider-buttons {
    display: flex;
    gap: 10px;
}

.horizontal-first-column-image-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
	min-width:336px;
}

.horizontal-slider-wrapper {
    display: flex;
    margin: 0;
    padding: 0; 
    transition: transform 0.3s ease-in-out;
}

.horizontal-slider-image {
    flex-shrink: 0 !important;
    height: 252px !important;
    /*max-width: 336px !important;*/
    border-radius: 16px 0px 0px 16px !important;
    object-fit: cover !important;
}

.horizontal-slider-header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    z-index: 10;
}

.horizontal-package-button {
    /*background-color: white;*/
    /*color: black;*/
    /*border: solid 1px #FCFCFC;*/
    /*padding: 5px 10px;*/
    /*cursor: pointer;*/
    /*border-radius: 5px;*/
    /*font-size: 12px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: rgba(29, 36, 48, 1);
    width: 107px;
    height: 24px;
    font-family: Rethink Sans;
    font-weight: 400;
    font-size: 14px;
    border: solid 1px #FCFCFC;
    padding: 4px 8px 4px 8px;
    gap: 4px;
    cursor: pointer;
    border-radius: 9999px;
}

.horizontal-package-button:hover {
    background-color: white;
    color: rgba(29, 36, 48, 1);
    border: solid 1px #FCFCFC;
}

.horizontal-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(12, 12, 13, 0.4);
    font-size: 12px;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.horizontal-slider-arrow:focus {
    transform: translateY(-50%);
    background-color: rgba(12, 12, 13, 0.4);
    color: #fff;
}

.horizontal-left-arrow {
    left: 10px;
}

.horizontal-right-arrow {
    right: 10px;
}

.horizontal-first-column-image-slider:hover .horizontal-slider-arrow {
    opacity: 1; /* Show arrows on hover */
}

.horizontal-slider-arrow:hover {
    background-color: rgba(12, 12, 13, 0.6);
}

.horizontal-indicator-wrapper {
    /*display: flex;*/
    /*justify-content: center;*/
    /*position: absolute;*/
    /*bottom: 10px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    /*z-index: 2;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 8px;
    gap: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.horizontal-indicator {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    cursor: pointer;
    transition: 0.3s all ease;
    box-shadow: 0px 4px 10px rgba(12, 12, 13, 0.05);
}

.horizontal-indicator.active {
    background-color: white;
}

.horizontal-indicator:first-child:not(.active) {
    width: 4px;
    height: 4px;
}

.horizontal-indicator:last-child:not(.active) {
    width: 4px;
    height: 4px;
}

.horizontal-indicator.active {
    background-color: rgba(45, 167, 54, 1);
}

.horizontal-second-column-card-content-after-images {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex: 2;
    padding: 16px;
    gap: 16px;
    position: relative;
}

.horizontal-second-column-card-content-after-images::after {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 15px;
    right: 0;
    width: 1px;
    background-color: #DFE4EC;
}

.horizontal-product-header-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    line-height: 21px;
    font-size: 14px;
    color: #1D2430;
    margin: 10px 0px;
}

.horizontal-location-code {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #707B8B;
}

.horizontal-product-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #1D2430;
}

.horizontal-availability {
    font-size: 1em;
}

.horizontal-gray-border {
    border-top: 1px solid #DFE4EC;
    margin: 10px 0;
}


.horizontal-registration-mileage-row, .horizontal-euro-horse-power-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.horizontal-registration-date, .horizontal-kilometers, .horizontal-euro-standard, .horizontal-horse-power {
    flex: 1;
}

.horizontal-registration-date p, .horizontal-kilometers p, .horizontal-euro-standard p, .horizontal-horse-power p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

.horizontal-registration-date strong, .horizontal-kilometers strong, .horizontal-euro-standard strong, .horizontal-horse-power strong {
    font-weight: bold;
    font-size: 1.2em;
    display: block;
}

.horizontal-availability {
    display: flex;
    gap: 5px;
}

.horizontal-left-badge {
    background-color: #FCFCFC;
    color: black;
    border-radius: 8px;
    font-size: 12px;
    padding: 2px 8px;
}

.horizontal-right-badge {
    background-color: #FAFAFA;
    color: #0d6efd;
    border-radius: 8px;
    font-size: 12px;
    padding: 2px 8px;
}

.horizontal-badge-availability {
    position: relative;
}

.horizontal-tooltip {
    display: none;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 10px;
    width: max-content;
    max-width: 150px;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

.horizontal-left-badge:hover .horizontal-tooltip,
.horizontal-left-badge .horizontal-tooltip:hover {
    display: block;
    pointer-events: auto;
}

.horizontal-info-link {
    color: #0d6efd;
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
}

.horizontal-info-link:hover {
    color: #0056b3;
}

.horizontal-price {
    text-align: end;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #1D2430;
}

.horizontal-without-pvm {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #707B8B;
}

/*.horizontal-reservation-button, .horizontal-request-button-no-package {*/
/*    background-color: #2DA736;*/
/*    color: #FFFFFF;*/
/*    padding: 12px 16px;*/
/*    width: 100%;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*    cursor: pointer;*/
/*    line-height: 16px;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    margin-top: 10px;*/
/*}*/

/*.horizontal-reservation-button:hover, .horizontal-request-button-no-package:hover {*/
/*    background-color: #25912E;*/
/*}*/

/*.horizontal-reservation-button:focus, .horizontal-request-button-no-package:focus {*/
/*    background-color: #25912E;*/
/*}*/

.horizontal-request-button {
    background-color: #FAFAFA;
    color: black;
    padding: 10px;
    width: 100%;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.horizontal-notification-favorite-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.horizontal-notification-button, .horizontal-favorite-button {
    background-color: #FAFAFA;
    color: black;
    border: 1px solid #F3F3F3;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 8px;
    flex: 1;
    min-width: 100px;
}

.horizontal-product-card-with-slider {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    border: solid 1px #DFE4EC;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-400) var(--sds-size-depth-0) var(--sds-color-black-100);
}

.horizontal-product-card-with-slider .horizontal-slider-header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    z-index: 10;
}

.horizontal-reservation-button.full-width {
    width: 100%;
}

.horizontal-third-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

/* ---------------------------------*/

.horizontal-slider-wrapper .availability-badge-on-img-block {
    position: absolute;
    right: 2px;
    top: 14px;
    background-color: #2DA735;
    color: white;
    font-size: 12px;
    z-index: 100;
    box-shadow: -2px 1px 4px 0px #15752cd6;
    font-weight: 500;
    max-width: 120px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-gallery-wrapper-no-images .availability-badge-on-img-block {
    position: absolute;
    right: 2px;
    top: 7px;
    background-color: #2DA735;
    color: white;
    font-size: 16px;
    z-index: 2;
    box-shadow: -2px 1px 4px 0px #15752cd6;
    font-weight: 500;
    max-width: 214px; 
    width: 214px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px; 
}

.horizontal-slider-wrapper .availability-badge-on-img-inner {
    position: relative;
    z-index: 2;
    background-color: #2DA735;
    padding: 8px 12px 0px 12px;
}

.main-gallery-wrapper-no-images .availability-badge-on-img-inner {
    display: flex;
    height: 76px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: #2DA735;
    padding: 0px 20px 0px 20px;
}

.horizontal-slider-wrapper .availability-badge-sliced-block::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 100%;
    height: 22px;
    background-color: #2DA735;
    transform: skewY(-6deg);
    transform-origin: bottom left;
    z-index: 1;
    box-shadow: -2px 1px 4px 0px #15752cd6;
}

.main-gallery-wrapper-no-images .availability-badge-sliced-block::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 100%;
    height: 22px;
    background-color: #2DA735;
    transform: skewY(-5deg);
    transform-origin: bottom left;
    z-index: 1;
    box-shadow: -2px 1px 4px 0px #15752cd6;
}

@media screen and (max-width: 1024px) {
    .main-gallery-wrapper-no-images .availability-badge-on-img-block {
        position: absolute;
        right: 2px;
        top: 7px;
        background-color: #2DA735;
        color: white;
        font-size: 12px;
        z-index: 2;
        box-shadow: -2px 1px 4px 0px #15752cd6;
        font-weight: 500;
        max-width: 120px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .main-gallery-wrapper-no-images .availability-badge-on-img-inner {
        position: relative;
        z-index: 2;
        background-color: #2DA735;
        padding: 8px 12px 0px 12px;
        height: auto;
    }
    
    .main-gallery-wrapper-no-images .availability-badge-sliced-block::after {
        content: '';
        position: absolute;
        bottom: -19px;
        left: 0;
        width: 100%;
        height: 22px;
        background-color: #2DA735;
        transform: skewY(-6deg);
        transform-origin: bottom left;
        z-index: 1;
        box-shadow: -2px 1px 4px 0px #15752cd6;
    }
}

/* ------------- */

.product-card-with-slider .availability-badge-on-img-block {
    right: 4px;
}