/* Gynsyng homepage: Live crawlable Google Reviews slider (#SecLiveReviews)
   Dark review-card style with avatar, Google icon, date, verified check, and Read more. */
#SecLiveReviews {
    background-color: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #D8D4C9;
    border-bottom: 1px solid #D8D4C9;
}
#SecLiveReviews h2 { margin-bottom: 12px; }
.gyn-reviews-subtitle { text-align: center; color: #545049; max-width: 640px; margin: 0 auto 48px; font-size: 1rem; line-height: 1.6; }

.gyn-reviews-carousel { max-width: 700px; margin: 0 auto; padding: 0 56px; }

/* Gap between slides while sliding: each carousel-item is inset with side padding
   (box-sizing keeps it at 100% width), so two adjacent items never touch mid-transition —
   the visible gap is the sum of the outgoing item's right padding and the incoming item's left padding. */
.gyn-reviews-carousel .carousel-item {
    box-sizing: border-box;
    padding: 0 10px;
}

.gyn-review-card {
    background: #17281C;
    border: 1px solid #2D4A34;
    border-radius: 12px;
    padding: 26px 28px;
    text-align: left;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gyn-review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.gyn-reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #6E805A;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}
.gyn-reviewer-meta { flex-grow: 1; min-width: 0; }
.gyn-reviewer-meta h4 {
    font-family: 'Nobile', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #F4F1EA;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gyn-review-date { font-size: 0.78rem; color: #B8BFB2; }
.gyn-google-g { width: 22px; height: 22px; flex-shrink: 0; }
.gyn-google-g svg { width: 100%; height: 100%; }

.gyn-review-stars {
    color: #F4B400;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gyn-verified-check { flex-shrink: 0; }

.gyn-review-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #E2DFD6;
    font-style: normal;
    margin: 0;
}

.gyn-reviews-indicators { position: static; margin: 24px 0 36px; gap: 8px; }
.gyn-reviews-indicators [data-bs-target] {
    background-color: #D8D4C9;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 1;
    margin: 0 4px;
    transition: background-color 0.2s ease;
}
.gyn-reviews-indicators .active { background-color: #17281C; }

/* Prev/Next controls: dark circle with a white chevron glyph drawn directly (not the
   vendor icon) so background-color (the circle) and the glyph color are independent —
   using `filter: invert()` on the same element inverted the circle's own fill too,
   which made the whole control disappear against the page background. */
.gyn-reviews-carousel .carousel-control-prev,
.gyn-reviews-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}
.gyn-reviews-carousel .carousel-control-prev { left: -2px; }
.gyn-reviews-carousel .carousel-control-next { right: -2px; }
.gyn-reviews-carousel .carousel-control-prev-icon,
.gyn-reviews-carousel .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    background-color: #17281C;
    border-radius: 50%;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.2s ease;
}
.gyn-reviews-carousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.gyn-reviews-carousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.gyn-reviews-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.gyn-reviews-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #6E805A;
}

@media (max-width: 767px) {
    #SecLiveReviews { padding: 50px 0; }
    .gyn-reviews-carousel { padding: 0 44px; }
    .gyn-review-card { padding: 22px 20px; min-height: 300px; }
}
