@import url('root.css');
@import url('loader.css');
@import url('header.css');
@import url('footer.css');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  direction: ltr;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
  direction: ltr;
}





::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}


::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bg-surface);
  color: var(--text-primary);
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

select option {
  background-color: var(--bg-surface-hover);
  color: var(--text-primary);
  padding: 10px;
} 
/* Global Review Truncation & Modal */
.global-review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.global-read-more-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.global-read-more-btn:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* Full Review Modal */
.review-full-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.review-full-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.review-full-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.review-full-modal-backdrop.open .review-full-modal {
  transform: translateY(0);
}
.review-full-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-full-modal-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.review-full-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}
.review-full-modal-close:hover {
  color: #fff;
}
.review-full-modal-body {
  padding: 24px;
  overflow-y: auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}
.review-full-modal-body p {
  margin: 0 0 15px 0;
}

