/**
 * Testiviews Public Styles
 */

/* === Stars === */
.testiviews-stars {
    font-size: 1.2em;
    line-height: 1;
    letter-spacing: 2px;
}

.testiviews-stars .star {
    display: inline-block;
}

/* === Grid Layout === */
.testiviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* === Card Styles === */
.testiviews-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
}

.testiviews-card-style-shadow .testiviews-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testiviews-card-style-shadow .testiviews-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.testiviews-card-style-border .testiviews-card {
    border: 2px solid #e0e0e0;
}

.testiviews-card-style-border .testiviews-card:hover {
    border-color: #2271b1;
}

.testiviews-card-style-minimal .testiviews-card {
    background: transparent;
    padding: 1rem 0;
}

.testiviews-card-header {
    margin-bottom: 1rem;
}

.testiviews-card-body {
    flex: 1;
    margin-bottom: 1rem;
}

.testiviews-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.testiviews-card-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.testiviews-author strong {
    color: #2271b1;
    display: block;
    margin-bottom: 0.25rem;
}

.testiviews-suburb {
    color: #666;
    font-size: 0.9em;
}

.testiviews-suburb::before {
    content: " · ";
}

.testiviews-date {
    color: #999;
    font-size: 0.85em;
    margin-top: 0.5rem;
}

/* === Slider Layout === */
.testiviews-slider {
    position: relative;
    margin: 2rem 0;
}

.testiviews-slider-container {
    position: relative;
    overflow: hidden;
}

.testiviews-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testiviews-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testiviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testiviews-slider-prev,
.testiviews-slider-next {
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.testiviews-slider-prev:hover,
.testiviews-slider-next:hover {
    background: #135e96;
}

.testiviews-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.testiviews-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.testiviews-slider-dot.active,
.testiviews-slider-dot:hover {
    background: #2271b1;
}

/* === Single Testimonial === */
.testiviews-single {
    max-width: 600px;
    margin: 2rem auto;
}

/* === Rating Display === */
.testiviews-rating-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.testiviews-rating-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #2271b1;
}

.testiviews-review-count {
    color: #666;
    font-size: 0.9em;
}

/* === Error Messages === */
.testiviews-no-results,
.testiviews-error {
    padding: 1rem;
    background: #f9f9f9;
    border-left: 3px solid #999;
    color: #666;
    margin: 1rem 0;
}

/* === Responsive === */
@media (max-width: 768px) {
    .testiviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testiviews-card {
        padding: 1rem;
    }
    
    .testiviews-slider-prev,
    .testiviews-slider-next {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

/* === Print Styles === */
@media print {
    .testiviews-slider-controls {
        display: none;
    }
    
    .testiviews-slide {
        display: block !important;
        page-break-inside: avoid;
    }
}
