/**
 * Styles for SieblaRentabikeConnect front office
 */

.siebla-view-all:hover {

}

@media (max-width: 767px) {
    .siebla-product-item {
        margin-bottom: 20px;
    }

    .siebla-rentabike-title {
        font-size: 20px;
    }

    .siebla-product-name {
        font-size: 15px;
    }

    .siebla-product-price {
        font-size: 16px;
    }
}
siebla-rentabike-products-container {
     margin: 30px 0;
     padding: 20px;
     background-color: #f9f9f9;
     border-radius: 5px;
 }

.siebla-rentabike-title {
    font: 800 70px / 1 blender-pro;
    text-align: center;
    margin: 55px 0px;
}

.siebla-product-item {
    margin-bottom: 30px;
}

.siebla-product-card {
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.siebla-product-card:hover {

}

.siebla-product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.siebla-product-link:hover,
.siebla-product-link:focus {

}

.siebla-product-image {
    position: relative;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.siebla-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.siebla-product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.siebla-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.siebla-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2fb5d2;
    margin-bottom: 10px;
}

.siebla-product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.siebla-product-view {

}

.siebla-product-link:hover .siebla-product-view {

}

.siebla-rentabike-footer {
    text-align: center;
    margin-top: 20px;
}

.siebla-view-all {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

@media(max-width: 767px){
    .siebla-product-name {
        height: 60px;
    }
}