/* =============================================
   Sufirain Cinema - Modern Comments Area
   ============================================= */

.cinema-comments-area {
    max-width: 800px;
    margin: 80px auto;
    font-family: var(--po-font-body, 'Lora', serif);
    color: var(--po-text, #3b2416);
    padding: 0 20px;
}

/* ---------- Author Box ---------- */
.cinema-author-box {
    background: var(--po-bg-light, #faf6ef);
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 70px;
    border-radius: 12px;
    border: 1px solid rgba(181, 101, 58, 0.1);
    box-shadow: 0 10px 40px rgba(59, 36, 22, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cinema-author-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 36, 22, 0.08);
}

.cinema-author-box img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(59, 36, 22, 0.1);
}

.cinema-author-info h4 {
    font-family: var(--po-font-display, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--po-text, #3b2416);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.cinema-author-info p {
    color: var(--po-text-light, #6b4a34);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* ---------- Comments List ---------- */
.cinema-comments-list {
    margin-bottom: 80px;
}



.sf-nice-select {
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    padding: 10px 36px 10px 16px;
    font-size: 14px;
    color: #4a3728;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23b5653a' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    min-width: 140px;
    font-family: var(--po-font-body, 'Lora', serif);
}

.sf-nice-select:hover {
    border-color: rgba(181, 101, 58, 0.4);
}

.sf-nice-select:focus {
    border-color: #b5653a;
    box-shadow: 0 0 0 3px rgba(181, 101, 58, 0.12);
}

.cinema-section-title {
    font-family: var(--po-font-display, 'Playfair Display', serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--po-text, #3b2416);
    margin: 0;
    position: relative;
    display: inline-block;
}

.cinema-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--po-accent, #b5653a);
}

.cinema-comment-item {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(181, 101, 58, 0.1);
}

.cinema-comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cinema-comment-avatar img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(59, 36, 22, 0.08);
    border: 2px solid #fff;
}

.cinema-comment-body {
    flex: 1;
}

/* YouTube tarzı inline yanıt formu (yorumun hemen altında) */
.cinema-inline-reply-form {
    background: #faf8f5;
    border: 1px solid #e8e4df;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 8px;
}

.cinema-inline-reply-form .cinema-inline-reply-textarea {
    width: 100%;
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--po-font-body, 'Lora', serif);
    resize: vertical;
    min-height: 70px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cinema-inline-reply-form .cinema-inline-reply-textarea:focus {
    border-color: #b5653a;
    box-shadow: 0 0 0 3px rgba(181, 101, 58, 0.12);
}

.cinema-comment-text {
    color: var(--po-text-light, #6b4a34);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.cinema-comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cinema-comment-meta .sf-comment-menu-wrap {
    margin-left: auto;
}

.cinema-comment-name {
    font-family: var(--po-font-display, 'Playfair Display', serif);
    font-weight: 700;
    color: var(--po-text, #3b2416);
    font-size: 17px;
}

.cinema-comment-date {
    color: #9a8b81;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.cinema-comment-reply {
    margin-left: auto;
    color: var(--po-accent, #b5653a);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cinema-comment-reply::before {
    content: '\f112';
    /* FontAwesome reply icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.cinema-comment-reply:hover {
    color: var(--po-accent-hover, #9a4f2a);
    text-decoration: none;
}

.cinema-comment-reply:hover::before {
    transform: translateX(-4px);
}

/* ---------- Comment Form (sayfa zemininde, ince ayırıcı) ---------- */
.cinema-comment-form {
    background: transparent;
    padding: 40px 0 0;
    margin-top: 0;
    border-top: 1px solid #e8e4df;
    border-radius: 0;
    box-shadow: none;
}

.cinema-comment-form h4 {
    font-family: var(--po-font-display, 'Playfair Display', serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--po-text, #3b2416);
    margin-bottom: 28px;
    text-align: left;
}

.cinema-form-row {
    margin-bottom: 24px;
}

.cinema-form-half {
    display: flex;
    gap: 24px;
}

.cinema-form-half input {
    width: 50%;
}

/* Modern form alanları: ince kenar, yuvarlatılmış köşe */
.cinema-comment-form input,
.cinema-comment-form textarea {
    width: 100%;
    border: 1px solid #e0ddd8;
    background: #fff;
    padding: 14px 20px;
    color: var(--po-text, #3b2416);
    font-size: 15px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: var(--po-font-body, 'Lora', serif);
}

.cinema-comment-form input:focus,
.cinema-comment-form textarea:focus {
    border-color: #b5653a;
    box-shadow: 0 0 0 3px rgba(181, 101, 58, 0.15);
}

.cinema-comment-form input::placeholder,
.cinema-comment-form textarea::placeholder {
    color: #a89f98;
    font-style: italic;
}

.cinema-comment-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Marka renkleri: Premium Gold / Koyu yeşil uyumlu buton */
.cinema-submit-btn {
    background: linear-gradient(135deg, #b5653a 0%, #9a4f2a 100%);
    border: none;
    color: #fff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border-radius: 12px;
    margin-top: 12px;
    font-family: var(--po-font-body, 'Lora', serif);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(181, 101, 58, 0.25);
}

.cinema-submit-btn:hover {
    background: linear-gradient(135deg, #c97a47 0%, #b5653a 100%);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(181, 101, 58, 0.35);
}

/* ---------- Authenticated (Logged In) Comment Form ---------- */
.cinema-auth-comment-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cinema-auth-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(59, 36, 22, 0.08);
    flex-shrink: 0;
    background-color: var(--po-accent);
}

.cinema-auth-input-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Yorum textarea: ince kenar, 12px radius, focus glow */
.cinema-auth-input-area textarea {
    width: 100%;
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    background: #fff;
    padding: 14px 20px;
    color: var(--po-text, #3b2416);
    font-size: 16px;
    font-family: var(--po-font-body, 'Lora', serif);
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.cinema-auth-input-area textarea:focus {
    border-color: #b5653a;
    box-shadow: 0 0 0 3px rgba(181, 101, 58, 0.15);
}

.cinema-auth-input-area textarea::placeholder {
    color: #a89f98;
    font-style: italic;
}

/* Paylaş butonu: marka rengi, hover büyüme */
.cinema-auth-submit-btn {
    background: linear-gradient(135deg, #b5653a 0%, #9a4f2a 100%);
    border: none;
    color: #fff;
    padding: 12px 28px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border-radius: 12px;
    margin-top: 12px;
    font-family: var(--po-font-body, 'Lora', serif);
    box-shadow: 0 4px 14px rgba(181, 101, 58, 0.25);
}

.cinema-auth-submit-btn:hover {
    background: linear-gradient(135deg, #c97a47 0%, #b5653a 100%);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(181, 101, 58, 0.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .cinema-comments-area {
        margin: 50px auto;
    }

    .cinema-author-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 20px;
    }

    .cinema-comment-item {
        flex-direction: column;
        gap: 15px;
    }

    .cinema-comment-meta {
        flex-wrap: wrap;
    }

    .cinema-form-half {
        flex-direction: column;
        gap: 20px;
    }

    .cinema-form-half input {
        width: 100%;
    }

    .cinema-comment-form {
        padding: 30px 0 0;
    }
}

/* Misafir yorum alanı: kapalı kutu kaldırıldı, ince ayırıcı */
#cinema-guest-comment-section .text-center {
    background: transparent !important;
    border: 1px solid #e8e4df;
    border-radius: 12px;
    padding: 28px 20px !important;
}