/*
 * Product Review Carousel - Stylesheet V1.4 (TronicalTune Design)
 */
.prc-wrapper {
    margin: 80px auto;
    max-width: 800px;
    visibility: hidden;
}

.prc-wrapper.slick-initialized {
    visibility: visible;
}

/* 1. Neue Überschrift im Stil von "ARTISTS WHO USE TRONICAL" */
.prc-wrapper h2 {
    text-align: center;
    text-transform: uppercase;
        font-size: 1.25em;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
/* Linien links und rechts von der Überschrift */
.prc-wrapper h2::before,
.prc-wrapper h2::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #e0e0e0;
    margin: 0 20px;
}

.prc-slide { padding: 15px; }

.prc-slide-content {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 40px 50px; /* Mehr Innenabstand für die Zitate */
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    min-height: 220px;
}

/* 2. Große, graue Anführungszeichen */
.prc-slide-content::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 100px;
    color: #f5f5f5;
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
    z-index: 1;
}

/* Alle Inhalte im Slide liegen über den Zitaten */
.prc-slide-content > * {
    position: relative;
    z-index: 2;
}

/* 3. Avatar wird zur Namens-Pille */
.prc-name-pill {
    display: inline-block; /* Damit es sich der Breite anpasst */
    padding: 8px 20px;
    border-radius: 50px; /* Macht es zur Pille */
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: -70px auto 20px auto; /* Positioniert es über der Box */
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.prc-stars { margin-bottom: 20px; }
.prc-stars .dashicons {
    color: #f5b301;
    font-size: 20px;
    height: 20px;
    width: 20px;
}

/* 4. Bewertungstext größer */
.prc-text {
    margin: 15px 0 25px 0;
    font-style: italic;
    color: #444;
    font-size: 18px; /* Größerer Text */
    line-height: 1.6;
}

/* 5. "Review for" und Link-Styling */
.prc-product, .prc-product a, .prc-product strong {
    font-size: 14px;
    color: #888;
    text-decoration: none;
}
.prc-product strong {
    color: #555; /* Etwas dunkler für bessere Lesbarkeit */
}
.prc-product a {
    color: #e53935; /* Rote Farbe der Webseite */
    font-weight: bold;
    transition: color 0.2s ease;
}
.prc-product a:hover { color: #333; }

/* Slick Carousel Navigation */
.slick-dots li button:before { color: #ccc; }
.slick-dots li.slick-active button:before { color: #555; }
.slick-prev, .slick-next { top: 45%; } /* Pfeile etwas höher */
.slick-prev:before, .slick-next:before { font-size: 30px; color: #999; }