/* ============================================================
   EYE™ — FEEDBACK SYSTEM STYLES
   ============================================================ */

/* ── Section wrapper ── */
.feedback-section {
  background: var(--gray-50);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.feedback-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section header ── */
.feedback-section .section-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.feedback-section .section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 52px;
  line-height: 1.15;
}

/* ── Slider track ── */
.feedback-slider-wrap {
  position: relative;
  overflow: hidden;
}
.feedback-slider {
  display: flex;
  gap: 24px;
  padding: 8px 48px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}
.feedback-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.feedback-slider::-webkit-scrollbar { display: none; }
.feedback-slider { scrollbar-width: none; }

/* ── Feedback card ── */
.feedback-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease,
              background 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feedback-card::after {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}
.feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
}

/* ── Card image ── */
.feedback-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
  opacity: 0.85;
}

/* ── Stars ── */
.feedback-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.feedback-stars .star {
  font-size: 14px;
  color: var(--gold);
}
.feedback-stars .star.empty {
  opacity: 0.25;
}

/* ── Comment ── */
.feedback-comment {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Author meta ── */
.feedback-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}
.feedback-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), rgba(201,168,76,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
}
.feedback-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.feedback-date {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
}

/* ── Slider nav dots ── */
.feedback-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.feedback-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.feedback-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ── CTA ── */
.feedback-cta-wrap {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   FEEDBACKS PAGE
   ============================================================ */
.feedbacks-page {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--black);
}
body.has-marquee .feedbacks-page {
  padding-top: calc(var(--nav-h) + 36px + 60px);
}

.feedbacks-hero {
  text-align: center;
  padding: 0 24px 60px;
}
.feedbacks-hero .page-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.feedbacks-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.feedbacks-hero p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Feedback grid ── */
.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Submit form ── */
.feedback-submit-section {
  max-width: 640px;
  margin: 80px auto 0;
  padding: 0 24px;
}
.feedback-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 48px 40px;
}
.feedback-form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.feedback-form-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.6;
}
.feedback-form-group {
  margin-bottom: 20px;
}
.feedback-form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.feedback-form-input,
.feedback-form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.feedback-form-input:focus,
.feedback-form-textarea:focus {
  border-color: var(--gold);
}
.feedback-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Star rating picker ── */
.star-rating-input {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}
.star-rating-input .star-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-300);
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0;
  line-height: 1;
}
.star-rating-input .star-btn.active,
.star-rating-input .star-btn:hover,
.star-rating-input .star-btn.hover {
  color: var(--gold);
  transform: scale(1.15);
}

/* ── Image upload ── */
.feedback-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.feedback-upload-label:hover {
  border-color: var(--gold);
}
.feedback-upload-icon {
  font-size: 20px;
  opacity: 0.7;
}
.feedback-upload-text {
  font-size: 13px;
  color: var(--gray-500);
}
.feedback-upload-preview {
  margin-top: 12px;
}
.feedback-upload-preview img {
  max-height: 140px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── Access denied notice ── */
.feedback-access-notice {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
}
.feedback-access-notice p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* ── Empty state ── */
.feedback-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-500);
  font-size: 15px;
}

@media (max-width: 768px) {
  .feedback-card { flex: 0 0 280px; }
  .feedback-slider { padding: 8px 20px 24px; }
  .feedback-form-card { padding: 32px 24px; }
  .feedbacks-grid { grid-template-columns: 1fr; }
}
