/* trendy Review Pro - Modern SVG Icons CSS */
#review-pro-module * {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* SVG Icon Styles */
#review-pro-module .icon-svg {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}

/* Tab Navigation */
#review-pro-module .review-tabs-nav {
  display: flex;
  gap: 8px;
  margin: 24px 0;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 0;
}

#review-pro-module .tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: -2px;
}

#review-pro-module .tab-btn:hover {
  color: #F27A1A;
  background: rgba(242, 122, 26, 0.05);
}

#review-pro-module .tab-btn.active {
  color: #F27A1A;
  border-bottom-color: #F27A1A;
}

#review-pro-module .tab-btn svg {
  fill: currentColor;
}

/* Tab Sistemi */
#review-pro-module .review-tabs-container {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  border-bottom: 2px solid #f0f0f0;
}

#review-pro-module .review-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  bottom: -2px;
}

#review-pro-module .review-tab:hover {
  color: #F27A1A;
  background: rgba(242, 122, 26, 0.05);
}

#review-pro-module .review-tab.active {
  color: #F27A1A;
  border-bottom-color: #F27A1A;
}

#review-pro-module .review-tab svg {
  fill: currentColor;
  stroke: currentColor;
}

#review-pro-module .review-tab-content {
  display: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#review-pro-module .review-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

#review-pro-module #tab-questions {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sorular Bölümü - Yorumlar ile aynı stil */
#review-pro-module .questions-summary-section {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: 100%;
}

#review-pro-module .questions-summary-section .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#review-pro-module .questions-summary-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

#review-pro-module .questions-summary-section .summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

#review-pro-module .questions-summary-section .stat-box {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#review-pro-module .questions-summary-section .stat-box strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #F27A1A;
  line-height: 1;
}

#review-pro-module .questions-summary-section .stat-box span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

#review-pro-module .btn-ask-question {
  background: linear-gradient(135deg, #F27A1A 0%, #FF8A3D 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
}

#review-pro-module .btn-ask-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 122, 26, 0.4);
}

#review-pro-module .btn-ask-question svg {
  stroke: currentColor;
}

/* Soru kartları - Review kartları gibi */
#review-pro-module .trendy-review-card.question-card-style {
  width: 100%;
  max-width: 100%;
}

#review-pro-module .trendy-review-card .question-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F27A1A 0%, #FF8A3D 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

#review-pro-module .trendy-review-card .vendor-reply.official-answer {
  border-left: 3px solid #4CAF50;
  background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%);
}

#review-pro-module .trendy-review-card .views-count {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #999;
}

/* Minimal Modern Question Card Design */
#review-pro-module .question-card-style {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 220px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#review-pro-module .question-card-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F27A1A, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#review-pro-module .question-card-style:hover {
  border-color: #F27A1A;
  box-shadow: 0 8px 24px rgba(242, 122, 26, 0.15);
  transform: translateY(-4px);
}

#review-pro-module .question-card-style:hover::before {
  opacity: 1;
}

/* Header: Author + Status */
#review-pro-module .question-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
}

#review-pro-module .question-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  flex: 1;
  min-width: 0;
}

#review-pro-module .question-author-name {
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.3px;
}

#review-pro-module .question-meta-dot {
  color: #ddd;
  font-weight: 300;
}

#review-pro-module .question-date-compact {
  color: #999;
  white-space: nowrap;
  font-size: 11px;
}

#review-pro-module .question-status {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

#review-pro-module .question-status.answered {
  background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
  color: #2E7D32;
  border: 2px solid #66BB6A;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

#review-pro-module .question-status.pending {
  background: linear-gradient(135deg, #FFE0B2 0%, #FFD699 100%);
  color: #E65100;
  border: 2px solid #FFB74D;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
}

/* Question Body */
#review-pro-module .question-body {
  flex: 1;
  min-height: 0;
}

#review-pro-module .question-text {
  font-size: 13px;
  line-height: 1.65;
  color: #444;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Answer Mini Preview */
#review-pro-module .question-answer-mini {
  background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
  border-left: 3px solid #00897B;
  padding: 10px 12px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

#review-pro-module .question-answer-mini:hover {
  background: linear-gradient(135deg, #B2DFDB 0%, #80CBC4 100%);
  box-shadow: 0 2px 8px rgba(0, 137, 123, 0.15);
}

#review-pro-module .question-answer-mini .answer-text {
  font-size: 12px;
  line-height: 1.6;
  color: #00695C;
  margin: 0;
  display: block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

/* Footer: Vote Actions */
#review-pro-module .question-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #f5f5f5;
  margin-top: auto;
}

#review-pro-module .question-helpful-label {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

#review-pro-module .vote-buttons-group {
  display: flex;
  gap: 8px;
}

#review-pro-module .vote-mini {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 10px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  min-height: 36px;
  position: relative;
  overflow: hidden;
}

#review-pro-module .vote-mini::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(242, 122, 26, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

#review-pro-module .vote-mini:hover::before {
  width: 100%;
  height: 100%;
}

#review-pro-module .vote-mini:hover {
  border-color: #e0e0e0;
  background: #f5f5f5;
  color: #333;
}

#review-pro-module .vote-mini:first-child:hover {
  background: #E8F5E9;
  border-color: #66BB6A;
  color: #2E7D32;
}

#review-pro-module .vote-mini:last-child:hover {
  background: #FFEBEE;
  border-color: #EF5350;
  color: #C62828;
}

#review-pro-module .vote-mini.active {
  font-weight: 700;
  z-index: 1;
}

#review-pro-module .vote-mini:first-child.active {
  background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
  border-color: #2E7D32;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

#review-pro-module .vote-mini:last-child.active {
  background: linear-gradient(135deg, #EF5350 0%, #E53935 100%);
  border-color: #B71C1C;
  color: white;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

#review-pro-module .vote-mini svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: all 0.3s ease;
}

#review-pro-module .vote-mini:hover svg {
  transform: scale(1.1);
}

#review-pro-module .vote-mini.active svg {
  filter: brightness(1.2);
}

#review-pro-module .vote-mini span {
  font-size: 12px;
  min-width: 16px;
  text-align: center;
}

/* Sorular Bölümü */
#review-pro-module .questions-header {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#review-pro-module .questions-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

#review-pro-module .questions-header .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

#review-pro-module .questions-header .title-icon {
  stroke: #F27A1A;
  fill: none;
}

#review-pro-module .questions-header .question-count {
  background: #F27A1A;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}

#review-pro-module .questions-header .section-desc {
  color: #666;
  font-size: 14px;
  margin: 0;
}

#review-pro-module .btn-ask-question {
  background: linear-gradient(135deg, #F27A1A 0%, #FF8A3D 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
}

#review-pro-module .btn-ask-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 122, 26, 0.4);
}

#review-pro-module .btn-ask-question svg {
  stroke: currentColor;
}

#review-pro-module .stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

#review-pro-module .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

#review-pro-module .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#review-pro-module .stat-icon svg {
  stroke: white;
  fill: none;
}

#review-pro-module .stat-total {
  background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
}

#review-pro-module .stat-answered {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

#review-pro-module .stat-pending {
  background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

#review-pro-module .stat-text strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

#review-pro-module .stat-text span {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  display: block;
}

/* Filtreler */
#review-pro-module .filters-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#review-pro-module .filter-tabs {
  display: flex;
  gap: 8px;
}

#review-pro-module .btn-check {
  display: none;
}

#review-pro-module .filter-tab {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#review-pro-module .filter-tab:hover {
  border-color: #F27A1A;
  color: #F27A1A;
}

#review-pro-module .btn-check:checked + .filter-tab {
  background: #F27A1A;
  border-color: #F27A1A;
  color: white;
}

#review-pro-module .sort-select {
  padding: 10px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

#review-pro-module .sort-select:focus {
  outline: none;
  border-color: #F27A1A;
}

/* Sorular Listesi */
#review-pro-module .questions-list,
#review-pro-module #questions-list-container {
  #min-height: 300px;
  width: 100%;
  max-width: 100%;
}

#review-pro-module .trendy-reviews-list {
  width: 100%;
  max-width: 100%;
}

#review-pro-module #tab-questions .trendy-reviews-list {
  padding: 0;
  margin: 0;
}

#review-pro-module #tab-questions .trendy-reviews-list.slider-mode {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: auto;
  align-items: stretch;
}

#review-pro-module #tab-questions .trendy-reviews-list.slider-mode::-webkit-scrollbar {
  display: none;
}

#review-pro-module .question-card-style {
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

#review-pro-module .question-card-style > :not(.card-actions):not(.question-header) {
  flex-shrink: 0;
}

#review-pro-module .question-card-style:hover {
  border-color: #F27A1A;
  box-shadow: 0 4px 16px rgba(242, 122, 26, 0.12);
  transform: translateY(-2px);
}

#review-pro-module #tab-questions .slider-mode .question-card-style {
  flex: 0 0 auto;
  min-width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  margin-bottom: 0;
}

#review-pro-module .questions-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}

#review-pro-module .questions-loading .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #F27A1A;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#review-pro-module .question-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

#review-pro-module .question-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

#review-pro-module .user-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F27A1A 0%, #FF8A3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#review-pro-module .user-badge svg {
  stroke: white;
  fill: none;
}

#review-pro-module .user-info {
  flex: 1;
}

#review-pro-module .user-name {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 4px;
}

#review-pro-module .question-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #999;
}

#review-pro-module .question-meta svg {
  stroke: currentColor;
  fill: none;
}

#review-pro-module .question-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

#review-pro-module .answers-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

#review-pro-module .answer-item {
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-left: 3px solid #e0e0e0;
}

#review-pro-module .answer-item:last-child {
  margin-bottom: 0;
}

#review-pro-module .answer-item.official {
  border-left-color: #4CAF50;
  background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%);
}

#review-pro-module .answer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

#review-pro-module .answer-header strong {
  color: #333;
  font-size: 14px;
}

#review-pro-module .official-badge {
  background: #4CAF50;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

#review-pro-module .answer-date {
  font-size: 12px;
  color: #999;
  margin-left: auto;
}

#review-pro-module .answer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

#review-pro-module .question-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

#review-pro-module .views-count {
  font-size: 13px;
  color: #999;
  margin-left: auto;
}

/* Soru Modal */
/* Modal açıldığında body scroll'ı durdur */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.question-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999 !important;
  align-items: center;
  justify-content: center;
}

.question-modal[style*="display: flex"],
.question-modal[style*="display: flex"] {
  display: flex !important;
}

.question-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 99998;
}

.question-modal-content {
  position: fixed;
  background: white;
  border-radius: 12px;
  max-width: 500px;
  z-index: 99999 !important;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: modalSlideIn 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.question-modal-body .form-group-modern {
  margin-bottom: 20px;
  width: 100%;
}

.question-modal-body .form-group-modern:last-of-type {
  margin-bottom: 0;
}

.question-modal .form-input-modern,
.question-modal .form-textarea-modern {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.question-modal .form-input-modern:focus,
.question-modal .form-textarea-modern:focus {
  outline: none;
  border-color: #F27A1A;
}

.question-modal .form-label-modern {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.question-modal .char-counter {
  text-align: right;
  font-size: 11px;
  color: #999;
  margin-top: 3px;
}

.question-modal .privacy-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;\n  background: #f0f9ff;
  border-radius: 6px;
  font-size: 11px;
  color: #666;
  margin-top: 12px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.question-modal-header,
.question-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #e5e5e5;
  background: #fafbfc;
}

.question-modal-header h3,
.question-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
  align-items: center;
  gap: 10px;
}

#review-pro-module .question-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.question-modal-close,
.question-modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  color: #999;
}

.question-modal-close:hover,
.question-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.question-modal-close svg,
.question-modal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.question-modal-body,
.question-modal-body {
  padding: 16px 18px;
  background: white;
}

.question-modal-body .form-group-modern,
.question-modal-body .form-group-modern {
  margin-bottom: 20px;
  width: 100%;
}

.question-modal-footer,
.question-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 18px;
  border-top: 1px solid #e5e5e5;
  background: #fafbfc;
  border-radius: 0 0 12px 12px;
}

.question-modal-footer .btn-cancel,
.question-modal-footer .btn-cancel {
  padding: 8px 14px;
  background: white;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-modal-footer .btn-cancel:hover,
.question-modal-footer .btn-cancel:hover {
  border-color: #999;
  color: #333;
  background: #f5f5f5;
}

.question-modal-footer .btn-submit,
.question-modal-footer .btn-submit {
  padding: 8px 16px;
  background: linear-gradient(135deg, #F27A1A 0%, #FF8A3D 100%);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(242, 122, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
  justify-content: center;
  gap: 8px;
}

#review-pro-module .question-modal-footer .btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 122, 26, 0.4);
}

#review-pro-module .question-modal-footer .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#review-pro-module .btn-loader {
  display: none;
}

/* SVG Icon Styles */
#review-pro-module .icon-svg {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}

#review-pro-module .icon-star {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

#review-pro-module .rating-stars-display .icon-star {
  width: 28px;
  height: 28px;
  margin: 0 2px;
  transition: transform 0.2s ease;
}

#review-pro-module .rating-stars-display .icon-star:hover {
  transform: scale(1.1) rotate(5deg);
}

#review-pro-module .chip-btn .icon-svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  fill: currentColor;
}

#review-pro-module .icon-thumb {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

#review-pro-module .icon-check {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Toast Notification System - Global */
#review-pro-module .toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

#review-pro-module .toast {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(450px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid #4CAF50;
  min-width: 300px;
}

#review-pro-module .toast.show {
  transform: translateX(0);
  opacity: 1;
}

#review-pro-module .toast-success {
  border-left-color: #4CAF50;
  background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%);
}

#review-pro-module .toast-error {
  border-left-color: #F44336;
  background: linear-gradient(135deg, #FFEBEE 0%, #fff 100%);
}

#review-pro-module .toast-info {
  border-left-color: #2196F3;
  background: linear-gradient(135deg, #E3F2FD 0%, #fff 100%);
}

#review-pro-module .toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

#review-pro-module .toast-success .toast-icon {
  background: #4CAF50;
  color: #fff;
}

#review-pro-module .toast-error .toast-icon {
  background: #F44336;
  color: #fff;
}

#review-pro-module .toast-info .toast-icon {
  background: #2196F3;
  color: #fff;
}

#review-pro-module .toast-message {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

#review-pro-module .toast-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 50%;
}

#review-pro-module .toast-close:hover {
  background: rgba(0,0,0,0.05);
  color: #333;
}

@media (max-width: 768px) {
  .toast-container {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .toast {
    min-width: auto;
  }
}

#review-pro-module.review-pro-wrapper {
  padding: 24px 0;
  background: #fff;
}

#review-pro-module .review-main-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* Summary Card - Professional Design with Better Visibility */
#review-pro-module .trendy-summary-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}

#review-pro-module .summary-left {
  flex-shrink: 0;
  text-align: center;
  padding-right: 24px;
  border-right: 2px solid #e5e7eb;
}

#review-pro-module .big-rating {
  font-size: 48px;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: none;
  letter-spacing: -1px;
}

#review-pro-module .rating-stars-display {
  font-size: 18px;
  color: #f59e0b;
  margin-bottom: 8px;
  filter: none;
}

#review-pro-module .rating-stars-display i {
  margin: 0 2px;
}

#review-pro-module .rating-stars-display i.empty {
  color: #d1d5db;
}

#review-pro-module .total-text {
  font-size: 15px;
  color: #374151;
  margin-bottom: 4px;
  font-weight: 600;
}

#review-pro-module .comment-count {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

#review-pro-module .summary-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

#review-pro-module .bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

#review-pro-module .star-count {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  min-width: 20px;
}

#review-pro-module .bar-container {
  flex: 1;
  height: 12px;
  background: #E8E8E8;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#review-pro-module .bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #FF8A3D 0%, #F27A1A 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(242, 122, 26, 0.4);
}

/* Filtre Butonları - Chip Style */
#review-pro-module .trendy-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
}

#review-pro-module .chip-btn {
  padding: 6px 14px;
  border: 1.5px solid #E0E0E0;
  background: #fff;
  border-radius: 24px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#review-pro-module .chip-btn i {
  font-size: 11px;
  color: #F27A1A;
}

#review-pro-module .chip-btn:hover {
  border-color: #F27A1A;
  color: #F27A1A;
  background: #FFF9F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(242, 122, 26, 0.2);
}

#review-pro-module .chip-btn.active {
  background: linear-gradient(135deg, #FF8A3D 0%, #F27A1A 100%);
  border-color: #F27A1A;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.4);
  transform: translateY(-2px);
}

#review-pro-module .chip-btn.active i {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Yorum Kartları - Professional Clean Style */
#review-pro-module .trendy-reviews-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
}

#review-pro-module .trendy-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#review-pro-module .trendy-reviews-list.slider-mode {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#review-pro-module .trendy-reviews-list.slider-mode::-webkit-scrollbar {
  display: none;
}

#review-pro-module .trendy-reviews-list.slider-mode .trendy-review-card {
  min-width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  flex-shrink: 0;
  margin-bottom: 0;
}

#review-pro-module .slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

#review-pro-module .trendy-reviews-wrapper:hover .slider-nav-btn {
  opacity: 1;
  pointer-events: auto;
}

#review-pro-module #tab-questions .slider-nav-btn {
  display: flex !important;
}

#review-pro-module #tab-questions .slider-nav-btn.prev-btn {
  left: 0;
}

#review-pro-module #tab-questions .slider-nav-btn.next-btn {
  right: 0;
}

#review-pro-module .slider-nav-btn:hover {
  background: #F27A1A;
  border-color: #F27A1A;
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
}

#review-pro-module .slider-nav-btn:hover svg {
  fill: white;
}

#review-pro-module .slider-nav-btn.prev-btn {
  left: 0;
}

#review-pro-module .slider-nav-btn.next-btn {
  right: 0;
}

#review-pro-module .slider-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: #666;
  transition: fill 0.3s ease;
}

#review-pro-module .trendy-review-card {
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 10px 11px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 0;
}

#review-pro-module .trendy-review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: #e0e0e0;
  transform: translateY(-2px);
}

#review-pro-module .card-top {
  margin-bottom: 6px;
}

#review-pro-module .stars-row {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

#review-pro-module .stars-row .icon-star {
  width: 14px;
  height: 14px;
}

#review-pro-module .stars-row i {
  font-size: 14px;
  color: #FFB800;
}

#review-pro-module .stars-row i.empty {
  color: #e5e5e5;
}

#review-pro-module .user-line {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #888;
  flex-wrap: wrap;
}

#review-pro-module .user-id {
  font-weight: 600;
  color: #333;
  font-size: 12px;
}

#review-pro-module .dot {
  color: #ccc;
  font-weight: bold;
}

#review-pro-module .date-text {
  color: #999;
  font-size: 11px;
}

#review-pro-module .meta-line {
  margin-bottom: 6px;
}

#review-pro-module .meta-item {
  display: inline-block;
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

#review-pro-module .comment-text {
  line-height: 1.4;
  color: #555;
  margin-bottom: 6px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#review-pro-module .images-row {
  display: flex;
  gap: 5px;
  margin: 6px 0;
  flex-wrap: wrap;
}

#review-pro-module .img-box {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

#review-pro-module .img-box:hover {
  border-color: #F27A1A;
  transform: scale(1.05);
}

#review-pro-module .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#review-pro-module .img-box:hover img {
  transform: scale(1.05);
}

#review-pro-module .vendor-reply {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-left: 3px solid #667eea;
  border-radius: 6px;
  padding: 8px 10px;
  margin: 6px 0 0 0;
  font-size: 11px;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.08);
}

#review-pro-module .vendor-reply .reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.15);
  font-size: 10px;
}

#review-pro-module .vendor-reply .reply-header strong {
  color: #667eea;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

#review-pro-module .vendor-reply .reply-header .reply-date {
  color: #999;
  font-size: 12px;
}

#review-pro-module .vendor-reply strong {
  color: #333;
}

#review-pro-module .vendor-reply p {
  margin: 0;
  color: #555;
  line-height: 1.4;
  font-size: 11px;
}

#review-pro-module .card-actions {
  display: flex;
  gap: 5px;
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid #f5f5f5;
  flex-wrap: wrap;
}

#review-pro-module .action-btn {
  padding: 4px 8px;
  border: none;
  background: #f8f8f8;
  border-radius: 4px;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  min-width: auto;
}

#review-pro-module .action-btn i {
  font-size: 10px;
}

#review-pro-module .action-btn:hover {
  background: #F27A1A;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(242, 122, 26, 0.25);
}

#review-pro-module .action-btn.active {
  background: #F27A1A;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(242, 122, 26, 0.3);
}

#review-pro-module .report-btn {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #999;
  padding: 4px 6px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#review-pro-module .report-btn-small {
  padding: 4px 6px;
  min-width: auto;
  font-size: 10px;
}

#review-pro-module .report-btn:hover {
  background: transparent;
  border: none;
  color: #ff9800;
  transform: translateY(-1px);
}

/* Vote butonları - minimal ve modern */
#review-pro-module .vote-btn {
  padding: 4px 8px;
  border: none;
  background: #f8f8f8;
  border-radius: 4px;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  min-width: auto;
}

#review-pro-module .vote-btn:hover {
  background: #e8e8e8;
  color: #333;
  transform: translateY(-1px);
}

#review-pro-module .vote-btn .icon-svg {
  fill: #666;
  transition: fill 0.3s ease;
}

#review-pro-module .vote-btn:hover .icon-svg {
  fill: #333;
}

/* Beğen butonu aktif */
#review-pro-module .vote-btn:first-of-type.active {
  background: #4CAF50;
  color: white;
  font-weight: 600;
}

#review-pro-module .vote-btn:first-of-type.active .icon-svg {
  fill: white;
}

#review-pro-module .vote-btn:first-of-type:hover {
  background: #4CAF50;
  color: white;
}

#review-pro-module .vote-btn:first-of-type:hover .icon-svg {
  fill: white;
}

/* Beğenmeme butonu aktif */
#review-pro-module .vote-btn:nth-of-type(2).active {
  background: #f44336;
  color: white;
  font-weight: 600;
}

#review-pro-module .vote-btn:nth-of-type(2).active .icon-svg {
  fill: white;
}

#review-pro-module .vote-btn:nth-of-type(2):hover {
  background: #f44336;
  color: white;
}

#review-pro-module .vote-btn:nth-of-type(2):hover .icon-svg {
  fill: white;
}

/* Image Popup Modal */
.image-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-popup-modal .popup-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.image-popup-modal .close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
}

.image-popup-modal .close-popup:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

#review-pro-module .report-btn:hover {
  border-color: #ff9800;
  color: #ff9800;
  background: #fff8f0;
}

/* Loading Spinner */
#review-pro-module .reviews-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}

#review-pro-module .reviews-loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #F27A1A;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#review-pro-module .reviews-loading p {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Tüm Yorumları Göster Butonu */
#review-pro-module .show-all-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 32px auto;
  padding: 16px 32px;
  border: 2px solid #F27A1A;
  background: linear-gradient(135deg, #FF8A3D 0%, #F27A1A 100%);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
}

#review-pro-module .show-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 122, 26, 0.4);
  background: linear-gradient(135deg, #FF9D5C 0%, #FF8A3D 100%);
}

#review-pro-module .show-all-btn i {
  margin-left: 8px;
  font-size: 14px;
}

/* Pagination */
#review-pro-module .review-pagination {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}

#review-pro-module .review-pagination .pagination {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#review-pro-module .review-pagination .page-item {
  list-style: none;
}

#review-pro-module .review-pagination .page-link {
  padding: 6px 10px;
  border: 1px solid #E0E0E0;
  background: #fff;
  color: #666;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
  min-width: 32px;
  text-align: center;
}

#review-pro-module .review-pagination .page-link:hover {
  border-color: #F27A1A;
  color: #F27A1A;
}

#review-pro-module .review-pagination .page-item.active .page-link {
  background: #F27A1A;
  border-color: #F27A1A;
  color: #fff;
}

#review-pro-module .review-pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Empty State */
#review-pro-module .empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

#review-pro-module .empty-state p {
  font-size: 14px;
  margin: 0;
}

/* Image Popup Modal */
#review-pro-module .image-popup-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#review-pro-module .image-popup-modal.active {
  display: flex !important;
}

#review-pro-module .popup-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  cursor: default;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#review-pro-module .close-popup {
  position: absolute;
  top: 20px;
  right: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#review-pro-module .close-popup:hover {
  background: #F27A1A;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.4);
}

#review-pro-module .close-popup .icon-svg {
  transition: all 0.3s ease;
}

/* Responsive */
/* Responsive Slider Tasarımı */
@media (max-width: 992px) {
  #review-pro-module .trendy-reviews-list.slider-mode .trendy-review-card {
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  
  #review-pro-module #tab-questions .slider-mode .question-card-style {
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  
  #review-pro-module .slider-nav-btn.prev-btn {
    left: -15px;
  }
  
  #review-pro-module .slider-nav-btn.next-btn {
    right: -15px;
  }
}

@media (max-width: 768px) {
  #review-pro-module .question-card-style {
    padding: 8px;
    margin-bottom: 8px;
    gap: 6px;
    border-radius: 8px;
    min-height: auto;
  }

  #review-pro-module .question-text {
    font-size: 11px;
    margin-bottom: 6px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  #review-pro-module .question-avatar {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  #review-pro-module .question-avatar svg {
    width: 12px;
    height: 12px;
  }

  #review-pro-module .question-author {
    font-size: 10px;
    margin-bottom: 1px;
  }

  #review-pro-module .question-date {
    font-size: 10px;
  }

  #review-pro-module .question-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    min-width: 0;
  }

  #review-pro-module .answer-section {
    padding: 6px 8px;
    font-size: 10px;
    margin: 6px 0 0 0;
  }

  #review-pro-module .question-author-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  #review-pro-module .question-footer {
    padding-top: 6px;
    margin-left: 0;
  }

  #review-pro-module .question-helpful .btn-helpful {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
  }

  #review-pro-module #tab-questions .slider-mode .question-card-style {
    min-width: calc(100% - 12px);
    max-width: calc(100% - 12px);
  }

  #review-pro-module #tab-questions .trendy-reviews-list.slider-mode {
    gap: 12px;
    padding: 8px 4px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .trendy-summary-card {
    flex-direction: column;
    gap: 24px;
  }
  
  .summary-left {
    border-right: none;
    border-bottom: 1px solid #E8E8E8;
    padding-right: 0;
    padding-bottom: 20px;
  }
  
  .big-rating {
    font-size: 52px;
  }
  
  .trendy-filters {
    gap: 6px;
  }
  
  .chip-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .trendy-review-card {
    padding: 16px;
  }
  
  .images-row {
    gap: 6px;
  }
  
  .img-box {
    width: 70px;
    height: 70px;
  }
  
  /* Mobilde tek kart */
  #review-pro-module .trendy-reviews-list.slider-mode .trendy-review-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  #review-pro-module #tab-questions .slider-mode .question-card-style {
    min-width: 100%;
    max-width: 100%;
  }
  
  #review-pro-module .slider-nav-btn {
    width: 36px;
    height: 36px;
  }
  
  #review-pro-module .slider-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  
  #review-pro-module .slider-nav-btn.prev-btn {
    left: 5px;
  }
  
  #review-pro-module .slider-nav-btn.next-btn {
    right: 5px;
  }
  
  #review-pro-module .comment-text {
    -webkit-line-clamp: 2;
    line-height: 1.5;
  }
}

/* ============================================
   YORUM YAZMA FORMU - MODERN & PROFESYONEL
   ============================================ */

#review-pro-module .write-review-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #E8E8E8;
}

#review-pro-module .section-header {
  margin-bottom: 24px;
  text-align: center;
}

#review-pro-module .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#review-pro-module .section-title i {
  color: #F27A1A;
  font-size: 22px;
}

#review-pro-module .section-subtitle {
  font-size: 15px;
  color: #666;
  margin: 0;
}

#review-pro-module .modern-review-form {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Puanlama Bölümü */
#review-pro-module .rating-section {
  margin-bottom: 20px;
  text-align: center;
  padding: 16px;
  background: #FFF9F2;
  border-radius: 10px;
}

#review-pro-module .form-label-modern {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  text-align: left;
}

#review-pro-module .label-icon {
  font-size: 20px;
  margin-right: 8px;
}

#review-pro-module .required {
  color: #FF4444;
  font-weight: 700;
  margin-left: 4px;
}

#review-pro-module .optional {
  color: #999;
  font-weight: 400;
  font-size: 13px;
  margin-left: 8px;
}

/* Button and Action Icon Styles */
#review-pro-module .action-btn .icon-svg,
#review-pro-module .chip-btn .icon-svg,
#review-pro-module .page-link .icon-svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

#review-pro-module .action-btn:hover .icon-svg {
  transform: scale(1.1);
}

#review-pro-module .chip-btn.active .icon-svg {
  /* fill: #F27A1A; */
}

#review-pro-module .star-rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 12px;
  margin-bottom: 12px;
}

#review-pro-module .star-rating-input input {
  display: none;
}

#review-pro-module .star-rating-input label {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#review-pro-module .star-rating-input .icon-star-large {
  width: 40px;
  height: 40px;
  fill: #D0D0D0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
  transition: all 0.3s ease;
}

#review-pro-module .star-rating-input label:hover .icon-star-large,
#review-pro-module .star-rating-input label:hover ~ label .icon-star-large {
  fill: #FF8A3D;
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 6px 12px rgba(255, 138, 61, 0.4));
}

#review-pro-module .star-rating-input input:checked ~ label .icon-star-large,
#review-pro-module .star-rating-input label.selected .icon-star-large {
  fill: #FFB800 !important;
  transform: scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(255, 184, 0, 0.5));
  animation: starPulse 0.6s ease;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1.08); }
  50% { transform: scale(1.18); }
}

#review-pro-module .rating-feedback {
  min-height: 30px;
}

#review-pro-module .rating-text {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Grupları */
#review-pro-module .form-group-modern {
  margin-bottom: 28px;
  position: relative;
}

#review-pro-module .form-input-modern,
#review-pro-module .form-textarea-modern {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  background: #fff;
  font-family: inherit;
}

#review-pro-module .form-input-modern:focus,
#review-pro-module .form-textarea-modern:focus {
  outline: none;
  border-color: #F27A1A;
  box-shadow: 0 0 0 4px rgba(242, 122, 26, 0.1);
  background: #FFF;
}

#review-pro-module .form-textarea-modern {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

#review-pro-module .char-counter {
  position: absolute;
  right: 12px;
  bottom: -24px;
  font-size: 13px;
  color: #999;
}

#review-pro-module .char-counter .current {
  color: #F27A1A;
  font-weight: 600;
}

/* Yardımcı İpuçları */
#review-pro-module .form-tips {
  margin-top: 32px;
  padding: 16px;
  background: #F0F8FF;
  border-left: 4px solid #2196F3;
  border-radius: 8px;
}

#review-pro-module .tip-item {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#review-pro-module .tip-item:last-child {
  margin-bottom: 0;
}

#review-pro-module .tip-item i {
  color: #2196F3;
  font-size: 16px;
}

/* Fotoğraf Yükleme */
#review-pro-module .photo-upload-zone {
  margin-top: 12px;
}

#review-pro-module .upload-trigger {
  display: block;
  padding: 32px;
  border: 3px dashed #DEDEDE;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #FAFAFA;
}

#review-pro-module .upload-trigger:hover {
  border-color: #F27A1A;
  background: #FFF9F2;
  transform: translateY(-2px);
}

#review-pro-module .upload-icon {
  font-size: 48px;
  color: #F27A1A;
  margin-bottom: 16px;
}

#review-pro-module .upload-text {
  margin-bottom: 12px;
}

#review-pro-module .upload-text strong {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}

#review-pro-module .upload-text span {
  font-size: 14px;
  color: #666;
}

#review-pro-module .upload-limit {
  font-size: 13px;
  color: #999;
}

/* Upload Progress Bar */
#review-pro-module .upload-progress {
  margin-top: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
}

#review-pro-module .progress-bar-container {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

#review-pro-module .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #F27A1A 0%, #FF8A3D 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

#review-pro-module .progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

#review-pro-module .progress-text #progress-percent {
  font-weight: 600;
  color: #F27A1A;
}

#review-pro-module .progress-text #progress-status {
  color: #666;
}

#review-pro-module .photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

#review-pro-module .preview-photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E8E8E8;
  background: #F5F5F5;
}

#review-pro-module .preview-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#review-pro-module .remove-photo {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

#review-pro-module .remove-photo:hover {
  background: #F27A1A;
  transform: scale(1.1);
}

#review-pro-module .photo-index {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
}

/* Misafir Bilgileri */
#review-pro-module .guest-info-section {
  padding: 24px;
  background: #F9F9F9;
  border-radius: 12px;
  margin-bottom: 28px;
}

/* Form Footer */
#review-pro-module .form-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #F0F0F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#review-pro-module .privacy-notice {
  flex: 1;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #F0F8FF;
  border-radius: 8px;
}

#review-pro-module .privacy-notice i {
  color: #2196F3;
  font-size: 18px;
}

#review-pro-module .submit-review-btn {
  padding: 16px 40px;
  background: linear-gradient(135deg, #F27A1A 0%, #FF8C42 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(242, 122, 26, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#review-pro-module .submit-review-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(242, 122, 26, 0.5);
  background: linear-gradient(135deg, #FF8C42 0%, #F27A1A 100%);
}

#review-pro-module .submit-review-btn:active {
  transform: translateY(-1px);
}

#review-pro-module .submit-review-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#review-pro-module .btn-icon {
  font-size: 18px;
}

/* Login Prompt */
#review-pro-module .login-prompt {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #F9F9F9 0%, #FFFFFF 100%);
  border-radius: 16px;
  border: 2px dashed #DEDEDE;
}

#review-pro-module .prompt-icon {
  font-size: 64px;
  color: #F27A1A;
  margin-bottom: 20px;
}

#review-pro-module .login-prompt h4 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

#review-pro-module .login-prompt p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

#review-pro-module .login-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #F27A1A;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
}

#review-pro-module .login-btn:hover {
  background: #FF8C42;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 122, 26, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Responsive Form */
@media (max-width: 768px) {
  .modern-review-form {
    padding: 24px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .star-rating-input label {
    font-size: 36px;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .submit-review-btn {
    width: 100%;
    justify-content: center;
  }
  
  .privacy-notice {
    text-align: center;
  }
  
  .photo-preview-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

#review-pro-module .average-rating {
  padding: 24px;
  text-align: center;
}

#review-pro-module .rating-number {
  font-size: 80px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8533 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(255, 96, 0, 0.2);
}

#review-pro-module .rating-stars {
  font-size: 28px;
  color: var(--primary-orange);
  margin-bottom: 12px;
  letter-spacing: 4px;
}

#review-pro-module .rating-stars i {
  margin: 0 3px;
  filter: drop-shadow(0 2px 4px rgba(255, 96, 0, 0.3));
}

#review-pro-module .rating-text {
  font-size: 15px;
  color: var(--text-gray);
  font-weight: 500;
}

#review-pro-module .rating-distribution {
  padding: 20px 0;
}

#review-pro-module .rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

#review-pro-module .rating-row:hover {
  transform: translateX(4px);
}

#review-pro-module .rating-label {
  width: 80px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

#review-pro-module .rating-label i {
  color: var(--primary-orange);
  font-size: 14px;
}

#review-pro-module .rating-bar {
  flex: 1;
  height: 10px;
  background: var(--background-light);
  border-radius: 12px;
  margin: 0 20px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

#review-pro-module .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange) 0%, #FF8533 100%);
  border-radius: 12px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#review-pro-module .bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

#review-pro-module .rating-count {
  min-width: 60px;
  text-align: right;
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 600;
}

/* Filtreler - Modern Chip Style */
#review-pro-module .review-filters {
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

#review-pro-module .filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

#review-pro-module .filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  background: #fff;
  border-radius: 50px;
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

#review-pro-module .filter-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 96, 0, 0.2);
}

#review-pro-module .filter-btn.active {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FF7A1F 100%);
  border-color: var(--primary-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 96, 0, 0.4);
  transform: translateY(-2px);
}

#review-pro-module .filter-btn i {
  font-size: 16px;
}

#review-pro-module .sort-dropdown {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

#review-pro-module .sort-dropdown label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 12px;
}

#review-pro-module .sort-dropdown select {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  min-width: 200px;
}

/* Yorum Listesi */
#review-pro-module .review-list {
  margin-bottom: 20px;
}

#review-pro-module .review-item {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

#review-pro-module .sort-dropdown select:hover {
  border-color: var(--primary-orange);
}

#review-pro-module .sort-dropdown select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 96, 0, 0.1);
}

/* Yorum Listesi */
#review-pro-module .review-list {
  margin-bottom: 32px;
}

/* Yorum Kartları - Modern Card Design */
#review-pro-module .review-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#review-pro-module .review-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-orange) 0%, #FF8533 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#review-pro-module .review-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-orange);
}

#review-pro-module .review-item:hover::before {
  opacity: 1;
}

#review-pro-module .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

#review-pro-module .reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

#review-pro-module .reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8533 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
  position: relative;
}

#review-pro-module .reviewer-avatar::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8533 100%);
  z-index: -1;
  opacity: 0.2;
}

#review-pro-module .reviewer-details {
  flex: 1;
}

#review-pro-module .reviewer-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

#review-pro-module .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--verified-color);
  background: #E8F5E9;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

#review-pro-module .verified-badge i {
  font-size: 14px;
}

#review-pro-module .review-date {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

#review-pro-module .review-rating {
  color: var(--primary-orange);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

#review-pro-module .review-rating i {
  filter: drop-shadow(0 2px 4px rgba(255, 96, 0, 0.3));
}

#review-pro-module .review-content {
  margin-bottom: 20px;
}

#review-pro-module .review-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

#review-pro-module .review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* Yorum Resimleri - Gallery Style */
#review-pro-module .review-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

#review-pro-module .review-image {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border-color);
  position: relative;
}

#review-pro-module .review-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 96, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

#review-pro-module .review-image:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

#review-pro-module .review-image:hover::before {
  opacity: 1;
}

#review-pro-module .review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#review-pro-module .review-image:hover img {
  transform: scale(1.1);
}

/* Satıcı Cevabı - Modern Reply Box */
#review-pro-module .seller-reply {
  background: linear-gradient(135deg, #FFF5EF 0%, #FFF8F4 100%);
  border-left: 4px solid var(--primary-orange);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: inset 0 2px 8px rgba(255, 96, 0, 0.08);
}

#review-pro-module .reply-header {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#review-pro-module .reply-header i {
  font-size: 16px;
}

#review-pro-module .reply-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 10px;
}

#review-pro-module .reply-date {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Yardımcı Oldu Mu - Modern Action Buttons */
#review-pro-module .review-actions {
  border-top: 2px solid var(--background-light);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#review-pro-module .helpful-question {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

#review-pro-module .helpful-buttons {
  display: flex;
  gap: 12px;
}

#review-pro-module .helpful-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: #fff;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

#review-pro-module .helpful-btn:hover:not(.disabled) {
  border-color: #007bff;
  color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

#review-pro-module .helpful-btn.voted,
#review-pro-module .helpful-btn.active {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

#review-pro-module .unhelpful-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: #fff;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

#review-pro-module .unhelpful-btn:hover:not(.disabled) {
  border-color: #dc3545;
  color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

#review-pro-module .unhelpful-btn.voted,
#review-pro-module .unhelpful-btn.active {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-color: #dc3545;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

#review-pro-module .helpful-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#review-pro-module .vote-count {
  color: #999;
  font-size: 12px;
}

/* Yorum Yok */
#review-pro-module .no-reviews {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

#review-pro-module .no-reviews i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 16px;
}

#review-pro-module .no-reviews p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Yorum Yazma Formu */
#review-pro-module .write-review-section {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px;
  margin-top: 30px;
}

#review-pro-module .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff6000;
}

#review-pro-module .review-form .form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

#review-pro-module .review-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

#review-pro-module .review-form .form-control:focus {
  outline: none;
  border-color: #ff6000;
}

/* Rating Input */
#review-pro-module .rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

#review-pro-module .rating-input input[type="radio"] {
  display: none;
}

#review-pro-module .rating-input label {
  font-size: 32px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

#review-pro-module .rating-input label:hover,
#review-pro-module .rating-input label.hover,
#review-pro-module .rating-input input[type="radio"]:checked ~ label {
  color: #ff6000;
}

/* Resim Yükleme - Drag & Drop Style */
#review-pro-module .image-upload-area {
  border: 3px dashed var(--border-color);
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

#review-pro-module .image-upload-area:hover {
  border-color: var(--primary-orange);
  background: var(--primary-orange-light);
  transform: translateY(-2px);
}

#review-pro-module .upload-placeholder i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 12px;
}

/* Responsive: Tab ve Soru Sistemi */
@media (max-width: 768px) {
  #review-pro-module .review-tabs-container {
    gap: 8px;
  }
  
  #review-pro-module .review-tab {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  #review-pro-module .questions-summary-section .summary-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  #review-pro-module .btn-ask-question {
    width: 100%;
    justify-content: center;
  }
  
  #review-pro-module .questions-summary-section .summary-stats {
    grid-template-columns: 1fr;
  }
  
  .question-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .question-modal-body {
    padding: 16px;
  }
  
  #review-pro-module .question-modal-footer {
    padding: 16px;
    flex-wrap: wrap;
  }
  
  #review-pro-module .question-modal-footer .btn-cancel,
  #review-pro-module .question-modal-footer .btn-submit {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  #review-pro-module .review-main-title {
    font-size: 20px;
  }
  
  #review-pro-module .review-tabs-container {
    gap: 4px;
  }
  
  #review-pro-module .review-tab {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  #review-pro-module .questions-summary-section {
    padding: 16px;
  }
  
  #review-pro-module .questions-summary-section h3 {
    font-size: 18px;
  }
  
  #review-pro-module .stat-box strong {
    font-size: 24px;
  }
  
  #review-pro-module .question-modal-header {
    padding: 16px;
  }
  
  #review-pro-module .question-modal-header h3 {
    font-size: 16px;
  }
}



/* Tab ve Sorular için Responsive CSS */
@media (max-width: 768px) {
  #review-pro-module .review-tabs-container {
    flex-direction: column;
    gap: 8px;
  }
  
  #review-pro-module .review-tab {
    justify-content: center;
    width: 100%;
  }
  
  #review-pro-module .questions-header .header-content {
    flex-direction: column;
    gap: 16px;
  }
  
  #review-pro-module .btn-ask-question {
    width: 100%;
    justify-content: center;
  }
  
  #review-pro-module .stats-row {
    grid-template-columns: 1fr;
  }
  
  #review-pro-module .filters-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  #review-pro-module .filter-tabs {
    flex-wrap: wrap;
  }
  
  #review-pro-module .sort-select {
    width: 100%;
  }
  
  .question-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .question-modal-header {
    padding: 16px;
  }
  
  .question-modal-body {
    padding: 16px;
  }
  
  .question-modal-footer {
    padding: 16px;
    flex-direction: column-reverse;
  }
  
  .question-modal-footer .btn-cancel,
  .question-modal-footer .btn-submit {
    width: 100%;
    justify-content: center;
  }
  
  #review-pro-module .question-card {
    padding: 16px;
  }
  
  #review-pro-module .question-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  #review-pro-module .review-tab {
    font-size: 14px;
    padding: 12px 16px;
  }
  
  #review-pro-module .questions-header .section-title {
    font-size: 18px;
  }
  
  #review-pro-module .stat-text strong {
    font-size: 20px;
  }
  
  #review-pro-module .filter-tab {
    font-size: 13px;
    padding: 8px 14px;
  }
}

#review-pro-module .upload-placeholder p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

#review-pro-module .image-preview {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

#review-pro-module .preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

#review-pro-module .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#review-pro-module .remove-image {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

#review-pro-module .remove-image:hover {
  background: rgba(255, 96, 0, 0.9);
}

/* Form Submit - Modern CTA Button */
#review-pro-module .form-submit {
  margin-top: 32px;
}

#review-pro-module .form-submit .btn {
  padding: 16px 40px;
  border: none;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FF7A1F 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 96, 0, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#review-pro-module .form-submit .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 96, 0, 0.5);
  background: linear-gradient(135deg, #FF7A1F 0%, var(--primary-orange) 100%);
}

#review-pro-module .form-submit .btn:active {
  transform: translateY(-1px);
}

#review-pro-module .form-submit .btn i {
  margin-right: 10px;
  font-size: 18px;
}

/* Login Message */
#review-pro-module .review-login-message {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}

#review-pro-module .review-login-message i {
  font-size: 48px;
  color: #ff6000;
  margin-bottom: 16px;
}

#review-pro-module .review-login-message p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

#review-pro-module .review-login-message a {
  color: #ff6000;
  font-weight: 600;
  text-decoration: none;
}

#review-pro-module .review-login-message a:hover {
  text-decoration: underline;
}

/* Image Popup Modal */
#review-pro-module .image-popup-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

#review-pro-module .popup-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

#review-pro-module .close-popup {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

#review-pro-module .close-popup:hover {
  color: #ff6000;
}

/* Pagination */
#review-pro-module .review-pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

#review-pro-module .review-pagination .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#review-pro-module .review-pagination .page-item {
  display: inline-block;
}

#review-pro-module .review-pagination .page-link {
  padding: 8px 16px;
  border: 1px solid #e5e5e5;
/* Pagination - Modern Style */
#review-pro-module .review-pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

#review-pro-module .review-pagination .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#review-pro-module .review-pagination .page-item {
  list-style: none;
}

#review-pro-module .review-pagination .page-link {
  padding: 12px 18px;
  border: 2px solid var(--border-color);
  background: #fff;
  color: var(--text-dark);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

#review-pro-module .review-pagination .page-link:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 96, 0, 0.2);
}

#review-pro-module .review-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FF7A1F 100%);
  border-color: var(--primary-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 96, 0, 0.4);
}

#review-pro-module .review-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  .review-pro-wrapper {
    padding: 24px 0;
  }
  
  .review-pro-wrapper h2 {
    font-size: 24px;
  }
  
  .review-summary {
    padding: 24px;
  }
  
  .average-rating {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .rating-number {
    font-size: 64px;
  }
  
  .rating-stars {
    font-size: 24px;
  }
  
  .review-filters {
    padding: 20px;
  }
  
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .sort-dropdown select {
    width: 100%;
  }
  
  .review-item {
    padding: 24px;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .reviewer-avatar {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .review-title {
    font-size: 16px;
  }
  
  .review-images {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  
  .review-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .helpful-buttons {
    width: 100%;
  }
  
  .helpful-btn {
    flex: 1;
  }
  
  .review-pagination .page-link {
    padding: 10px 14px;
    font-size: 14px;
    min-width: 40px;
  }
}

/* Animasyonlar */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#review-pro-module .review-item {
  animation: fadeIn 0.5s ease forwards;
}

#review-pro-module .review-item:nth-child(1) { animation-delay: 0.1s; }
#review-pro-module .review-item:nth-child(2) { animation-delay: 0.2s; }
#review-pro-module .review-item:nth-child(3) { animation-delay: 0.3s; }
#review-pro-module .review-item:nth-child(4) { animation-delay: 0.4s; }
#review-pro-module .review-item:nth-child(5) { animation-delay: 0.5s; }
  
  .review-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .helpful-buttons {
    width: 100%;
  }
  
  .helpful-btn {
    flex: 1;
  }
  
  .write-review-section {
    padding: 20px;
  }
  
  .section-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .rating-number {
    font-size: 48px;
  }
  
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .review-images {
    gap: 6px;
  }
  
  .review-image {
    width: 60px;
    height: 60px;
  }
  
  .rating-input label {
    font-size: 28px;
  }
}

/* Report Modal - Global Scope */
.report-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999998;
  display: none;
  align-items: center;
  justify-content: center;
}

.report-modal.active {
  display: flex;
}

.report-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.report-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  z-index: 1;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.report-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.report-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.report-modal-close:hover {
  background: #F5F5F5;
}

.report-modal-body {
  padding: 24px;
  max-height: calc(90vh - 180px);
  overflow-y: auto;
}

.report-info {
  background: #FFF9F2;
  border: 1px solid #FFE8D1;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.report-info svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.report-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.report-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.report-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.report-form textarea:focus {
  outline: none;
  border-color: #F27A1A;
}

.report-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #E0E0E0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.report-modal-footer button {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.report-modal-footer .btn-cancel {
  background: #F5F5F5;
  color: #666;
}

.report-modal-footer .btn-cancel:hover {
  background: #E0E0E0;
}

.report-modal-footer .btn-submit {
  background: #FF5252;
  color: #fff;
}

.report-modal-footer .btn-submit:hover {
  background: #E64545;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
}

/* Review Modal Specific Styles */
#review-modal .star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
  margin: 16px 0;
}

#review-modal .star-rating-input input[type="radio"] {
  display: none;
}

#review-modal .star-rating-input label {
  cursor: pointer;
  transition: all 0.2s ease;
}

#review-modal .star-rating-input label .icon-star-large {
  width: 40px;
  height: 40px;
  fill: #E0E0E0;
  transition: fill 0.2s ease;
}

#review-modal .star-rating-input label:hover .icon-star-large,
#review-modal .star-rating-input label:hover ~ label .icon-star-large {
  fill: #FFB800;
}

#review-modal .star-rating-input input:checked ~ label .icon-star-large {
  fill: #FFB800;
}

#review-modal .form-group-modern {
  margin-bottom: 20px;
}

#review-modal .form-label-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

#review-modal .form-input-modern,
#review-modal .form-textarea-modern {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

#review-modal .form-input-modern:focus,
#review-modal .form-textarea-modern:focus {
  outline: none;
  border-color: #F27A1A;
}

#review-modal .char-counter {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

#review-modal .photo-upload-zone {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}

#review-modal .photo-upload-zone:hover {
  border-color: #F27A1A;
}

#review-modal .upload-trigger {
  display: block;
  cursor: pointer;
}

#review-modal .upload-icon {
  margin-bottom: 12px;
}

#review-modal .photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

#review-modal .preview-photo-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

#review-modal .preview-photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#review-modal .preview-photo-item button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF5252;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  z-index: 2;
}

#review-modal .privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: #F0F7FF;
  border-radius: 8px;
  font-size: 13px;
  color: #666;
  margin-top: 16px;
}

#review-modal .guest-info-section {
  margin: 20px 0;
}

#review-modal .row {
  display: flex;
  gap: 16px;
}

#review-modal .col-md-6 {
  flex: 1;
}

/* Yorum Yaz Butonu */
.btn-write-review:hover {
  background: linear-gradient(135deg, #E66A10 0%, #F27A1A 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 122, 26, 0.5) !important;
}

/* Işık Efekti Animasyonu */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(242, 122, 26, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(242, 122, 26, 0.6);
  }
}

.btn-glow {
  animation: glow-pulse 2s ease-in-out infinite;
}

.btn-glow:hover {
  animation: none;
}

/* Soru Sor Butonu */
.btn-ask-question:hover {
  background: linear-gradient(135deg, #45A049 0%, #4CAF50 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5) !important;
}

@keyframes glow-pulse-green {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(76, 175, 80, 0.6);
  }
}

.btn-ask-question.btn-glow {
  animation: glow-pulse-green 2s ease-in-out infinite;
}

/* Image Slider Controls */
.slider-prev:hover,
.slider-next:hover,
.close-popup:hover {
  background: rgba(255,255,255,0.4) !important;
  transform: scale(1.1);
}

#review-pro-module .image-popup-modal {
  display: none;
}

#review-pro-module .image-popup-modal[style*="display: flex"] {
  display: flex !important;
}

/* Horizontal Mode Enhancement */
#review-pro-module .trendy-reviews-list.horizontal-mode {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #F27A1A #f1f1f1;
  margin-bottom: 30px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode::-webkit-scrollbar {
  height: 8px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode::-webkit-scrollbar-thumb {
  background: #F27A1A;
  border-radius: 10px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .trendy-review-card {
  min-width: 350px;
  max-width: 350px;
  flex: 0 0 350px;
  scroll-snap-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .trendy-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-color: rgba(242, 122, 26, 0.2);
}

#review-pro-module .trendy-reviews-list.horizontal-mode .trendy-review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(0,0,0,0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .card-top {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .stars-row {
  background: rgba(255, 184, 0, 0.1);
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-flex;
  width: fit-content;
  gap: 4px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .user-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .user-id {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 15px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .comment-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 90px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .images-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f5f5f5;
  margin-bottom: 16px;
}

#review-pro-module .trendy-reviews-list.horizontal-mode .card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

@media (max-width: 768px) {
  #review-pro-module .trendy-reviews-list.horizontal-mode .trendy-review-card {
    min-width: 290px;
    max-width: 290px;
    flex: 0 0 290px;
    padding: 20px;
  }
}

/* Slider Navigation Buttons */
#review-pro-module .reviews-slider-wrapper {
  position: relative;
  margin: 0 -10px;
}

#review-pro-module .slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #333;
  transition: all 0.3s ease;
}

#review-pro-module .slider-nav-btn:hover {
  background: #F27A1A;
  color: #fff;
  box-shadow: 0 6px 16px rgba(242, 122, 26, 0.3);
}

#review-pro-module .slider-nav-btn.prev {
  left: 0;
}

#review-pro-module .slider-nav-btn.next {
  right: 0;
}

@media (max-width: 768px) {
  #review-pro-module .slider-nav-btn {
    display: none; /* Hide on mobile, trust touch scroll */
  }
}

/* Review Pro modal stacking helpers */
.review-pro-modal {
  z-index: 2147483645 !important;
}

#report-modal,
#image-popup-modal,
#review-modal,
#question-modal {
  z-index: 2147483646 !important;
}

#review-pro-modal-portal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2147483646;
}

#review-pro-modal-portal.review-pro-modal-portal-active {
  pointer-events: none;
}

#review-pro-modal-portal .review-pro-modal {
  pointer-events: none;
}

#review-pro-modal-portal .review-pro-modal.review-pro-modal-active {
  pointer-events: auto;
  z-index: 2147483647 !important;
}

body.review-pro-modal-open {
  overflow: hidden !important;
}

body.review-pro-modal-open > :not(#review-pro-modal-portal) {
  pointer-events: none;
  user-select: none;
}

/* Toast Notifications */
#review-pro-toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2147483650;
  pointer-events: none;
}

.review-pro-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 250px;
  max-width: 360px;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-10px);
}

.review-pro-toast span {
  flex: 1;
  line-height: 1.3;
  word-break: break-word;
}

.review-pro-toast-close {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 16px;
  width: 24px;
  height: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.review-pro-toast-success {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  color: #fff;
}

.review-pro-toast-error {
  background: linear-gradient(135deg, #F44336 0%, #E53935 100%);
  color: #fff;
}

.review-pro-toast-info {
  background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
  color: #fff;
}

.review-pro-toast-visible {
  animation: reviewProToastEnter 0.35s ease forwards;
}

.review-pro-toast-hide {
  animation: reviewProToastExit 0.45s ease forwards;
}

@keyframes reviewProToastEnter {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reviewProToastExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@media (max-width: 576px) {
  #review-pro-toast-container {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
  }

  .review-pro-toast {
    min-width: auto;
    font-size: 13px;
  }
}
/* Resimli Yorumlar Slider */
#review-pro-module .photo-reviews-section {
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(242, 122, 26, 0.02) 0%, rgba(255, 140, 58, 0.02) 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(242, 122, 26, 0.1);
}

#review-pro-module .photo-reviews-section .section-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8e8e8;
}

#review-pro-module .photo-reviews-section .section-header h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

#review-pro-module .photo-reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

#review-pro-module .photo-reviews-list {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 28px 0 0;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

#review-pro-module .photo-reviews-list::-webkit-scrollbar {
  display: none;
}

#review-pro-module .photo-review-card {
  flex: 0 0 auto;
  min-width: 100px;
  max-width: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: white;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

#review-pro-module .photo-review-card:hover {
  box-shadow: 0 8px 24px rgba(242, 122, 26, 0.15);
  transform: translateY(-2px);
  border-color: #F27A1A;
}

#review-pro-module .photo-review-card > div:first-child {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  overflow: hidden;
}

#review-pro-module .photo-review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#review-pro-module .photo-slider-nav {
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #666;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}

#review-pro-module .photo-slider-nav:hover {
  background: #F27A1A;
  border-color: #F27A1A;
  color: white;
  transform: scale(1.1);
}

#review-pro-module .photo-slider-nav.prev-btn {
  left: 0;
}

#review-pro-module .photo-slider-nav.next-btn {
  right: 0;
}

@media (max-width: 768px) {
  #review-pro-module .photo-reviews-section {
    padding: 12px;
    margin-bottom: 20px;
  }

  #review-pro-module .photo-review-card {
    min-width: 90px;
    max-width: 90px;
  }

  #review-pro-module .photo-reviews-list {
    gap: 10px;
    padding: 0 36px 0 0;
  }

  #review-pro-module .photo-slider-nav {
    width: 28px;
    height: 28px;
  }

  #review-pro-module .photo-slider-nav .icon-svg {
    width: 14px;
    height: 14px;
  }
}