/* Styles for Reviews and Video Testimonials Widget */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap');

.ftr-wrapper-e91c1a43 {
    --accent: #6B6C41;
    font-family: 'Heebo', sans-serif;
    background: #f7f6f0;
    padding: 90px 0;
}

.ftr-inner-e91c1a43 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================= */
/* ORTAK: Başlık Bloğu           */
/* ============================= */
.ftr-section-head {
    margin-bottom: 36px;
}

.ftr-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.ftr-title {
    font-size: 34px;
    font-weight: 800;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}

/* ============================= */
/* ORTAK: Yatay Kaydırma Şeridi  */
/* ============================= */
.ftr-scroll-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 22px;
    cursor: grab;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #e4e2d8;
}

.ftr-scroll-row.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.ftr-scroll-row::-webkit-scrollbar {
    height: 8px;
}

.ftr-scroll-row::-webkit-scrollbar-track {
    background: #e4e2d8;
}

.ftr-scroll-row::-webkit-scrollbar-thumb {
    background: var(--accent);
}

/* ============================= */
/* VİDEO TESTIMONIAL KARTLARI    */
/* ============================= */
.ftr-video-card {
    flex: 0 0 calc((100% - 44px) / 3); /* desktop default */
    scroll-snap-align: start;
    border: 2px solid var(--accent);
    border-radius: 0;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 9 / 16;
    position: relative;
}

.ftr-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111111;
}

/* Play button */
.ftr-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
    z-index: 2;
}

.ftr-play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.ftr-play-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.ftr-video-card:hover .ftr-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    background: #7f8050;
}

.ftr-video-card.is-playing .ftr-play-btn {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.7);
}

.ftr-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.25s ease;
}

.ftr-video-card.is-playing::after {
    opacity: 0;
}

/* ============================= */
/* GOOGLE YORUM ÖZETİ            */
/* ============================= */
.ftr-review-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ftr-google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 12px 18px;
}

.ftr-google-badge .ftr-g-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ftr-google-score {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
}

.ftr-stars {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 1px;
}

.ftr-review-count {
    font-size: 14px;
    color: #666666;
}

/* ============================= */
/* GOOGLE YORUM KARTLARI         */
/* ============================= */
.ftr-review-card {
    flex: 0 0 calc((100% - 44px) / 3); /* desktop default */
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.ftr-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ftr-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.ftr-review-name {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

.ftr-review-meta {
    font-size: 12px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.ftr-review-meta .ftr-review-stars {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 1px;
}

.ftr-review-text {
    font-size: 14px;
    color: #444444;
    line-height: 1.65;
    margin: 0;
}

.ftr-review-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.ftr-review-text a:hover {
    text-decoration: underline;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .ftr-video-card,
    .ftr-review-card {
        flex: 0 0 calc((100% - 22px) / 2); /* Tablet */
    }
}

@media (max-width: 640px) {
    .ftr-inner-e91c1a43 { padding: 0 20px; }
    .ftr-title { font-size: 26px; }
    .ftr-video-card,
    .ftr-review-card {
        flex: 0 0 78%; /* Mobile */
    }
}
