/* ===============================
   GALLERY SECTION
================================ */

.hanger_gallery-section {
  padding: 100px 0;
  background: #fff;
}

/* Header */
.hanger_gallery-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.hanger_gallery-title {
  font-size: 48px;
  font-weight: 700;
  color: #0D1B3E;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hanger_gallery-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #AB966C;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hanger_gallery-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Gallery Container */
.hanger_gallery-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.hanger_gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 60px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hanger_gallery-scroll::-webkit-scrollbar {
  display: none;
}

.hanger_gallery-item {
  flex: 0 0 100%;
  width: 100%;
  height: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hanger_gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hanger_gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination Indicator */
.hanger_gallery-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hanger_gallery-dot {
  width: 50px;
  height: 4px;
  background: #d0d0d0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hanger_gallery-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
  transition: width 0.4s ease;
  border-radius: 4px;
}

.hanger_gallery-dot.active {
  background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
  box-shadow: 0 2px 12px rgba(171, 150, 108, 0.6);
  transform: scaleY(1.3);
}

.hanger_gallery-dot.active::before {
  width: 100%;
}

.hanger_gallery-dot:hover {
  background: #b0b0b0;
  transform: scaleY(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hanger_gallery-container {
    padding: 0 40px;
  }

  .hanger_gallery-item {
    height: 550px;
  }

  .hanger_gallery-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hanger_gallery-section {
    padding: 80px 0;
  }

  .hanger_gallery-header {
    margin-bottom: 50px;
  }

  .hanger_gallery-title {
    font-size: 38px;
  }

  .hanger_gallery-subtitle {
    font-size: 18px;
  }

  .hanger_gallery-description {
    font-size: 15px;
  }

  .hanger_gallery-container {
    padding: 0 30px;
  }

  .hanger_gallery-item {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hanger_gallery-section {
    padding: 60px 0;
  }

  .hanger_gallery-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .hanger_gallery-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .hanger_gallery-subtitle {
    font-size: 16px;
  }

  .hanger_gallery-description {
    font-size: 14px;
  }

  .hanger_gallery-container {
    padding: 0 20px;
  }

  .hanger_gallery-scroll {
    padding-bottom: 50px;
    gap: 15px;
  }

  .hanger_gallery-item {
    height: 400px;
    border-radius: 16px;
  }

  .hanger_gallery-indicator {
    bottom: 15px;
    padding: 10px 20px;
    gap: 12px;
  }

  .hanger_gallery-dot {
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .hanger_gallery-section {
    padding: 50px 0;
  }

  .hanger_gallery-title {
    font-size: 28px;
  }

  .hanger_gallery-subtitle {
    font-size: 14px;
  }

  .hanger_gallery-description {
    font-size: 13px;
  }

  .hanger_gallery-container {
    padding: 0 15px;
  }

  .hanger_gallery-item {
    height: 350px;
    border-radius: 12px;
  }

  .hanger_gallery-indicator {
    padding: 8px 16px;
    gap: 10px;
  }

  .hanger_gallery-dot {
    width: 35px;
    height: 3px;
  }
}
