/* Marketplace Style Testimonials - Perfume House */
.testimonials-section {
    padding: 80px 5%;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.marketplace-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-big {
    text-align: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
}

.rating-big .stars {
    margin: 10px 0;
    font-size: 1.2rem;
}

.rating-big p {
    font-size: 0.8rem;
    color: #888;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #aaa;
}

.bar-row span { width: 60px; }

.bar-bg {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #d4af37;
    border-radius: 3px;
}

/* Grid de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-tag {
    font-size: 0.75rem;
    color: #00be64;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.testimonial-card p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

.review-photos {
    display: flex;
    gap: 10px;
}

.review-prod-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 1rem;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 0.9rem;
    color: #888;
}

.reviewer-name small {
    margin-left: 5px;
}

/* Form Marketplace */
.add-testimonial-marketplace {
    margin-top: 5rem;
    background: rgba(212, 175, 55, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.add-testimonial-marketplace h3 {
    margin-bottom: 2rem;
    text-align: center;
}

#testimonial-form textarea {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    resize: none;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.form-bottom-marketplace {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-file-custom {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-file-custom:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .marketplace-reviews-header { text-align: center; justify-content: center; }
    .rating-summary { flex-direction: column; gap: 1.5rem; }
    .form-bottom-marketplace { flex-direction: column; }
    .btn-file-custom, .btn-gold-full { width: 100%; text-align: center; }
}
