/* Dosya Yolu: firma_rehberi/public_site/assets/style.css (DEĞERLENDİRME TASARIMI v2 EKLENDİ) */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --font-family: 'Manrope', 'Segoe UI', Roboto, sans-serif;
    --primary-color: #2563eb; --primary-light: #eff6ff;
    --bg-main: #f9fafb; --bg-card: #ffffff; --bg-sidebar: #f3f4f6; --bg-input: #ffffff;
    --text-dark: #111827; --text-muted: #6b7280; --text-light: #ffffff;
    --border-color: #e5e7eb; --shadow-color: rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
    --color-open: #22c55e; --color-closed: #ef4444;
    --color-featured: #f59e0b;
    --color-pending: #f97316;
    --dark-bg-main: #111827; --dark-bg-card: #1f2937; --dark-bg-sidebar: #111827;
    --dark-text-primary: #f9fafb; --dark-text-secondary: #9ca3af; 
    --dark-border-color: #374151; --dark-shadow-color: rgba(0, 0, 0, 0.2);
    --dark-primary-color: #3b82f6; --dark-primary-light: #2c3a4f;
    --dark-bg-input: #374151;
    --dark-color-open: #4ade80; --dark-color-closed: #f87171;
}

* { box-sizing: border-box; }

body.dark-theme {
    --bg-main: var(--dark-bg-main);
    --bg-card: var(--dark-bg-card);
    --bg-sidebar: var(--dark-bg-sidebar);
    --bg-input: var(--dark-bg-input);
    --text-dark: var(--dark-text-primary);
    --text-muted: var(--dark-text-secondary);
    --border-color: var(--dark-border-color);
    --shadow-color: var(--dark-shadow-color);
    --primary-color: var(--dark-primary-color);
    --primary-light: var(--dark-primary-light);
    --color-open: var(--dark-color-open);
    --color-closed: var(--dark-color-closed);
}

body {
    font-family: var(--font-family); background-color: var(--bg-main);
    color: var(--text-dark); margin: 0; line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-middle { scrollbar-width: thin; scrollbar-color: var(--border-color) var(--bg-sidebar); }
body.dark-theme .sidebar-middle { scrollbar-color: var(--dark-border-color) var(--dark-bg-sidebar); }
.sidebar-middle::-webkit-scrollbar { width: 6px; }
.sidebar-middle::-webkit-scrollbar-track { background: transparent; }
.sidebar-middle::-webkit-scrollbar-thumb { background-color: var(--border-color); border-radius: 6px; }
body.dark-theme .sidebar-middle::-webkit-scrollbar-thumb { background-color: var(--dark-border-color); }

.container { max-width: 1280px; margin: 0 auto; padding: 30px; }
.main-layout { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; }
.sidebar { position: sticky; top: 30px; display: flex; flex-direction: column; max-height: calc(100vh - 60px); background-color: var(--bg-sidebar); padding: 20px; border-radius: var(--border-radius); border: 1px solid var(--border-color); }
.sidebar-top { flex-shrink: 0; }
.sidebar-middle { flex-grow: 1; overflow-y: auto; min-height: 100px; }
.sidebar-bottom { flex-shrink: 0; padding-top: 20px; }
.sidebar h3 { font-size: 18px; font-weight: 700; margin: 0 0 15px 0; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
.sector-menu { list-style: none; padding: 0; margin: 0; }
.sector-menu li a { display: flex; align-items: center; gap: 15px; padding: 10px; border-radius: 8px; text-decoration: none; color: var(--text-muted); font-weight: 500; transition: background-color 0.2s, color 0.2s; font-size: 15px; }
.sector-menu li a > span { display: flex; align-items: center; gap: 15px; white-space: nowrap; }
.sector-menu li a:hover { background-color: var(--bg-card); color: var(--text-dark); }
.sector-menu li.active a { background-color: var(--primary-light); color: var(--primary-color); font-weight: 600; }
.sector-menu li a .fa-fw { width: 1.25em; text-align: center; }
.add-firm-cta-inner { padding: 20px; background-color: var(--primary-light); border-radius: var(--border-radius); text-align: center; transition: background-color 0.3s; display: flex; flex-direction: column; align-items: center; }
.add-firm-cta h4 { margin: 0 0 10px 0; font-size: 16px; color: var(--text-dark); }
.add-firm-cta p { font-size: 14px; color: var(--text-muted); margin: 0 0 15px 0; }
.add-firm-cta .btn-add-firm { display: inline-flex; align-items: center; justify-content: center; padding: 10px 15px; background-color: var(--primary-color); color: var(--text-light); text-decoration: none; font-weight: 600; border-radius: 8px; transition: background-color 0.2s; font-size: 14px; gap: 8px; }
.add-firm-cta .btn-add-firm:hover { opacity: 0.8; }
.sidebar-filters { padding-top: 20px; border-top: 1px solid var(--border-color); margin-bottom: 20px; }
.filter-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.filter-item:last-child { margin-bottom: 0; }
.filter-item > label { font-weight: 500; font-size: 14px; padding-right: 10px; }
.sort-options { display: block; }
.sort-options > label { display: block; margin-bottom: 10px; }
.sort-buttons { display: flex; justify-content: space-between; gap: 8px; }
.sort-btn { flex-grow: 1; text-align: center; padding: 8px 5px; border: 1px solid var(--border-color); background-color: var(--bg-card); border-radius: 8px; text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 13px; transition: all 0.2s; }
.sort-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.sort-btn.active { background-color: var(--primary-color); color: var(--text-light); border-color: var(--primary-color); font-weight: 600; }
.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(20px); }
body.dark-theme .slider { background-color: #4b5563; }

.content { min-width: 0; }
.rehber-header { text-align: center; margin-bottom: 20px; }
.rehber-header h1 { font-size: 36px; font-weight: 800; margin: 0 0 10px 0; }
.rehber-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 20px auto; }
.search-form { display: flex; width: 100%; max-width: 700px; margin: 0 auto; box-shadow: 0 4px 15px var(--shadow-color); border-radius: var(--border-radius); }
.search-form input[type="text"] { flex-grow: 1; border: 1px solid var(--border-color); background-color: var(--bg-card); color: var(--text-dark); padding: 16px 20px; font-size: 16px; outline: none; border-radius: var(--border-radius) 0 0 var(--border-radius); border-right: none; }
.search-form button { border: none; background-color: var(--primary-color); color: var(--text-light); padding: 0 25px; border-radius: 0 var(--border-radius) var(--border-radius) 0; cursor: pointer; font-size: 16px; font-weight: 600; transition: background-color 0.2s; }
.search-form button:hover { opacity: 0.8; }
.results-info { margin-bottom: 20px; font-weight: 500; color: var(--text-muted); }

.firma-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }

.firma-card { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; position: relative; }
.firma-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px var(--shadow-color); }
.firma-card.featured { border-color: var(--color-featured); box-shadow: 0 0 0 1px var(--color-featured), 0 4px 15px var(--shadow-color); }
.firma-card-logo { width: 100%; height: 180px; background-color: var(--bg-main); display: flex; align-items: center; justify-content: center; position: relative; }
.firma-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.firma-card-logo .no-logo { font-size: 24px; font-weight: 700; color: var(--text-muted); }
.card-status-badges-overlay { position: absolute; top: 10px; right: 10px; display: flex; gap: 8px; }
.card-status-badge { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; background-color: rgba(0, 0, 0, 0.5); color: white; backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.2); }
.card-status-badge.featured { background-color: rgba(245, 158, 11, 0.8); }
.card-status-badge.open { background-color: rgba(34, 197, 94, 0.8); }
.card-status-badge.closed { background-color: rgba(239, 68, 68, 0.8); }

.firma-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.sektor-tag { display: inline-block; background-color: var(--primary-light); color: var(--primary-color); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 12px; align-self: flex-start; }
.firma-card-content h3 { margin: 0 0 10px 0; font-size: 18px; font-weight: 700; }
.card-stats-row { display: flex; gap: 15px; font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
.card-stat-item { display: flex; align-items: center; gap: 6px; }
.card-stat-item.rating .fa-star { color: var(--color-featured); }

.contact-info { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--border-color); font-size: 14px; color: var(--text-muted); }
.contact-info span { display: block; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-info i { margin-right: 8px; width: 16px; text-align: center; }

.no-results { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 50px 20px; text-align: center; }
.no-results h3 { margin: 0 0 10px 0; }
.no-results p { color: var(--text-muted); margin: 0; }
.rehber-footer { text-align: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border-color); font-size: 14px; color: var(--text-muted); }
.rehber-footer a { color: var(--primary-color); text-decoration: none; font-weight: 500; }

.page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.header-left { flex: 1; }
.header-right { display: flex; align-items: center; gap: 10px; }
.header-btn { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-muted); padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.header-btn:hover { background-color: var(--primary-light); color: var(--text-dark); }
#theme-toggle-btn { padding: 8px; width: 38px; height: 38px; line-height: 1; }
.mobile-menu-toggle { display: none; }
.desktop-only { display: block; }
.overlay { display: none; }

.firm-profile-header { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
.firm-logo-container { width: 120px; height: 120px; border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 10px; flex-shrink: 0; display:flex; align-items:center; justify-content:center; background-color: var(--bg-card); }
.firm-logo-container img { max-width: 100%; max-height: 100%; object-fit: contain; }
.firm-logo-container .no-logo { font-size: 48px; font-weight: 800; color: var(--text-muted); }
.firm-summary { flex-grow: 1; }
.firm-summary h1 { margin: 0 0 5px 0; font-size: 28px; color: var(--text-dark); }
.firm-summary .unvan { color: var(--text-muted); font-size: 16px; margin-bottom: 10px; display: block; }
.firm-summary .sektor-badge { display: inline-block; background-color: var(--primary-light); color: var(--primary-color); padding: 5px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; }
.summary-stats { display: flex; align-items: center; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
.summary-stats .rating { display: flex; align-items: center; gap: 5px; font-size: 16px; font-weight: 600; }
.summary-stats .rating .fa-star { color: #f59e0b; }
.summary-stats .comment-count, .summary-stats .view-count { font-size: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.tab-navigation { display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 25px; }
.tab-btn { padding: 12px 20px; cursor: pointer; background: none; border: none; font-family: inherit; font-size: 16px; font-weight: 500; color: var(--text-muted); position: relative; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tab-btn.active { color: var(--primary-color); font-weight: 600; border-bottom-color: var(--primary-color); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.card { background-color: var(--bg-card); border-radius: var(--border-radius); border: 1px solid var(--border-color); padding: 25px; box-shadow: 0 4px 15px var(--shadow-color); }
.card:not(:last-child) { margin-bottom: 25px; }
.card h3 { font-size: 20px; margin-top: 0; margin-bottom: 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.contact-grid.has-map { grid-template-columns: 1fr 1fr; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: flex-start; margin-bottom: 20px; font-size: 16px; }
.contact-list li:last-child { margin-bottom: 0; }
.contact-list li i { width: 24px; text-align: center; color: var(--primary-color); margin-right: 15px; font-size: 18px; margin-top: 4px; }
.contact-list li div, .contact-list li a { color: var(--text-dark); text-decoration: none; word-break: break-word; }
.contact-list li a:hover { color: var(--primary-color); }
#map { height: 100%; min-height: 320px; border-radius: var(--border-radius); }
.contact-grid .map-card { padding:0; overflow:hidden; }
.contact-grid > .card:only-child { grid-column: 1 / -1; }
.form-message { padding: 15px; margin-bottom: 20px; border-radius: 8px; font-weight: 500; }
.form-message.success { background-color: #dcfce7; color: #166534; }
.form-message.error { background-color: #fee2e2; color: #b91c1c; }
.mobile-tab-nav { display: none; }

.open-status { font-size: 14px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 6px; }
.open-status.open { color: var(--color-open); background-color: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.open-status.closed { color: var(--color-closed); background-color: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); }
.open-status.claimed { color: var(--primary-color); background-color: var(--primary-light); border-color: var(--primary-color); }

.working-hours-list { list-style: none; padding: 0; margin: 0; font-size: 15px; }
.working-hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-color); }
.working-hours-list li:last-child { border-bottom: none; }
.working-hours-list li.today .day-name { font-weight: 700; color: var(--primary-color); }
.working-hours-list li .hours { font-weight: 500; }

.claim-business-container { margin-top: 25px; padding: 20px; background-color: var(--bg-sidebar); border-radius: var(--border-radius); text-align: center; font-size: 14px; }
.claim-business-container p { margin: 0 0 15px 0; color: var(--text-muted); }
.claim-business-container p a { color: var(--primary-color); font-weight: 600; }
.btn-claim-firm { background-color: var(--primary-color); color: var(--text-light); border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: opacity 0.2s; font-family: inherit; font-size: 14px; }
.btn-claim-firm:hover { opacity: 0.8; }
.claim-pending-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; padding: 8px 15px; border-radius: 8px; color: var(--color-pending); background-color: rgba(249, 115, 22, 0.1); }

@media (max-width: 992px) {
    body { padding-bottom: 80px; }
    .container { padding: 20px 15px; }
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { position: fixed; top: 0; left: 0; bottom: 0; transform: translateX(-100%); z-index: 1001; transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; width: 300px; border-radius: 0; max-height: 100vh; box-shadow: 5px 0 25px rgba(0,0,0,0.1); }
    .sidebar.is-open { transform: translateX(0); }
    .mobile-menu-toggle { display: block; }
    .desktop-only { display: none; }
    .header-right { display: flex; }
    .page-header .header-left { flex-grow: 0; }
    .page-header .header-right { flex-grow: 1; justify-content: flex-end; }
    .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
    .overlay.is-active { display: block; opacity: 1; visibility: visible; }
    .rehber-header h1 { font-size: 28px; }
    .contact-grid.has-map { grid-template-columns: 1fr; }
    .firm-profile-header { flex-direction: column; align-items: center; text-align: center; }
    .summary-stats { justify-content: center; }
    .tab-navigation { display: none; }
    .mobile-tab-nav { display: block; position: fixed; bottom: 0; left: 0; right: 0; background-color: var(--bg-card); border-top: 1px solid var(--border-color); box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; }
    .mobile-tab-nav .nav-items { display: flex; justify-content: space-around; }
    .mobile-tab-nav .nav-item { flex-grow: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 5px; font-size: 12px; color: var(--text-muted); cursor: pointer; border-top: 3px solid transparent; transition: color 0.2s, border-color 0.2s; }
    .mobile-tab-nav .nav-item i { font-size: 20px; margin-bottom: 4px; }
    .mobile-tab-nav .nav-item.active { color: var(--primary-color); border-top-color: var(--primary-color); }
}

@media (max-width: 768px) {
    .search-form { flex-direction: column; box-shadow: none; }
    .search-form input[type="text"] { border-radius: var(--border-radius); border: 1px solid var(--border-color); }
    .search-form button { border-radius: var(--border-radius); margin-top: 10px; padding: 14px; }
    .firma-grid { grid-template-columns: 1fr; }
}

body.dark-theme .mobile-menu-toggle { background: transparent; border-color: transparent; color: var(--dark-text-secondary); }
body.dark-theme .mobile-menu-toggle:hover { background-color: var(--dark-primary-light); color: var(--dark-text-primary); }

.firm-profile-container { padding-bottom: 70px; }
.mobile-tab-nav .nav-item i { width: auto; }

.custom-lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85);
    z-index: 9998; display: none; opacity: 0; transition: opacity 0.3s ease-in-out;
}
.custom-lightbox-overlay.visible { display: block; opacity: 1; }
.custom-lightbox-content {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
    width: 600px; height: 600px; max-width: 90vw; max-height: 90vh;
    z-index: 9999; display: none; opacity: 0; transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; text-align: center;
}
.custom-lightbox-content.visible { display: flex; align-items: center; justify-content: center; opacity: 1; transform: translate(-50%, -50%) scale(1); }
.custom-lightbox-content img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.custom-lightbox-close, .custom-lightbox-prev, .custom-lightbox-next {
    position: absolute; z-index: 10000; background: rgba(30, 41, 59, 0.7);
    color: white; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%;
    width: 44px; height: 44px; font-size: 20px; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: background-color 0.2s; backdrop-filter: blur(4px);
}
.custom-lightbox-close:hover, .custom-lightbox-prev:hover, .custom-lightbox-next:hover { background: rgba(0, 0, 0, 0.8); }
.custom-lightbox-close { top: 20px; right: 20px; }
.custom-lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.custom-lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }


/* === GÜNCELLEME BAŞLANGICI: YENİ DEĞERLENDİRME TASARIMI (v2) === */
.reviews-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.reviews-summary { border-right: 1px solid var(--border-color); padding-right: 40px; }
.reviews-summary h3, .review-form-container h3 { font-size: 18px; font-weight: 600; margin-top: 0; margin-bottom: 20px; }
.summary-score { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.score-value { font-size: 48px; font-weight: 800; color: var(--text-dark); }
.score-details .star-rating { font-size: 18px; }
.score-details span { font-size: 14px; color: var(--text-muted); }
.summary-bars { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: grid; grid-template-columns: 60px 1fr 30px; gap: 10px; align-items: center; font-size: 13px; color: var(--text-muted); }
.bar-count { text-align: right; font-weight: 500; }
.progress-bar { width: 100%; height: 8px; background-color: var(--bg-main); border-radius: 8px; overflow: hidden; }
.progress-bar-fill { height: 100%; background-color: var(--color-featured); border-radius: 8px; transition: width 0.5s ease-in-out; }

.summary-empty-state { text-align: center; padding: 20px 0; }
.summary-empty-state i { font-size: 48px; color: var(--primary-color); opacity: 0.5; margin-bottom: 15px; }
.summary-empty-state h4 { margin: 0 0 5px 0; font-size: 16px; font-weight: 600; }

.review-form-container { padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px solid var(--border-color); }
.form-message.with-icon { display: flex; align-items: center; gap: 10px; padding: 15px; }
.form-message.with-icon i { font-size: 20px; }

#comment-form .star-rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; margin-bottom: 20px; }
#comment-form .star-rating-input input { display: none; }
#comment-form .star-rating-input label { font-size: 32px; padding: 0 4px; color: var(--border-color); cursor: pointer; transition: transform 0.2s, color 0.2s; }
#comment-form .star-rating-input label:hover,
#comment-form .star-rating-input label:hover ~ label,
#comment-form .star-rating-input input:checked ~ label { color: var(--color-featured); }
#comment-form .star-rating-input label:hover { transform: scale(1.2); }

#comment-form textarea { background-color: var(--bg-main); color: var(--text-dark); border: 1px solid var(--border-color); padding: 15px; font-size: 15px; width: 100%; border-radius: var(--border-radius); transition: all 0.2s; }
#comment-form textarea:focus { border-color: var(--primary-color); background-color: var(--bg-card); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.btn-submit.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; font-size: 15px; }

.comment-list .review-item { padding: 25px 0; display: flex; gap: 15px; border-bottom: 1px solid var(--border-color); }
.comment-list .review-item:last-child { border-bottom: none; padding-bottom: 0; }
.comment-list .review-item:first-child { padding-top: 0; }
.review-avatar { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background-color: var(--primary-light); color: var(--primary-color); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 600; }

.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.review-author-info .review-author { margin: 0; font-weight: 600; }
.review-author-info .review-date { font-size: 12px; color: var(--text-muted); }
.review-body p { margin: 0; color: var(--text-dark); }
.text-muted { color: var(--text-muted); }

@media (max-width: 992px) {
    .reviews-layout { grid-template-columns: 1fr; gap: 30px; }
    .reviews-summary { border-right: none; padding-right: 0; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
}
/* === GÜNCELLEME SONU === */