/* =========================================================================
   Testimonial Slider - Base
   ========================================================================= */

.lithos-testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.lithos-testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
}

.lithos-testimonial-slide {
    flex: 0 0 calc(100% / 3 - 24px);
    margin: 0 12px;
    box-sizing: border-box;
    padding: 24px;
}

/* Stars */
.lithos-testimonial-stars {
    color: #f5a623;
    font-size: 1.3em;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.lithos-testimonial-answer p:last-child {
    margin-bottom: 0;
}

/* Reviewer name */
.lithos-testimonial-reviewer {
    margin-top: 12px;
    font-style: italic;
    color: #666;
    font-size: 0.95em;
}

/* Slider arrows */
.lithos-slider-prev,
.lithos-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    color: #333;
}

.lithos-slider-prev:hover,
.lithos-slider-next:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.lithos-slider-prev {
    left: 0;
}

.lithos-slider-next {
    right: 0;
}

/* Responsive: 1 slide on mobile */
@media (max-width: 767px) {
    .lithos-testimonial-slide {
        flex: 0 0 calc(100% - 24px);
    }

    .lithos-testimonial-slider {
        padding: 0 40px;
    }
}

/* =========================================================================
   Testimonial Design: Cards (Most Popular)
   ========================================================================= */

.lithos-design-cards .lithos-testimonial-slide {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* =========================================================================
   Testimonial Design: Minimal
   ========================================================================= */

.lithos-design-minimal .lithos-testimonial-slide {
    background: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    text-align: center;
    position: relative;
    padding-top: 48px;
}

.lithos-design-minimal .lithos-testimonial-slide::before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 56px;
    line-height: 1;
    color: #f5a623;
    font-family: Georgia, serif;
}

.lithos-design-minimal .lithos-testimonial-reviewer {
    font-weight: 600;
    font-style: normal;
    color: #333;
}

/* =========================================================================
   Testimonial Design: Quote Bubble
   ========================================================================= */

.lithos-design-bubble .lithos-testimonial-slide {
    background: #f7f7f7;
    border: none;
    border-radius: 16px;
    position: relative;
    margin-bottom: 16px;
}

.lithos-design-bubble .lithos-testimonial-slide::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #f7f7f7;
}

.lithos-design-bubble .lithos-testimonial-reviewer {
    font-style: normal;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

/* =========================================================================
   Testimonial Design: Elegant
   ========================================================================= */

.lithos-design-elegant .lithos-testimonial-slide {
    background: #fff;
    border: none;
    border-left: 4px solid #f5a623;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lithos-design-elegant .lithos-testimonial-stars {
    font-size: 1.1em;
}

/* =========================================================================
   FAQ - Base
   ========================================================================= */

.lithos-faq-question {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.lithos-faq-question::-webkit-details-marker {
    display: none;
}

.lithos-faq-answer p:last-child {
    margin-bottom: 0;
}

/* =========================================================================
   FAQ Design: Classic (Most Popular)
   ========================================================================= */

.lithos-design-classic .lithos-faq-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 8px;
}

.lithos-design-classic .lithos-faq-question {
    padding: 16px;
}

.lithos-design-classic .lithos-faq-question::before {
    content: '+';
    display: inline-block;
    width: 20px;
    font-weight: bold;
}

.lithos-design-classic details[open] .lithos-faq-question::before {
    content: '\2212';
}

.lithos-design-classic .lithos-faq-answer {
    padding: 0 16px 16px;
}

/* =========================================================================
   FAQ Design: Clean
   ========================================================================= */

.lithos-design-clean .lithos-faq-item {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    margin-bottom: 0;
}

.lithos-design-clean .lithos-faq-question {
    padding: 16px 0;
}

.lithos-design-clean .lithos-faq-question::before {
    content: '\203A';
    display: inline-block;
    width: 20px;
    font-weight: bold;
    transition: transform 0.2s;
}

.lithos-design-clean details[open] .lithos-faq-question::before {
    transform: rotate(90deg);
}

.lithos-design-clean .lithos-faq-answer {
    padding: 0 0 16px 20px;
}

/* =========================================================================
   FAQ Design: Boxed
   ========================================================================= */

.lithos-design-boxed .lithos-faq-item {
    background: #f9f9f9;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.lithos-design-boxed .lithos-faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lithos-design-boxed .lithos-faq-question::after {
    content: '\25B8';
    font-size: 0.8em;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.lithos-design-boxed details[open] .lithos-faq-question::after {
    transform: rotate(90deg);
}

.lithos-design-boxed .lithos-faq-answer {
    padding: 0 20px 16px;
}

/* =========================================================================
   FAQ Design: Bordered
   ========================================================================= */

.lithos-design-bordered .lithos-faq-item {
    border: none;
    border-left: 3px solid #2271b1;
    border-radius: 0;
    margin-bottom: 8px;
    background: #fafafa;
}

.lithos-design-bordered .lithos-faq-question {
    padding: 16px;
}

.lithos-design-bordered .lithos-faq-question::before {
    content: '\25CF';
    display: inline-block;
    width: 20px;
    color: #2271b1;
    font-size: 0.7em;
    vertical-align: middle;
}

.lithos-design-bordered details[open] .lithos-faq-question::before {
    content: '\25CB';
}

.lithos-design-bordered .lithos-faq-answer {
    padding: 0 16px 16px 36px;
}

/* =========================================================================
   Breadcrumbs
   ========================================================================= */

.lithos-breadcrumbs {
    padding: 12px 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.lithos-breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.lithos-breadcrumbs-item {
    display: flex;
    align-items: center;
}

.lithos-breadcrumbs-link {
    text-decoration: none;
    color: #2271b1;
}

.lithos-breadcrumbs-link:hover {
    text-decoration: underline;
}

.lithos-breadcrumbs-sep {
    margin: 0 8px;
    color: #999;
}

.lithos-breadcrumbs-current {
    color: #666;
}

.lithos-breadcrumbs-text {
    color: inherit;
}
