.birthday-glow-btn {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 100, 100, 0.6), 0 0 20px rgba(255, 190, 70, 0.6);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.birthday-glow-btn:hover {
  background: linear-gradient(45deg, #f12711, #f5af19);
  box-shadow: 0 0 16px rgba(255, 100, 100, 0.9), 0 0 28px rgba(255, 230, 100, 0.9);
  transform: scale(1.05);
}


@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutToLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* Apply animation to modal dialog */
.modal.slide-left .modal-dialog {
  animation: slideInFromLeft 0.4s ease-out;
  transform-origin: left;
}

/* On hide animation */
.modal.slide-left.hide-anim .modal-dialog {
  animation: slideOutToLeft 0.3s ease-in;
}


/* Modal animation setup */
.modal.fold-anim .modal-dialog {
  transform-origin: top;
  animation: foldIn 0.4s ease-out;
}

.modal.fold-anim.hide-anim .modal-dialog {
  animation: foldOut 0.3s ease-in;
}



.form-select {
    border-radius: 12px;
    padding-top: 1.2rem;
    padding-bottom: 0.6rem;
    font-size: 14px;
  }

  .form-floating > label {
    font-size: 13px;
    opacity: 0.7;
  }

  .overflow-auto {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .btn {
    transition: 0.2s ease;
    white-space: nowrap;
  }

  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .flex-nowrap > * {
    flex-shrink: 0;
  }





















        .modal-backdrop {
        top: unset; 
    }


    .datetime-picker {
            max-width: 300px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .datetime-picker input {
            padding: 10px;
            font-size: 16px;
        }


.select-container {
  /*   position: relative; Parent container needs relative positioning for absolute child */
    width: 100%;
}

.toggle-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.collapse-panel {
    display: none; /* Hidden by default */
    position: absolute; /* Positioned absolutely */
    top: 100%; /* Positioned below the toggle button */
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 999; /* Make sure it's on top */
}

.collapse-panel ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.collapse-panel li {
    padding: 5px 0;
    border-bottom: 0px solid #ddd;
}

.collapse-panel li:last-child {
    border-bottom: none;
}

.price-slashed {
    text-decoration: line-through;
    color: #808080bf;
    font-size: 10px;
    margin-right: 5px;
}


.select-container.active .collapse-panel {
    display: block; /* Show when active */
}

.select-container.active .dropdown-icon {
    transform: rotate(180deg); /* Rotate icon when active */
}




.custom_header {
    position: sticky;
    top: 0;
    /* z-index: 1000;  */
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.play-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.free-label {
    position: absolute;
    top: 0px;
    background-color: #ff4c3b;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}



/* Left Button */
.left-btn {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-color: #ff4c3b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
}

/* Right Button */
.right-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #ff4c3b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
}

.left-btn:hover, .right-btn:hover {
    background-color: #e43b28;
    cursor: pointer;
}



.carousel {
	margin: 50px auto;
	padding: 0 70px;
}
.carousel .item {
	min-height: 330px;
    text-align: center;
	overflow: hidden;
}
.carousel .item .img-box {
	height: 130px;
	width: 100%;
	position: relative;
}
.carousel .item img {	
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	position: absolute;
	bottom: 0;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.carousel .item h4 {
	font-size: 18px;
	margin: 10px 0;
}
.carousel .item .btn {
	color: #333;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    background: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin-top: 5px;
    line-height: 16px;
}
.carousel .item .btn:hover, .carousel .item .btn:focus {
	color: #fff;
	background: #000;
	border-color: #000;
	box-shadow: none;
}
.carousel .item .btn i {
	font-size: 14px;
    font-weight: bold;
    margin-left: 5px;
}
.carousel .thumb-wrapper {
	text-align: center;
}

.carousel .carousel-control {
	height: 100px;
    width: 40px;
    background: none;
    margin: auto 0;
    /* background: rgba(0, 0, 0, 0.2); */
}
.carousel .carousel-control i {
    font-size: 30px;
    position: absolute;
    top: 50%;
    display: inline-block;
    margin: -16px 0 0 0;
    z-index: 5;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
    font-weight: bold;
}
.carousel .item-price {
	font-size: 13px;
	padding: 2px 0;
}
.carousel .item-price strike {
	color: #999;
	margin-right: 5px;
}
.carousel .item-price span {
	color: #86bd57;
	font-size: 110%;
}
.carousel .carousel-control.left i {
	margin-left: -3px;
}
.carousel .carousel-control.left i {
	margin-right: -3px;
}
.carousel .carousel-indicators {
	bottom: -50px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 10px;
	height: 10px;
	margin: 4px;
	border-radius: 50%;
	border-color: transparent;
}
.carousel-indicators li {	
	background: rgba(0, 0, 0, 0.2);
}
.carousel-indicators li.active {	
	background: rgba(0, 0, 0, 0.6);
}
.star-rating li {
	padding: 0;
}
.star-rating i {
	font-size: 14px;
	color: #ffc000;
}


.badge-ray {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  font-weight: bold;
  font-size: 12px;
  color: #ffffff;
  background: linear-gradient(90deg, #762fd3, #f104cd);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
  animation: pulse 1.5s infinite;
  overflow: hidden;
  z-index: 1;
}

/* Rays effect */
.badge-ray::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: rays 2s linear infinite;
  z-index: 0;
}

/* Text stays above rays */
.badge-ray > * {
  position: relative;
  z-index: 2;
}

/* Pulsing + rays */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 10px 8px rgba(255, 87, 34, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

@keyframes rays {
  0% { transform: rotate(0deg); opacity: 0.6; }
  100% { transform: rotate(360deg); opacity: 0.6; }
}