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

* {
  font-family: 'Inter', sans-serif;
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  margin: 40px 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

/* Enhanced hover effects for review section elements */
#reviews .fade-in {
  animation: fadeInUp 1s ease-out forwards;
}

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

/* Floating animation for decorative elements */
#reviews .absolute:first-child > div:nth-child(1) {
  animation: float 6s ease-in-out infinite;
}

#reviews .absolute:first-child > div:nth-child(2) {
  animation: float 8s ease-in-out infinite reverse;
  animation-delay: -2s;
}

#reviews .absolute:first-child > div:nth-child(3) {
  animation: float 10s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: visible;
}

.carousel-track-container {
  overflow: visible;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 1000px;
  max-width: 1000px;
  width: 1000px;
  height: 380px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  margin: 0 50px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: none;
  transform: scale(0.95);
  opacity: 0.8;
  transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
}

.review-slide.active {
  transform: scale(1.03);
  opacity: 1;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

/* Accent top gradient */
.accent-top {
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  border-radius: 16px 16px 0 0;
}

/* Card content container */
.review-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 4px);
  padding: 32px 40px;
  position: relative;
  z-index: 1;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.review-name {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.review-stars .star {
  font-size: 18px;
  color: #fbbf24;
}

.review-comment {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-date {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(241, 245, 255, 0.5);
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.carousel-btn:hover {
  background: #e0e7ff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.carousel-btn-prev {
  left: -5px;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

.carousel-btn-next {
  right: -5px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Modern hover effect */
.review-slide:hover {
  transform: scale(0.98);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.25);
}

.review-slide.active:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

/* Replies in Carousel */
.review-replies {
  margin-top: 16px;
}

.reply-item {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border-left: 4px solid #4f46e5;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.reply-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.reply-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.3) 50%, transparent 100%);
}

.reply-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 8px;
}

.reply-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reply-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.reply-author-name {
  font-weight: 600;
  color: #4f46e5;
  font-size: 14px;
}

.reply-admin-badge {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(30, 64, 175, 0.2);
}

.reply-date {
  font-size: 12px;
  color: #9ca3af;
}

.reply-message {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 40px;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .carousel-btn-prev {
    left: 10px;
  }
  
  .carousel-btn-next {
    right: 10px;
  }
  
  .review-slide {
    min-width: 350px;
    max-width: 350px;
    width: 350px;
    height: 420px;
    padding: 0;
  }
  
  .review-content {
    padding: 24px 20px;
  }
  
  .review-avatar {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .review-name {
    font-size: 18px;
  }
  
  .review-comment {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 0 30px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .carousel-btn-prev {
    left: 5px;
  }
  
  .carousel-btn-next {
    right: 5px;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(400px);
  animation: slideIn 0.3s ease forwards;
  position: relative;
  overflow: hidden;
}

.toast.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-left: 4px solid #34d399;
}

.toast.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-left: 4px solid #f87171;
}

.toast.info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-left: 4px solid #60a5fa;
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  background-color: rgba(255,255,255,0.2);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255,255,255,0.3);
  width: 100%;
  animation: progress 5s linear forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(400px);
  }
}

@keyframes progress {
  to {
    width: 0%;
  }
}

.toast.slide-out {
  animation: slideOut 0.3s ease forwards;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}

/* Form Validation Styles */
.field-error label {
  color: #ef4444 !important;
  transition: color 0.3s ease;
}

.field-error .star-rating-label {
  color: #ef4444 !important;
  transition: color 0.3s ease;
}

.field-error input,
.field-error textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-error .star-rating .star {
  color: #ef4444 !important;
}

/* Clear error state on focus */
.field-error input:focus,
.field-error textarea:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

.field-error input:focus + label,
.field-error textarea:focus + label {
  color: #374151 !important;
}

/* Modal form validation styles */
#reviewModal .field-error label {
  color: #ef4444 !important;
  transition: color 0.3s ease;
}

#reviewModal .field-error .star-rating-label {
  color: #ef4444 !important;
  transition: color 0.3s ease;
}

#reviewModal .field-error input,
#reviewModal .field-error textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#reviewModal .field-error .star-rating .star {
  color: #ef4444 !important;
}

/* Clear error state on focus */
#reviewModal .field-error input:focus,
#reviewModal .field-error textarea:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

#reviewModal .field-error input:focus + label,
#reviewModal .field-error textarea:focus + label {
  color: #374151 !important;
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  padding-bottom: 4px;
}

.hero-bg {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(56, 189, 248, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(125, 211, 252, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #0c4a6e 0%, #075985 25%, #0369a1 50%, #0284c7 100%);
  position: relative;
  overflow: hidden;
}

/* Holographic scan lines effect */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(56, 189, 248, 0.1) 0px,
      transparent 1px,
      transparent 2px,
      rgba(56, 189, 248, 0.1) 3px
    );
  background-size: 100% 4px;
  z-index: 1;
  opacity: 0.6;
}

/* Holographic particle field */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(56, 189, 248, 0.4) 0%, transparent 1.5%),
    radial-gradient(circle at 85% 25%, rgba(125, 211, 252, 0.35) 0%, transparent 1.5%),
    radial-gradient(circle at 35% 75%, rgba(14, 165, 233, 0.3) 0%, transparent 1.2%),
    radial-gradient(circle at 65% 55%, rgba(186, 230, 253, 0.35) 0%, transparent 1.3%),
    radial-gradient(circle at 25% 15%, rgba(56, 189, 248, 0.3) 0%, transparent 1%),
    radial-gradient(circle at 75% 85%, rgba(125, 211, 252, 0.3) 0%, transparent 1%),
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.25) 0%, transparent 1%),
    radial-gradient(circle at 90% 60%, rgba(186, 230, 253, 0.3) 0%, transparent 1.2%);
  background-size: 100% 100%;
  z-index: 0;
}

@keyframes scan-lines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes hologram-particles {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(0) scale(1);
  }
  25% {
    opacity: 1;
    transform: translateY(-20px) scale(1.05);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-10px) scale(0.95);
  }
  75% {
    opacity: 0.9;
    transform: translateY(-30px) scale(1.02);
  }
}

/* Ensure content is above backgrounds */
.hero-bg > * {
  position: relative;
  z-index: 2;
}

/* Hologram glow effect */
@keyframes hologram-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6))
            drop-shadow(0 0 40px rgba(59, 130, 246, 0.4));
    opacity: 0.3;
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8))
            drop-shadow(0 0 60px rgba(59, 130, 246, 0.6));
    opacity: 0.5;
  }
}

/* Enhanced pulse for floating dots */
.pulse-dot {
  box-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

/* Hologram float animation */
@keyframes hologram-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.9;
  }
  33% {
    transform: translateY(-25px) translateX(15px);
    opacity: 1;
  }
  66% {
    transform: translateY(-12px) translateX(-12px);
    opacity: 0.95;
  }
}

/* Fan spin animation (3D holographic fan effect) */
@keyframes fan-spin {
  0% {
    transform: rotate(0deg);
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.7;
  }
}

/* Particle drift animation */
@keyframes particle-drift {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-40px) translateX(30px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) translateX(-20px) scale(0.8);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-50px) translateX(10px) scale(1.1);
    opacity: 0.9;
  }
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

/* Food floating animation */
@keyframes food-float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) translateX(-15px) rotate(-5deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-40px) translateX(10px) rotate(3deg);
    opacity: 0.9;
  }
}

/* CTA Button pulse glow animation */
.animate-pulse-glow {
  animation: cta-pulse-glow 2s ease-in-out infinite;
  position: relative;
}

.animate-pulse-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: linear-gradient(45deg,
    rgba(6, 182, 212, 0.5),
    rgba(59, 130, 246, 0.5),
    rgba(147, 51, 234, 0.5));
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(6, 182, 212, 0.4),
      0 0 40px rgba(59, 130, 246, 0.3),
      0 0 60px rgba(147, 51, 234, 0.2);
  }
  50% {
    box-shadow:
      0 0 30px rgba(6, 182, 212, 0.6),
      0 0 60px rgba(59, 130, 246, 0.5),
      0 0 90px rgba(147, 51, 234, 0.4);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease forwards;
}

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

.pulse-dot {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.tech-icon {
  transition: all 0.3s ease;
}

.tech-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Анимированный логотип для хедера */
.header-logo {
  width: 80px;
  height: 80px;
}

.header-logo .bulb-main {
  fill: #3b82f6;
  fill-opacity: 0.9;
}

.header-logo .bulb-glow {
  fill: #60a5fa;
  animation: bulb-blink 3s ease-in-out infinite;
  filter: blur(2px);
  opacity: 0.6;
}

.header-logo .circuit-line {
  stroke: #60a5fa;
}

.header-logo .circuit-dot {
  fill: #93c5fd;
  animation: circuit-pulse 2s ease-in-out infinite;
}

.header-logo .circuit-dot:nth-child(2) { animation-delay: 0.3s; }
.header-logo .circuit-dot:nth-child(3) { animation-delay: 0.6s; }

/* Анимированный логотип для футера */
.footer-logo {
  width: 120px;
  height: 140px;
}

.footer-logo .logo-frame {
  stroke: #3b82f6;
  stroke-width: 3;
  fill: none;
  animation: frame-glow 4s ease-in-out infinite;
}

.footer-logo .bulb-main {
  fill: #3b82f6;
  fill-opacity: 0.9;
}

.footer-logo .bulb-glow {
  fill: #60a5fa;
  animation: bulb-blink 3s ease-in-out infinite;
  filter: blur(2px);
  opacity: 0.6;
}

.footer-logo .circuit-line {
  stroke: #60a5fa;
}

.footer-logo .circuit-dot {
  fill: #93c5fd;
  animation: circuit-pulse 2s ease-in-out infinite;
}

.footer-logo .text-main { 
  fill: #e5e7eb; 
}

.footer-logo .text-sub { 
  fill: #9ca3af; 
}

.footer-logo .circuit-dot:nth-child(2) { animation-delay: 0.3s; }
.footer-logo .circuit-dot:nth-child(3) { animation-delay: 0.6s; }

/* Анимации для логотипов */
@keyframes bulb-blink {
  0%, 90%, 100% { opacity: 0.6; }
  85%, 95% { opacity: 0.1; }
}

@keyframes circuit-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes frame-glow {
  0%, 100% { filter: drop-shadow(0 0 5px currentColor); }
  50% { filter: drop-shadow(0 0 15px currentColor); }
}

/* Анимированный логотип для модального окна */
.modal-logo {
  width: 120px;
  height: 140px;
}

.modal-logo .logo-frame {
  stroke: #3b82f6;
  stroke-width: 3;
  fill: none;
  animation: frame-glow 4s ease-in-out infinite;
}

.modal-logo .bulb-main {
  fill: #3b82f6;
  fill-opacity: 0.9;
}

.modal-logo .bulb-glow {
  fill: #60a5fa;
  animation: bulb-blink 3s ease-in-out infinite;
  filter: blur(2px);
  opacity: 0.6;
}

.modal-logo .circuit-line {
  stroke: #60a5fa;
}

.modal-logo .circuit-dot {
  fill: #93c5fd;
  animation: circuit-pulse 2s ease-in-out infinite;
}

.modal-logo .text-main { 
  fill: #374151; 
}

.modal-logo .text-sub { 
  fill: #6b7280; 
  font-weight: 900;
}

.modal-logo .circuit-dot:nth-child(2) { animation-delay: 0.3s; }
.modal-logo .circuit-dot:nth-child(3) { animation-delay: 0.6s; }

/* Star Rating Styles */
.star-rating {
  display: flex;
  gap: 4px;
  margin: 8px 0;
}

.star-rating .star {
  font-size: 28px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.star-rating .star:hover {
  color: #fbbf24;
  transform: scale(1.1);
}

.star-rating .star.active {
  color: #fbbf24;
}

.star-rating .star.selected {
  color: #fbbf24;
}

/* Hover effect for stars */
.star-rating:hover .star {
  color: #d1d5db;
}

.star-rating .star:hover,
.star-rating .star:hover ~ .star {
  color: #d1d5db;
}

.star-rating .star:hover {
  color: #fbbf24;
}

.star-rating .star:hover ~ .star.selected {
  color: #d1d5db;
}

/* Reviews container loading state */
.reviews-container .loading {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

/* Reviews form styles */
.reviews-form {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reviews-form input,
.reviews-form textarea {
  transition: all 0.3s ease;
}

.reviews-form input:focus,
.reviews-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

/* Reviews display styles */
.review-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}