/* Quotes Rotator — Lisa Skin Clinic theme */

.cbp-qtrotator {
    position: relative;
    margin: 0 auto;
    max-width: 860px;
    width: 100%;
    min-height: 300px;
}

.cbp-qtrotator .cbp-qtcontent {
    position: absolute;
    min-height: 180px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2em 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    width: 100%;
    pointer-events: none;
}

.cbp-qtrotator .cbp-qtcontent.cbp-qtcurrent {
    position: relative;
    z-index: 100;
    pointer-events: auto;
    opacity: 1;
}

.cbp-qtrotator .cbp-qtcontent::before,
.cbp-qtrotator .cbp-qtcontent::after {
    content: " ";
    display: table;
}

.cbp-qtrotator .cbp-qtcontent::after {
    clear: both;
}

/* Progress bar — clinic gold accent */
.cbp-qtprogress {
    position: absolute;
    background: #e2be98;
    height: 2px;
    width: 0%;
    top: 0;
    z-index: 1000;
}

/* Quote image — circular avatar */
.cbp-qtrotator .cbp-qtcontent img {
    float: right;
    margin-left: 2.5em;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(226, 190, 152, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Quote text */
.cbp-qtrotator blockquote {
    margin: 0;
    padding: 0;
}

.cbp-qtrotator blockquote p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.7;
    margin: 0.4em 0 1em;
    font-family: var(--font-global, 'Spline Sans', sans-serif);
    font-style: italic;
}

/* Opening quote mark */
.cbp-qtrotator blockquote p::before {
    content: '\201C';
    font-size: 2.5em;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 0.1em;
    color: #e2be98;
    font-style: normal;
    font-weight: 700;
}

/* Author line */
.cbp-qtrotator blockquote footer {
    font-size: 1em;
    font-weight: 600;
    color: #e2be98;
    letter-spacing: 0.03em;
    font-style: normal;
}

.cbp-qtrotator blockquote footer::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #e2be98;
    vertical-align: middle;
    margin-right: 12px;
}

/* Navigation dots */
.cbp-qtrotator .cbp-qtnav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    position: relative;
    z-index: 200;
}

.cbp-qtrotator .cbp-qtnav span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s;
}

.cbp-qtrotator .cbp-qtnav span.cbp-qtcurrentdot {
    background: #e2be98;
}

.cbp-qtrotator .cbp-qtnav span:hover {
    background: rgba(226, 190, 152, 0.6);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cbp-qtrotator {
        min-height: 350px;
    }

    .cbp-qtrotator .cbp-qtcontent img {
        float: none;
        display: block;
        margin: 0 auto 1.2em auto;
        width: 80px;
        height: 80px;
    }

    .cbp-qtrotator blockquote p {
        font-size: 1.05em;
        text-align: center;
    }

    .cbp-qtrotator blockquote footer {
        text-align: center;
        font-size: 0.9em;
    }
}

@media screen and (max-width: 480px) {
    .cbp-qtrotator {
        min-height: 400px;
    }

    .cbp-qtrotator blockquote p {
        font-size: 0.95em;
    }
}
