.calendar-days, .calendar-header{
   display: none;
}
.wwg-message{
    display: none;
}
.ft_slider-container {
    height: 100%
}
.ft_svg-mask {
    width: 100%;
    height: 100%;
}
/* quantity selector */
.quantity-selector {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px 0;
  }
  .quantity-selector .btn {
    border-color:#bc4ad9;
    color:#bc4ad9;
    width: 50px;
    height: 65px;
  }
.quantity-display {
    font-size: 2rem;
    margin: 0 20px;
  }
/* Common styles */
.ft_slider-container, .image-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.ft_image, .venue-image, .artist-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

/* Mobile styles (apply to all devices by default) */
.ft_image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  margin-bottom: 40px;
}

.ft_image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 20px;
}

.artist-image {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  border-radius: 20px; /* Added for consistency with desktop */
}
.venue-image {
  position: relative;
  top: 0;
  right: 0;
  height: 300px;
  border-radius: 20px; /* Added for consistency with desktop */
}

.about_artist {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Desktop styles */
@media (min-width: 768px) {
  .ft_slider-container {
    max-width: 800px;
    margin-bottom: 20px;
  }

  .ft_image-wrapper {
    max-height: 600px;
  }

  .ft_image {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0 61%);
  }

  .venue-image {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    width: 100%;
    border-radius: 40px;
    height: calc(100% + 1px);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0 61%);
  }

  .artist-image {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    width: 100%;
    border-radius: 40px;
    height: calc(100% + 1px);
    clip-path: polygon(75% 0%, 0% 0%, 0% 100%, 75% 100%, 100% 61%);
  }
}

/*mobile*/
@media (max-width: 768px) {
  #ft_slide-content {
    text-align: center!important;
  }
.row-tickets * {
    text-align: center!important;
  }

}