/* Frankie 360 Photo Group Styles */
#photo_group {
  position: relative;
  /* cursor: pointer; */
}

#photo_group img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#photo_group img:first-child {
  position: relative;
  opacity: 1;
}

#photo_group #photo_1 {
  opacity: 1;
}

/* Dot indicators */
.photo-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 0 4px;
}

.photo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.photo-dot.active {
  background-color: #555;
  transform: scale(1.25);
}

.photo-dot:hover {
  background-color: #888;
}
