/* Instagram Swiper Custom Footer Styles */
.instagram-swiper-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
}
.custom-swiper-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.custom-swiper-btn.prev::before,
.custom-swiper-btn.next::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  position: absolute;
}
.custom-swiper-btn.prev::before {
  transform: rotate(-135deg);
  left: 13px;
  top: 13px;
}
.custom-swiper-btn.next::before {
  transform: rotate(45deg);
  left: 13px;
  top: 13px;
}
.custom-swiper-thumbs {
  display: flex;
  gap: 10px;
}
.custom-swiper-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.custom-swiper-thumb.active {
  border: 2px solid #ff6b6b;
  background: #fff0f0;
  box-shadow: 0 0 0 2px #ffeaea;
}
.custom-swiper-thumb img {
  display: none;
}