/* ==========================================
   YORUMLAR BÖLÜMÜ - LUXURY DESIGN
   ========================================== */
.section-yorumlar {
    background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
}



.yorum-kaydirma-alani {
    margin: 4rem 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.yorum-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.yorum-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}

.yorum-kart {
    width: 420px;
    background: #ffffff;
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.yorum-kart::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 5rem;
    font-family: serif;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.yorum-kart:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.1);
    border-color: #d4af37;
}

.yorum-yildizlar {
    color: #d4af37;
    font-size: 0.9rem;
    display: flex;
    gap: 0.35rem;
    letter-spacing: 2px;
}

.yorum-metin {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    flex-grow: 1;
}

.yorum-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 1.5rem;
}

.yorum-kisi {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kisi-ikon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kisi-isim {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    letter-spacing: -0.2px;
}

.yorum-tarih {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}

.yorum-butonlar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 640px) {
    .yorum-kart { width: 320px; padding: 2rem; }
    .yorum-butonlar { flex-direction: column; }
    .section-yorumlar::after { font-size: 5rem; }
}
