/* Container general, centrat pe latimea Woodmart */
.ucbd-slider-container {
    max-width: 960px;
    margin: 20px auto;
}

/* Wrapper: sageti + slider */
.ucbd-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Butoane stanga / dreapta */
.ucbd-slider-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Masca pentru track */
.ucbd-slider-track-wrapper {
    overflow: hidden;
    flex: 1;
}

/* Track cu slide-uri */
.ucbd-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    align-items: flex-start !important; /* important pentru Woodmart override */

}

/* Slide = 100% latime */
.ucbd-slide {
    flex: 0 0 100%;
    display: block;

}

/* Cardul de review */
.ucbd-card {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    /* dacă nu mai vrei shadow, îl scoatem aici: */
    box-shadow: none;  /* sau none !important; dacă tema forțează altceva */
    padding: 22px 26px;
    position: relative;      /* 🔥 asta e cheia pentru logo în colț dreapta */
     min-height: auto !important;;
}

/* Logo in coltul dreapta sus */
.ucbd-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.ucbd-logo img {
    max-height: 70px;      /* sau cât ai ales tu */
    width: auto;
    object-fit: contain;
}


/* Desktop = mare */
.ucbd-logo img {
    max-height: 80px !important;
}

/* Mobil = și mai mare */
@media (max-width: 768px) {
    .ucbd-logo img {
        max-height: 95px !important;
    }
}

/* Stelele verzi */
.ucbd-stars {
    display: flex;
    gap: 4px;
    margin: 8px 0 10px;
}

.ucbd-star {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #d3d3d3;
    position: relative;
}

.ucbd-star.is-active {
    background: #00b67a;
}

.ucbd-star::before {
    content: "★";
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
}

/* Titlu + text */
.ucbd-title {
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0 6px;
}

.ucbd-text p {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.5;
}

/* Link "Citește mai multe..." */
.ucbd-more {
    margin-top: 12px;
    display: block;
    text-align: right;
    text-decoration: underline;
    font-size: 13px;
    color: #2e6b3f;
}

/* Mobile */
@media (max-width: 768px) {
    .ucbd-card {
        padding: 18px 16px;
    }
}

/* MOBILE FIX: prevent overlap */
@media (max-width: 768px) {

    /* Mai mult spațiu în partea de sus a cardului */
    .ucbd-card {
        padding-top: 100px !important;   /* crește spațiul până la titlu */
    }

    /* Logo-ul urcă puțin mai sus și mai în dreapta */
    .ucbd-logo {
        top: 15px !important;
        right: 15px !important;
    }

    .ucbd-logo img {
        max-height: 85px !important;     /* sau 70px dacă e prea mare */
    }
}

@media (max-width: 768px) {
    .ucbd-logo img {
        max-height: 55px !important;   /* DIMENSIUNEA NOUĂ */
        width: auto !important;
    }

    .ucbd-logo {
        top: 12px !important;
        right: 12px !important;
    }

    /* Ajustăm și paddingul cardului */
    .ucbd-card {
        padding-top: 70px !important;  /* suficient pentru logo mic */
    }
}



