body {
  background:
    radial-gradient(circle at top left, #2563eb 0%, transparent 35%),
    radial-gradient(circle at bottom right, #1d4ed8 0%, transparent 35%),
    #020617;
  min-height: 100dvh;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.25);
}

.review-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-gallery-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.review-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(59, 130, 246, 0.12);
  color: #bfdbfe;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.review-arrow-btn:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.28);
  border-color: rgba(147, 197, 253, 0.45);
  color: #fff;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.35);
}

.review-arrow-btn:active:not(:disabled) {
  transform: scale(0.94);
}

.review-arrow-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.review-gallery-counter {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.review-image-select {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.review-image-select:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 3px;
  border-radius: 0.9rem;
}

#review-image-wrap {
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.review-image-select:hover #review-image-wrap:not(.review-image-locked) {
  border-color: rgba(147, 197, 253, 0.35);
}

.review-image-wrap.review-image-locked {
  border-color: rgba(34, 211, 238, 0.85);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.45),
    0 0 28px rgba(34, 211, 238, 0.45),
    0 0 56px rgba(59, 130, 246, 0.25);
  transform: scale(1.01);
}

.review-select-hint {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.75rem;
  color: #71717a;
  transition: color 0.2s;
}

.review-image-select.is-locked .review-select-hint {
  color: #67e8f9;
  font-weight: 500;
}

.nav-link {
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-icon {
  transition: transform 0.2s ease;
}

.nav-dropdown[open] .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown:has(.active) .nav-dropdown-trigger,
.nav-dropdown[open] .nav-dropdown-trigger {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  width: 15rem;
  transform: translateX(-50%);
  padding: 0.45rem;
  border-radius: 1rem;
  background: rgba(2, 6, 23, 0.86);
  border: 1px solid rgba(147, 197, 253, 0.2);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.5), 0 0 28px rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 60;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  inset: -0.65rem 0 auto;
  height: 0.65rem;
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  color: #e4e4e7;
  font-size: 0.9rem;
  font-weight: 650;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.18);
  transform: translateY(-1px);
}

.nav-dropdown-kicker {
  color: #71717a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav-section {
  display: grid;
  gap: 0.25rem;
  padding: 0.35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-label {
  padding: 0.45rem 0.65rem 0.2rem;
  color: #67e8f9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-enter {
  animation: fadeIn 0.35s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input,
select,
textarea {
  font-size: 16px;
}

select option {
  background: #0f172a;
  color: #fff;
}

@media (max-width: 767px) {
  .mobile-nav-open {
    max-height: 28rem;
    opacity: 1;
  }

  .mobile-nav-closed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
}
