/* ВАШІ СТИЛІ ЗАЛИШЕНО БЕЗ ЗМІН */
.status-red {
  background-color: rgba(255, 49, 49, 0.1);
  color: #ff3131;
  border: 1px solid #ff3131;
}
.menu-btn {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px;
}

/* --- ГАЛЕРЕЯ --- */
.profile-main-section {
  height: 75vh;
  position: relative;
  background: #000;
}
.gallery-wrapper {
  height: 100%;
  position: relative;
}
.gallery-slide {
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.gallery-slide.active {
  display: flex;
}
.model-profile-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--neon-blue);
  border: none;
  padding: 15px 20px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}
.arrow-prev {
  left: 10px;
}
.arrow-next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.dot.active {
  background-color: var(--neon-blue);
  transform: scale(1.2);
}

/* --- МОДАЛЬНЕ ВІКНО --- */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.modal-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
}
.modal-content {
  max-width: 95%;
  max-height: 70vh;
  object-fit: contain;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--neon-blue);
  font-size: 50px;
  cursor: pointer;
  z-index: 10001;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: var(--neon-blue);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.modal-prev {
  left: 10px;
}
.modal-next {
  right: 10px;
}

/* Мініатюри в модалці */
.modal-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  width: 100%;
  justify-content: center;
  padding: 10px 0;
  max-height: 100px;
}
.thumb-item {
  width: 50px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: 0.3s;
}
.thumb-item.active {
  border-color: var(--neon-blue);
  opacity: 1;
  transform: scale(1.1);
}
