.oc-recommendations-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    font-family: inherit;
}

.oc-recommendations-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.oc-recommendations-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    margin-right: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.oc-recommendations-line {
    flex-grow: 1;
    height: 1px;
    background-color: #333;
}

.oc-recommendations-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 15px 5px;
}

.oc-recommendations-slider .swiper-slide {
    height: auto;
}

.oc-recommendation-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
    height: 100%;
    box-sizing: border-box;
}

.oc-recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.oc-recommendation-image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.oc-recommendation-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.oc-recommendation-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
    margin: 0;
    line-height: 1.3;
}