.style-switcher {
  position: fixed;
  right: 0;
  top: 60px;
  padding: 15px;
  width: 200px;
  border: 1px solid var(--bg-black-50);
  background: var(--bg-black-100);
  z-index: 101;
  border-radius: 5px;
  transition: all 0.3s ease;
  transform: translateX(100%);
}

.style-switcher.open {
  transform: translateX(-25px);
}

.style-switcher .s-icon {
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
  background: var(--bg-black-100);
  color: var(--text-black-900);
  right: 100%;
  border: 1px solid var(--bg-black-50);
  margin-right: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.style-switcher .s-icon i {
  line-height: 40px;
}

.style-switcher .style-switcher-toggler {
  top: 0;
}

.style-switcher .day-night {
  top: 55px;
}

.style-switcher h4 {
  margin: 0 0 10px;
  color: var(--text-black-700);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.style-switcher .colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.style-switcher .colors span {
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

.style-switcher .colors .color-1 {
  background: #ec1839;
}

.style-switcher .colors .color-2 {
  background: #fa5b0f;
}

.style-switcher .colors .color-3 {
  background: #37b182;
}

.style-switcher .colors .color-4 {
  background: #1854b4;
}

.style-switcher .colors .color-5 {
  background: #f021b2;
}








/* Dark popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Popup content box */
.popup-content {
  background: #1e1e1e;
  color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

/* Show popup */
.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

/* Close button */
.popup-content button {
  margin-top: 20px;
  padding: 8px 20px;
  background: var(--skin-color);
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-content button:hover {
  background: var(--skin-color);
}
