.gallery-container {
    position: relative;
    overflow: hidden;
    background: #501247;
  }
  
  .gallery-wrapper {
    position: relative;
  }
  
  .gallery-item {
    display: none;
    width: 100%;
  }
  
  .gallery-item.active {
    display: block;
    background-color: unset!important;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .gallery-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background: white;
  }
  
  .zoom-indicator {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 10px;
    color: white;
  }