 /**  benefits css **/


	#canvas_wrap .btn-seats {
		background-color: #F4B738 !important;
		color:white !important;
	}
  
    /* === Global Text & Font Setup === */
    .text-primary-custom {
      color: black;
      text-align: right; /* RTL alignment */
      font-family: "Assistant";
    }
  
    /* === Title (50px) === */
    .show-title {
      color: black;
      font-size: 50px;
      font-style: normal;
      font-weight: 600;
      line-height: 66px; /* 132% of 50px */
      letter-spacing: -1.2px;
      margin-bottom: 0.5rem;
    }
  
    /* === Subtitle (24px) === */
    .show-subtitle {
      color: black;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 30px; /* 100% */
      margin-bottom: 0.75rem;
    }
  
    /* === Eligibility (20px, line-height 18px) === */
    .show-eligibility {   
      color: black;

         color: black;
      font-size: 20px;
      font-style: normal;
      font-weight: 300; /* dynamic text */
      line-height: 18px;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 2rem;
    }
    .eligibility-label {
      color: black;

      font-weight: 700; /* "×–×›××•×ª:" bold */
    }
  
    /* === Date & Location (20px, line-height 18px) === */
    .show-date-loc {
      color: black;

      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: 18px;
      color: #3C4E7D;
      display: flex;
      justify-content: flex-end; /* place items to the right */
      gap: 2rem;
      margin-bottom: 1rem;
      margin-top: 2rem;
    }
    .show-date-loc > div {
      display: flex;
      align-items: center;
      gap: 6px; /* space between icon and text */
    }
    /* Fixed-width labels for alignment */
    .date-label,
    .location-label {
      color: black;

      display: inline-block;
     
      font-weight: 700;
    }
  
    /* === Icon Classes === */
    .icon-calendar,
    .icon-background {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #EB8F23 !important;
    }
  
    .price-card {
    
      background-color: #ffffff;
      border: 1px solid #e7e7e7;
      border-radius: 16px;
      /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
	  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
      padding: 1.5rem;
      margin-left: 0;
      margin-right: auto;
    }
    
    @media (min-width: 992px) {
      .price-card {
        max-width: 340px;
        min-height: 400px;
      }
    }
    
  
    .price-col {
      margin-left: 0 !important;
    }
    .radio-group {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .form-check-inline
    {
      margin-right: 0px !important;
    }

    .form-check-input {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      cursor: pointer;
     
    }
    .form-check-input:checked {
      background-color: #f2994a;
      border-color: #f2994a;
    }
    .form-check-label {
      font-weight: 600;
      font-size: 18px;
      cursor: pointer;
    }
    .price-amount {
      font-size: 2rem;
      font-weight: 700;
      color: #333333;
      margin-bottom: 1rem;
      text-align: end;
    }
    .btn-seats {
      background-color: #00b2ff;
      color: #fff;
      border: none;
      width: 100%;
      padding: 0.75rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      cursor: pointer;
    }
    
	.btn-seats:hover {
		 filter: brightness(95%);
    }
  
    /* === "Add to Calendar" Section === */
    .add-calendar-title {
      font-size: 0.875rem;
      font-weight: 600;
      color: #2e2e2e;
      margin-bottom: 0.5rem;
    }
    .calendar-grid {
      display: grid;
      grid-template-columns: 1fr 1fr; /* 2 columns */
      gap: 0.5rem;
    }
    .calendar-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 0.75rem;
      text-decoration: none;
      color: #333;
      font-size: 0.875rem;
      font-weight: 500;
      min-height: 48px;
      text-align: center;
    }
    .calendar-item:hover {
      background-color: #f0f0f0;
      text-decoration: none;
    }
    .calendar-item img {
      width: 20px;
      height: 20px;
    }

.price-boxes {
	display: flex;
    flex-direction: column;
    gap: 10px;
}

  .price-box {
          border: 1px solid #ddd;
		border-radius: 14px;
		cursor: pointer;
		transition: background-color 0.3s ease;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		color: black;
		font-family: "Assistant";
		font-size: 20px;
		font-style: normal;
		font-weight: 300;
		line-height: 34px;
		/* text-align: center; */
		padding: 4px;
		width: 100%;
    }
	
.price-box:hover {
    border-radius: 14px;
    border: 1px solid #EB8F23;
    background: #FDF1E3;
}
	
	.price-new {
		padding: 0 10px;
	}
	
	.price-status {
		padding: 0 10px;
		font-size: 0.8em;
	}
	
	.price-status-extras {
		position: absolute;
		top: 20px;
		right: 10px;
		background: white;
		border-radius: 5px;
	}
	
.date-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;          /* Increase gap between date boxes */
    justify-items: center;
   
}


    .date-box {
      min-height: 100px;
      border: 1px solid #ddd;
      border-radius: 14px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: black;
      font-family: "Assistant",;
      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: 34px;
      text-align: center;
      padding: 4px;
      width: 100%;

    }
    .date-box:hover {
      
      border-radius: 14px;
border: 1px solid #EB8F23;

background: #FDF1E3;
    }
    .date-box .date-location {
      color: #1D2E64;


      font-weight: 600;
    }
    .date-box .subscription-type {
      color: #1D2E64;


      font-weight: 300;
    }
    .date-box:hover .subscription-type {
      color: #1D2E64;


      font-weight: 600;
    }
    .date-box .subscription-price {
      color: #1D2E64;


      font-weight: 700;
    }
    /* === Slider (Right Column) === */
    .carousel-indicators [data-bs-target] {
      background-color: #000;
    }
    .show-date-loc {
display: flex;
justify-content: flex-start; /* Keep RTL alignment */

align-items: center; /* Make sure everything is aligned */
}




.icon-calendar, .icon-background {
width: 20px;
height: 20px;
flex-shrink: 0;
color: #EB8F23 !important;
}/* Slider Container Fix */


/* ================================ */
/* âœ… Global Styles & Layout Fixes */
/* ================================ */
.text-primary-custom {
  text-align: right;
  font-family: "Assistant",;
}
.row {
--bs-gutter-x: 0 !important;
}

/* ================================ */
/* âœ… Responsive Grid Layout */
/* ================================ */
@media (max-width: 991px) {
  .row {
      flex-direction: column; /* Stack all sections */
  }

  /* Make slider full width */
  #slider-container {
      width: 100%;
  }

  /* Ensure text section takes full width */
  .col-md-5 {
      width: 100%;
  }



}

/* ================================ */
/* âœ… Video & Image Slider Fixes */
/* ================================ */
#slider-container {
  max-width: 100%;
  height: auto;
}

.carousel-item img,
.slider-video {
  width: 100%;
  height: 450px; /* Adjust height */
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .carousel-item img,
  .slider-video {
      height: 250px; /* Reduce height for smaller screens */
  }
  /* ================================ */
/* âœ… Mobile Adjustments */
/* ================================ */
@media (max-width: 991px) {
  
  /* âœ… Each ×ª××¨×™×š & ×ž×™×§×•× on a new row */
  .show-date-loc {
      flex-direction: column; /* Stack on mobile */
      align-items: flex-start;
      gap: 1rem;
  }

  /* âœ… Date boxes in 2 columns per row */
  .date-boxes {
      margin-top: 10px;
      gap: 1rem; /* Adjust spacing */
      justify-items: center;
      margin-bottom: 30px;
  }

  .date-box {
      min-width: 140px; /* Adjust size */
      max-width: 200px;
  }
}

@media (max-width: 576px) {
  .date-box {
      min-width: 120px; /* Smaller screens */
      max-width: 180px;
  }
}
 


}/* ========== INFO SECTIONS: ELIGIBILITY, DATE, LOCATION ========== */

/* âœ… Ensure icon and title align to the top of multi-line text */
.info-row {
display: flex;
align-items: flex-start; /* Align items to the top */
gap: 4px; /* Keep the spacing reduced */
}

/* âœ… Ensure text flows normally */
.info-text {
font-size: 18px;
font-weight: 300;
line-height: 1.4; /* Adjust line height for better readability */
display: inline-block; /* Ensures normal flow */
}

/* âœ… Icon remains centered */
.icon-wrapper {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0; /* Prevents icon from resizing */
color:#f2994a;
}

/* âœ… Title stays aligned with the first line */
.info-label {
font-size: 18px;
font-weight: 600;
margin: 0;
white-space: nowrap; /* Prevents title from wrapping */
}




/* Desktop: Keep Date & Location in one row */
.date-location-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 3rem; /* âœ… Space between date & location */
  flex-wrap: nowrap; /* âœ… Keep them in one row */
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 991px) {
	.date-location-wrapper {
	  gap: 5px !important;
	}
}



/* SVG Icons */
.icon-calendar,
.icon-location {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
  color: #EB8F23 !important;
}



/* âœ… MOBILE FIX: ICON & TEXT IN SAME ROW + DATE & LOCATION SEPARATE */
@media (max-width: 991px) {
  .info-row {
      flex-direction: row !important; /* âœ… ICON, TITLE, AND TEXT INLINE */
      justify-content: flex-start; /* âœ… Keep text aligned properly */
    
      width: 100%;
      margin-bottom: 0px !important;
   
      padding: 2px 0px !important;
  }

  /* â—ï¸ Date & Location each get their own row on mobile */
  .date-location-wrapper {
      flex-direction: column !important; /* âœ… Stack Date & Location on mobile */
      gap: 10px;
      width: 100%;
  }

  /* âœ… Reduce font sizes for mobile */
  .info-label {
      font-size: 21px;
      font-weight: 600;
  }

  .info-text {
      font-weight: 300;
      font-size: 20px;
  }
    /* === Title (50px) === */
    .show-title {
      padding: 5px 0 !important;
      padding-left: 100px !important;
      font-size: 35px;
      font-weight: 600;
      line-height: 40px !important; /* 132% of 50px */
      letter-spacing: -1.2px;
      margin-bottom: 0.5rem;
      margin-top: 1rem;
    }
    .allProductSection
    {
      padding-top: 1rem !important;
    }
    @media (max-width: 768px) {
      .price-card {
        margin-left: auto;
        margin-right: auto;
      }
    }
  
  
}
@media (min-width: 768px) {
.allProductSection {
  /*padding-top: 3rem;*/
  padding-bottom: 2rem;
}
}

.price-card .price-row:last-child {
border-bottom: none;
}

.text-primary-custom {
      padding-right: 40px !important;
    }
    

  /* Default: Small screens (Keep padding minimal) */
  .allProductSection {
    padding-left: 20px;
    padding-right: 20px;
}

/* âœ… Desktop Screens (â‰¥ 992px) */
@media (min-width: 992px) {
    .allProductSection {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* Ensure the Swiper container doesnâ€™t show overflowing slides */
#theatre-swiper {
width: 100%;
overflow: hidden;
}

/* Force each slide to take full width */
#theatre-swiper .swiper-slide {
width: 100%;
flex-shrink: 0;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 576px) {
    
     .text-primary-custom {
      padding-right: 10px !important;
    }
    
.radio-group {
  justify-content: space-between;
  padding: 0 1rem; /* optional, for side spacing */
}
}/* âœ… Ensure pagination stays below slider on all screen sizes */
.swiper-pagination {
position: relative !important;
bottom: 0px !important;
margin-top: 15px !important;
text-align: center;
width: 15px;
height: auto;
}

.swiper-pagination-bullet {
width: 10px;
height: 10px;
}


@media (max-width: 768px) {
/* âœ… Override padding for Swiper only */
#slider-container {
 
   
}

/* âœ… Make sure the Swiper inside also expands */
.theatre-slider-wrapper {
 
}

/* âœ… Ensure images/videos in slides stretch to full width */
.theatre-swiper-container,
.theatre-swiper-slide {
  
}
}


/* === Add to Calendar & Share â€“ Shared Styling === */

.calendar-item,
.icon-share-link {
width: 45px;
height: 45px;
border: 1px solid #ccc;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
padding: 0;
}

.calendar-item img,
.icon-share-link img {
width: 24px;
height: 24px;
}

/* === Desktop Styles (default) === */
.add-calendar-section,
.share-section {
text-align: end;
}

.add-calendar-title,
.share-section .fw-bold {
font-size: 1rem;
font-weight: 600;
color: #031652;
margin-bottom: 0.5rem;
}

.calendar-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.share-section .d-flex {
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}


/* === Mobile Override: unified layout === */
@media (max-width: 768px) {
.add-calendar-section,
.share-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1rem;
}

.add-calendar-title,
.share-section .fw-bold {
  margin: 0;
  white-space: nowrap;
}

.calendar-grid,
.share-section .d-flex {
  display: flex !important;
  flex-direction: row;
  gap: 1rem !important;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.calendar-item span {
  display: none; /* hide text on calendar buttons */
}
}
@media (max-width: 768px) {
.share-section .d-flex {
  width: auto !important;
}
}
.calendar-item img {
margin-right: 0.5rem;
}

@media (max-width: 768px) {
.calendar-item img {
  margin-right: 0 !important;
}
}
.breadcrumb-nav {
font-size: 0.95rem;
direction: rtl;
}

.breadcrumb-link {
text-decoration: none;
color: #00B3DC;
font-weight: 500;
}

.breadcrumb-link:hover {
text-decoration: underline;
}

.breadcrumb-current {
color: #3C4E7D; /* Default text color */
font-weight: 600;
white-space: nowrap;
}

.separator {
color: #00B3DC;
font-weight: 300;
padding: 0 4px;
}

.breadcrumb-home-icon {
width: 18px;
height: 18px;
vertical-align: middle;
}

/* Mobile adjustments if needed */
@media (max-width: 768px) {
.breadcrumbs-container {
  padding-inline: 15px;
}
}
.calendar-item img {
margin-right: 0.5rem;
}



.calendar-item{
width: 100%;
}
@media (min-width: 992px) {
#date-boxes-container {
  margin-top: 10px; /* or whatever spacing you want */
}
}
.breadcrumbs-scroll-wrapper {
overflow-x: auto;
white-space: wrap;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}

.breadcrumbs-scroll-wrapper::-webkit-scrollbar {
display: none;
}

.breadcrumb-nav {
flex-wrap: nowrap !important;
}

@media (min-width: 768px) {
.breadcrumbs-scroll-wrapper {
  overflow-x: visible;
  white-space: normal;


}
}
@media (max-width: 768px) {
.breadcrumb-nav {
  flex-wrap: wrap !important;
}

.breadcrumbs-scroll-wrapper {
  overflow-x: visible !important;
  white-space: normal !important;
  padding-top: 12px;
  padding-bottom: 12px;
}
}

@media (max-width: 768px) {
.breadcrumbs-scroll-wrapper {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
}

.content_wrap {
	font-family: Assistant, sans-serif;
    font-size: 24px;
}

.mobile-option-header{
margin-bottom: 20px !important;
}
/* === Unified calendar & share icon style for mobile === */
@media (max-width: 768px) {
.calendar-grid,
.share-section .d-flex {
  display: flex !important;
  flex-direction: row;
  gap: 1rem !important;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.calendar-item,
.icon-share-link {
  width: 45px !important;
  height: 45px !important;
  padding: 0 !important;
  border-radius: 8px;
  border: 1px solid #ccc;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.calendar-item span {
  display: none !important; /* hide calendar text */
}

.calendar-item img,
.icon-share-link img {
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
}

.share-section .d-flex {
  width: auto !important;
}
}
.breadcrumb-nav {
flex-wrap: wrap;
line-height: 1.6;
row-gap: 4px;
}

.breadcrumb-item-wrapper {
white-space: nowrap; /* keeps each breadcrumb & its separator together */
}

.breadcrumb-current {
white-space: nowrap; /* keeps the full text together, OR remove this if you want it to wrap */
}
/* Make info rows flex aligned consistently */
.info-row {
display: flex;
align-items: start;
flex-wrap: wrap; 
gap: 0.5rem;
}

/* Ensure icon is consistently sized and aligned */
.icon-wrapper {

display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.icon-wrapper svg {
width: 100%;
height: 100%;
display: block;
}

/* Adjust label/text to align vertically and prevent pushing */
.info-label,
.info-text {

display: inline-block;
vertical-align: middle;
}

/* Specific spacing for the dual-column layout (Date + Location row) */
.date-location-wrapper {
flex-wrap: wrap;
}

.date-location-wrapper .info-row {
}@media (min-width: 992px) and (max-width: 1400px) {
#theatre-payment-section .row {
  flex-direction: column !important;
  align-items: center;
}

/* Shared width for all sections */
#slider-container,
#show-info-container,
#price-card-container {
  width: 100%;
  /*max-width: 320;  or 750px for balance */
  padding: 0 15px;
  margin: 0 auto; /* center them */
}

#price-card-container {
  /* margin-top: 2rem; */
}

.video-wrapper.aspect-662-372 {
  aspect-ratio: 662 / 372;
  width: 100%;
  max-width: 100%;
}
}
@media (min-width: 992px) and (max-width: 1200px) {
.allProductSection .row {
  flex-direction: column;
  align-items: center;
}

.allProductSection .col-md-9,
.allProductSection .col-md-6,
.allProductSection .col-md-3,
.allProductSection .price-card,
.allProductSection .date-boxes,
.allProductSection .slider-wrapper {
  max-width: 83vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}  

.allProductSection .price-card

 {

 
  padding: 15px 15px !important;
}

.allProductSection .price-card {
  /* max-width: 320px; */
  margin: 2rem auto;
}

.allProductSection .date-boxes {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}
}
.deals-slider-section {
padding-top: 0px !important;
}.slider-title-container {
padding-top: 0px !important;
}.product-page .slider-title {
padding-top: 20px; /* Adjust the value as needed */
}/* Make the showâ€‘info panel a positioning context */
#show-info-2 {
position: relative;

}

/* Position the shareâ€‘section inside it */
#show-info-2 #share-section-container {
position: absolute;
top: 5px;
left: 0;
/* If you need to nudge it further: */
/* top: 5px; */
/* left: 5px; */
}
#show-info {
  position: relative;
  padding: 5px 0 !important;
 
}
#show-info #share-section-container {
  position: absolute;
  top: 5px;
  left: 0;
}
#middle-info-container {
  position: relative;
  /* your existing padding */

}

#middle-info-container #share-section-container {
  position: absolute;
  top: 5px;
  left: 0;
}


@media(min-width:991px)
{
  .show-title {
    position: relative;
    padding: 5px 0 !important;
   padding-left: 100px !important;
  }
}     

/** end  of benefits css **/
  
/** styles css **/

/* âœ… General Styles */
body {
    font-family: 'Assistant', sans-serif;
    background-color: #F7F7F7;
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
}


/* âœ… Footer */
.footer {
    background-color: #002855;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}
.swiper-button-next::after, 
.swiper-button-prev::after {
    display: none !important;
}


* {
    font-family: 'Assistant', !important;
}
.swiper-button-disabled {
    pointer-events: auto !important;
    opacity: 1 !important;
  }
  
.iframe-section {
    width: 100%;
    border: none;
    overflow: hidden;
    display: block;
}

iframe::-webkit-scrollbar {
    display: none; /* Hide scrollbar for cleaner look */
}
/* âœ… Apply 'Assistant' font to the entire website */
body, html {
    font-family: 'Assistant',  !important;
}

/* âœ… Ensure specific elements inherit the font */
button, input, textarea, select {
    font-family: inherit !important;
}

/* âœ… Force the font inside all components */
* {
    font-family: 'Assistant', !important;
}

/** style css end **/

  
  /* Inline styles (unchanged design) */
 
  /* === Button Overrides === */
  #my-product-third-section .price-col .btn-seats:nth-of-type(1) {
    background-color: #F4B738 !important;
  }
  #my-product-third-section .price-col .btn-seats:nth-of-type(2) {
    background-color: #F2994A !important;
  }

  /* === Price Card Row Styling === */
  #my-product-third-section .price-card .price-row {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .price-card .price-row:last-child {
    margin-bottom: 10px;
border-bottom: none !important;
}

  /* === Headings === */
  #my-product-third-section .price-card h4 {
    color: #000;
    text-align: right;
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  /* === Ticket label === */
  #my-product-third-section .price-card .price-row .top-row .ticket-label {
    color: #031652;
    text-align: right;
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  /* === Price text === */
  #my-product-third-section .price-card .price-row .top-row .price-value {
    color: #031652;
    font-family: Assistant, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 24px;
  }

  /* === Dropdown Arrow === */
  .quantity-select-fullwidth {
    width: 100%;
    direction: rtl;
    text-align: right;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f8f8f8 url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0.58L6 5.17l4.59-4.59L12 2l-6 6-6-6z' fill='%23031652'/%3E%3C/svg%3E") no-repeat 0.75rem center;
    background-size: 0.6rem auto;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 2rem 0.5rem 2.5rem;
    color: #031652;
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

/* Match Theatre Slider Structure Exactly */
.slider-outer.product-slider-outer {
  position: relative;
  overflow: visible !important;
}

#photo-container {
  position: relative;
  overflow: visible !important;
}

.product-swiper {
  width: 100%;
  overflow: hidden;
}

.product-swiper .swiper-wrapper {
  display: flex;
  transition-property: transform;
  will-change: transform;
}

.product-swiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.product-swiper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Arrows Style */
.product-slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 1000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-slider-arrow img {
  width: 100%;
  height: auto;
}

/* Position arrows half in half out */
#productRightArrow {
  left: -25px;
}

#productLeftArrow {
  right: -25px;
}

.product-pagination {
  position: absolute;
  bottom: 50px !important;
 
  z-index: 10;
}

/* Hide on mobile */
@media (max-width: 576px) {
  .product-slider-arrow {
    display: none !important;
  }
  
  .product-swiper-wrapper{
      padding-bottom:0 !important;
  }
  
  .product-pagination {
    bottom: 0 !important;
    }
  
}/* Pagination bullets (same as theatre) */


  .ul-info {
    color: black !important;
    font-size: 20px;
  }

  /* Segmented Control Styles */
  .segmented-section {
    padding: 0 0 2em 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
  }
  .segmented-options-card {
    margin-left: auto;
  }
  .segmented-control {
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    align-items: center;
    gap: 120px; /* Adjust the gap value as needed */
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
    min-width: 350px; /* Prevent shrinking */
  }

  .segment-btn {
    border: none;
    background: none;
    color: #000;
    cursor: pointer;
    position: relative;
    text-align: center;
    font-family: Assistant, sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 66px;
  }
  .segment-btn.active {
    color: #000;
  }
  .segment-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background-color: #00aeed;
  }
  #mobile-content-display {
    margin-top: 20px;
  }

  /* Option 1 Styles */
  .h4-primary {
    color: #000;
    font-family: Assistant, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 123%;
    text-align: right;
  }
  
  .p-primary {
    color: black;
    font-family: Assistant, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 123%;
    text-align: right;
  }

  /* Option 2 Styles */
  .option2-header {
    color: #3C4E7D;
    text-align: right;
    font-family: Assistant, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 66px;
  }
  .span-primary {
    color: #000;
    text-align: right;
    font-family: Assistant, sans-serif;
    font-size: 20px;
  }
  .strong-primary {
    color: #EB8F23;
    text-align: right;
    font-family: Assistant, sans-serif;
    font-size: 20px;
  }
  .ul-info {
    list-style: none;
    margin-left: 20px;
    padding: 0;
  }
  .li-info {
    font-size: 22px;
  }

  /* Option 3 Styles */
  .option3-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .option3-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
  }
  .option3-text {
    font-size: 20px;
    color: #000;
  }
  .span-bold {
    font-weight: bold;
    margin-left: 4px;
    margin-right: 4px;
  }

  @media (max-width: 768px) {
    .segmented-section {
      padding: 5px 0;
    }
    .segmented-control {
      flex-direction: column;
      gap: 10px;
    }
    .segment-btn {
      width: 100%;
    }
  }
  .option-content {
    min-height: 200px; /* Ensures consistent height */
    min-width: 100%; /* Prevents flex shrink */
    visibility: hidden;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .option-content.active {
    visibility: visible;
    position: relative;
    opacity: 1;
  }

  /* Hide the segmented control on mobile */
  @media (max-width: 768px) {
    .segmented-control {
      display: none;
    }
    /* Ensure the content sections display normally on mobile */
    .option-content {
      visibility: visible !important;
      position: relative !important;
      opacity: 1 !important;
      min-height: auto;
    }
    /* Mobile container for each option */
    .mobile-option-container {
      margin-bottom: 1.5rem;
    }
    /* Remove the divider by setting no bottom border on mobile headers */
    .mobile-option-header {
      border-bottom: none;
    }
  }
  @media (max-width: 768px) {
    /* Fixed option title (from the segmented control) */
    .mobile-option-header {
      font-size: 30px; /* Larger font size for the option title */
      font-weight: 700;
      text-align: right;
      margin-bottom: 10px;
    }

    /* API-generated content inside each mobile option container */
    .mobile-option-container .h4-primary {
      margin-bottom: 15px;
      font-size: 20px; /* Smaller than the fixed title */
      font-weight: 600;
      text-align: right;
    }
    .mobile-option-container .p-primary {
      font-size: 18px;
      text-align: right;
    }
    .mobile-option-container .ul-info,
    .mobile-option-container .li-info {
      font-size: 18px;
    }
    /* Option 3 Styles */
    .option3-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    @media (max-width: 768px) {
      .mobile-option-container {
        margin-bottom: 1rem; /* Increase this value to add more space between options */
      }
    }
  }
  .option3-container svg {
    width: 65px !important;
    height: 65px !important;
  }
  @media (max-width: 768px) {
    @media (max-width: 768px) {
      .option3-text {
        font-size: 18px !important;
        color: #000;
      }
      .option3-container svg {
        width: 40px !important;
        height: 40px !important;
      }
    }
  }
  .ul-info li svg {
    margin-inline-end: 8px; /* adds space between the circle and following text */
  }
  .ul-info li svg {
    margin-inline-end: 8px; /* adds space between the circle and following text */
  }

  /* Hide the segmented control (the tabs) on desktop */
  .segmented-control {
    display: none !important;
  }

  /* Ensure all content sections are visible and in natural flow on desktop */
  .option-content {
    visibility: visible !important;
    position: relative !important;
    opacity: 1 !important;
  }

  /* Remove any divider line under header titles on desktop */
  .header-border {
    border-bottom: none !important;
  }
  .mobile-option-header {
    color: #00A6CE;
    font-size: 32px;
  }
@media(min-width: 768px){
  .mobile-option-container{
    padding-bottom: 1rem;
  }}

/* ====== Container around everything ====== */
 .share-section {
  position: relative;
  display: inline-block;
}

/* ✅ MAKE THE TOGGLE ALWAYS ON TOP */
.share-toggle {
  position: relative;
  z-index: 10;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.share-toggle img {
  width: 48px;
  height: 48px;
}

.share-icons {
  position: absolute;
  top: 50%;
  right: -100px; /* ✅ Move entire block 100px to the left of the toggle */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
  width: 150px; /* ✅ must be at least as wide as your icon layout */
}



.share-section.expanded .share-icons {
  opacity: 1;
  pointer-events: auto;
}

.share-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: gray;
  transition: transform 0.3s ease;
}

.share-link img {
  width: 24px;
  height: 24px;
}

.share-link.instagram { background-color: #FFE0EE; transform: translate(-90px, 20px); }
.share-link.facebook  { background-color: #E0EEFF; transform: translate(-55px, 0px); }
.share-link.whatsapp  { background-color: #E0FFE0; transform: translate(-55px, 0px); }
.share-link.link-icon { background-color: #FFF1E0; transform: translate(-90px, -15px); }

/* ✅ Default Size (Large Screens) */
.arrow-img {
    width: 60px;
    height: 60px;
}

/* ✅ Medium Screens (Desktops & Laptops) */
@media (max-width: 1400px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
    .slider-wrapper {
        padding: 0 40px; /* ✅ Reduce padding for smaller screens */
    }
}

/* ✅ Medium Screens (Desktops & Laptops) */
@media (max-width: 1200px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
    .slider-wrapper {
        padding: 0 40px; /* ✅ Reduce padding for smaller screens */
    }
}

/* ✅ Small Laptops & Tablets */
@media (max-width: 992px) {
    .arrow-img {
        width: 45px;
        height: 45px;
    }
    .slider-wrapper {
        padding: 0 80px; /* ✅ Reduce padding for smaller screens */
    }
}

/* ✅ Tablets & Large Phones */
@media (max-width: 768px) {
    .arrow-img {
        width: 40px;
        height: 40px;
    }
}

/* ✅ Small Phones */
@media (max-width: 576px) {
    .arrow-img {
        width: 35px;
        height: 35px;
    }
}

/* ✅ Extra Small Phones */
@media (max-width: 400px) {
    .arrow-img {
        width: 30px;
        height: 30px;
    }
}

    /* ✅ Full-Width Wrapper to Allow Arrows to Move */
.slider-wrapper {
    position: relative;
    width: 100vw; /* ✅ Expands full width of viewport */
    max-width: 100%; /* ✅ Ensures it doesn't break layout */
    overflow: hidden; /* ✅ Prevents extra slides from showing */
    display: flex;
    justify-content: center;
}

    .container{
        padding: 0 80px; /* Increase padding to give arrows room */
        overflow: visible;

    }
/* ✅ Title Container (Ensures Centering) */
.slider-title-container {
    padding-top: 20px;
    text-align: center; /* Center the text */
}

/* ✅ Title Styling */
.slider-title {
    padding: 20px 0;   
    font-size: 50px;
    display: inline-block; /* Keeps it centered */
    position: relative;
    color: #231F20;
}

/* ✅ Underline Adjusted to Title Width */
.slider-title .title-underline {
    display: block;
    width: 50%; /* Matches text width */
    height: 3px;
    background-color: #EB8F23;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}


    .deals-slider{
        position: relative;
    max-width: 1500px; /* ✅ Adjust width based on your design */
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
        
    }

.deals-slider-section{
    padding-top: 20px;
}
/* ✅ Ensure the Parent Container Allows Enough Space */
.deals-slider-section .container {
    max-width: 100%;
    padding: 0 80px; /* ✅ Enough space for arrows */
    position: relative; /* ✅ Keeps arrows inside */
}
/* ✅ Default for Large Screens */
.slider-wrapper {
    padding: 0 80px;
}

/* ✅ Large Screens (1200px - 1400px) */
@media (max-width: 1400px) {
    .slider-wrapper {
        padding: 0 40px;
    }
}

/* ✅ Medium Screens (992px - 1199px) */
@media (max-width: 1200px) {
    .slider-wrapper {
        padding: 0 30px;
    }
}

/* ✅ Tablets (768px - 991px) */
@media (max-width: 992px) {
    .slider-wrapper {
        padding: 0 20px; /* ✅ Reduce padding for smaller screens */
    }
}

/* ✅ Large Phones (576px - 767px) */
@media (max-width: 768px) {
    /* ✅ Title Styling */
.slider-title {
    padding-bottom: 40px;    
    font-size: 35px;
    display: inline-block; /* Keeps it centered */
    position: relative;
    color: #231F20;
}
    .slider-wrapper {
        padding: 0 32.5px; /* ✅ Reduce even more */
    }
}

/* ✅ Small Phones (Below 576px) */
@media (max-width: 576px) {
    .slider-wrapper {
        padding: 0 32.5px; /* ✅ Reduce even more */
    }
}

/* ✅ Prevent Slides from Getting Cut */
.container {
    padding: 0 60px; /* Adjusted padding to prevent cut-off */
}

/* ✅ Fix Slide Cut-Off Issue */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding-bottom: 60px !important;
    max-width: 100%; /* ✅ Ensures it doesn't break layout */

}

/* ✅ Deal Cards (Each with a Shadow Only Beneath) */
.deal-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); /* Shadow only beneath */
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    padding-bottom: 15px;
    position: relative;
}

.deal-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px; /* Small shadow only beneath */
    box-shadow: 0px 10px 15px rgba(5, 4, 4, 0.1);
}

/* ✅ Prevent Slide Overflow Issues */
.swiper-slide {
    flex-shrink: 0;
    width: auto;
}

/* ✅ Hover Effect */
.deal-card:hover {
    cursor:pointer;
}

/* ✅ Image Wrapper */
.deal-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.deal-card:hover .deal-img {
  transform: scale(1.1);
}

.deal-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keep default align-items: stretch so headings & desc fill width if you like */
}

/* ✅ Title and Description */
.deal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #231F20;
    transition: color 0.3s ease-in-out;
}

.deal-desc {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 12px;
    transition: color 0.3s ease-in-out;
}

/* ✅ Hover Effect: Change text color */
.deal-card:hover .deal-title,
.deal-card:hover .deal-desc {
    color: #EB8F23;
}
.deal-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keep default align-items: stretch so headings & desc fill width if you like */
}

/* ensure border-box so borders are inside the element’s box */
.deal-link {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 auto;             /* centers in the flex container */
  text-decoration: none;
  font-family: Assistant, sans-serif;
  font-size: 20.858px;
  line-height: 30.338px;
  color: #7B7B7B;

  box-sizing: border-box;      /* include border in the element’s width */
  border: 2px solid transparent;      /* transparent border all around */
  border-bottom-color: #EB8F23;       /* only bottom is visible */
  border-radius: 0;            /* no rounding initially */

  transition:
    border-color 0.3s ease-in-out,
    color        0.3s ease-in-out,
    border-radius 0.3s ease-in-out;
}

.deal-card:hover .deal-link {
  /* match your .deal-link:hover styles */
  border-color: #EB8F23;    /* color all four sides */
  color: #EB8F23;
  border-radius: 10px;      /* round all corners */
  background-color: white;  /* keep white bg */
  cursor: pointer;
}


/* ✅ Remove Underline on Hover */
.deal-link::after {
    content: "";
    display: none; /* ✅ Remove underline completely */
}




@media (max-width: 992px) {
 
    .deal-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
  
    .deals-slider-arrow {
        display: block;
    }
    .deal-img-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .deal-img-wrapper {
        height: 160px;
    }
    .deal-title {
        font-size: 22px;
    }
    .deal-desc {
        font-size: 16px;
    }
    .deal-link {
        font-size: 15px;
    }
}

/* ✅ Default Size (Large Screens) */
.arrow-img {
    width: 60px;
    height: 60px;
}

/* ✅ Medium Screens (Desktops & Laptops) */
@media (max-width: 1200px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
}

/* ✅ Small Laptops & Tablets */
@media (max-width: 992px) {
    .arrow-img {
        width: 45px;
        height: 45px;
    }
}

/* ✅ Tablets & Large Phones */
@media (max-width: 768px) {
    .arrow-img {
        width: 40px;
        height: 40px;
    }
}

/* ✅ Small Phones */
@media (max-width: 576px) {
    .arrow-img {
        width: 35px;
        height: 35px;
    }
}

/* ✅ Extra Small Phones */
@media (max-width: 400px) {
    .arrow-img {
        width: 30px;
        height: 30px;
    }
}

/* ✅ Full-Width Wrapper to Keep Arrows on Edges */
.slider-wrapper {
    position: relative;
    width: 100vw; /* ✅ Expands full width of viewport */
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ✅ Ensure Arrows Stay on Screen Edges */
.deals-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 60px; /* Default size */
    height: 60px;
    z-index: 50; /* Ensure arrows are always above slides */
}

/* ✅ Arrows on Edges */
#dealsRightArrow {
    left: 60px;
}

#dealsLeftArrow {
    right: 60px;
}
/* ✅ Large Screens (1200px and up) */
@media (max-width: 1700px) {
  
    #dealsRightArrow {
        left: 35px;
    }
    #dealsLeftArrow {
        right: 35px;
    }
}
/* ✅ Large Screens (1200px and up) */
@media (max-width: 1800px) {
  
  #dealsRightArrow {
      left: 55px;
  }
  #dealsLeftArrow {
      right: 55px;
  }
}
/* ✅ Responsive Adjustments */
/* ✅ Large Screens (1200px and up) */
@media (max-width: 1500px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
    .deals-slider-arrow {
        width: 50px;
        height: 50px;
    }
    #dealsRightArrow {
        left: 25px;
    }
    #dealsLeftArrow {
        right: 25px;
    }
}

/* ✅ Large Screens (1200px and up) */
@media (max-width: 1200px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
    .deals-slider-arrow {
        width: 50px;
        height: 50px;
    }
    #dealsRightArrow {
        left: 25px;
    }
    #dealsLeftArrow {
        right: 25px;
    }
}

/* ✅ Medium Screens (992px - 1199px) */
@media (max-width: 992px) {
    .arrow-img {
        width: 45px;
        height: 45px;
    }
    .deals-slider-arrow {
        width: 45px;
        height: 45px;
    }
    #dealsRightArrow {
        left: 10px;
    }
    #dealsLeftArrow {
        right: 10px;
    }
}

/* ✅ Tablets (768px - 991px) */
@media (max-width: 768px) {
    .arrow-img {
        width: 40px !important;
        height: 40px !important;
    }
    .deals-slider-arrow {
        width: 40px !important;
        height: 40px !important;
    }
    #dealsRightArrow {
        left: 35px;
    }
    #dealsLeftArrow {
        right: 15px;
    }
}

/* ✅ Large Phones (576px - 767px) */
@media (max-width: 576px) {
    .arrow-img {
        width: 35px;
        height: 35px;
    }
    .deals-slider-arrow {
        width: 35px;
        height: 35px;
    }
}

/* ✅ Small Phones (401px - 575px) */
@media (max-width: 400px) {
    .arrow-img {
        width: 30px;
        height: 30px;
    }
    .deals-slider-arrow {
        width: 30px;
        height: 30px;
    }
}

/* ✅ Hide Arrows on Extra Small Screens */
@media (max-width: 350px) {
    .deals-slider-arrow {
        display: block;
    }
}
@media (min-width: 1500px) {
  /* Increase the slider container's max-width */
  .deals-slider {
    max-width: 1800px; /* Increase overall slider width */
    margin: 0 auto;
  }
  
  /* Let the deal card take more width */
  .deal-card {
    /* Remove or adjust the scaling if needed */
    width: calc(100% / 3 - 20px); /* Example: if you want 3 cards per view with some gap */
  }
  
  /* Make the image wrapper fill its parent */
  .deal-img-wrapper {
    width: 100%;      /* Fills the entire width of the deal card */
    height: 250px;    /* Adjust height as needed */
  }
  
  .deal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Adjust text sizes if needed */
  .deal-title {
    font-size: 24px;
  }
  .deal-desc {
    font-size: 20px;
  }
  .deal-link {
    font-size: 20px;
  }
}

.cross-price {
	font-size:0.8em;
	text-decoration: line-through !important;
}

.deal-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); /* Shadow only beneath */
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    padding-bottom: 15px;
    position: relative;
}

.deal-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px; /* Small shadow only beneath */
    box-shadow: 0px 10px 15px rgba(5, 4, 4, 0.1);
}

/* ✅ Prevent Slide Overflow Issues */
.deal-swiper-slide {
    flex-shrink: 0;
    width: auto;
}

/* ✅ Hover Effect */
.deal-card:hover {
    cursor:pointer;
}

/* ✅ Image Wrapper */
.deal-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: start;
}

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.deal-card:hover .deal-img {
  transform: scale(1.1);
}

.deal-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keep default align-items: stretch so headings & desc fill width if you like */
}

/* ✅ Title and Description */
.deal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #231F20;
    transition: color 0.3s ease-in-out;
}

.deal-desc {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 12px;
    transition: color 0.3s ease-in-out;
}

/* ✅ Hover Effect: Change text color */
.deal-card:hover .deal-title,
.deal-card:hover .deal-desc {
    color: #EB8F23;
}
.deal-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keep default align-items: stretch so headings & desc fill width if you like */
}

/* ensure border-box so borders are inside the element’s box */
.deal-link {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 auto;             /* centers in the flex container */
  text-decoration: none;
  font-family: Assistant, sans-serif;
  font-size: 20.858px;
  line-height: 30.338px;
  color: #7B7B7B;

  box-sizing: border-box;      /* include border in the element’s width */
  border: 2px solid transparent;      /* transparent border all around */
  border-bottom-color: #EB8F23;       /* only bottom is visible */
  border-radius: 0;            /* no rounding initially */

  transition:
    border-color 0.3s ease-in-out,
    color        0.3s ease-in-out,
    border-radius 0.3s ease-in-out;
}

.deal-card:hover .deal-link {
  /* match your .deal-link:hover styles */
  border-color: #EB8F23;    /* color all four sides */
  color: #EB8F23;
  border-radius: 10px;      /* round all corners */
  background-color: white;  /* keep white bg */
  cursor: pointer;
}


/* ✅ Remove Underline on Hover */
.deal-link::after {
    content: "";
    display: none; /* ✅ Remove underline completely */
}




@media (max-width: 992px) {
 
    .deal-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
  
    .deals-slider-arrow {
        display: block;
    }
    .deal-img-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .deal-img-wrapper {
        height: 160px;
    }
    .deal-title {
        font-size: 22px;
    }
    .deal-desc {
        font-size: 16px;
    }
    .deal-link {
        font-size: 15px;
    }
}

/* ✅ Default Size (Large Screens) */
.arrow-img {
    width: 60px;
    height: 60px;
}

/* ✅ Medium Screens (Desktops & Laptops) */
@media (max-width: 1200px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
}

/* ✅ Small Laptops & Tablets */
@media (max-width: 992px) {
    .arrow-img {
        width: 45px;
        height: 45px;
    }
}

/* ✅ Tablets & Large Phones */
@media (max-width: 768px) {
    .arrow-img {
        width: 40px;
        height: 40px;
    }
}

/* ✅ Small Phones */
@media (max-width: 576px) {
    .arrow-img {
        width: 35px;
        height: 35px;
    }
}

/* ✅ Extra Small Phones */
@media (max-width: 400px) {
    .arrow-img {
        width: 30px;
        height: 30px;
    }
}

/* ✅ Full-Width Wrapper to Keep Arrows on Edges */
.slider-wrapper {
    position: relative;
    width: 100vw; /* ✅ Expands full width of viewport */
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ✅ Ensure Arrows Stay on Screen Edges */
.deals-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 60px; /* Default size */
    height: 60px;
    z-index: 50; /* Ensure arrows are always above slides */
}

/* ✅ Arrows on Edges */
#dealsRightArrow {
    left: 60px;
}

#dealsLeftArrow {
    right: 60px;
}
/* ✅ Large Screens (1200px and up) */
@media (max-width: 1700px) {
  
    #dealsRightArrow {
        left: 35px;
    }
    #dealsLeftArrow {
        right: 35px;
    }
}
/* ✅ Large Screens (1200px and up) */
@media (max-width: 1800px) {
  
  #dealsRightArrow {
      left: 55px;
  }
  #dealsLeftArrow {
      right: 55px;
  }
}
/* ✅ Responsive Adjustments */
/* ✅ Large Screens (1200px and up) */
@media (max-width: 1500px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
    .deals-slider-arrow {
        width: 50px;
        height: 50px;
    }
    #dealsRightArrow {
        left: 25px;
    }
    #dealsLeftArrow {
        right: 25px;
    }
}

/* ✅ Large Screens (1200px and up) */
@media (max-width: 1200px) {
    .arrow-img {
        width: 50px;
        height: 50px;
    }
    .deals-slider-arrow {
        width: 50px;
        height: 50px;
    }
    #dealsRightArrow {
        left: 25px;
    }
    #dealsLeftArrow {
        right: 25px;
    }
}

/* ✅ Medium Screens (992px - 1199px) */
@media (max-width: 992px) {
    .arrow-img {
        width: 45px;
        height: 45px;
    }
    .deals-slider-arrow {
        width: 45px;
        height: 45px;
    }
    #dealsRightArrow {
        left: 10px;
    }
    #dealsLeftArrow {
        right: 10px;
    }
}

/* ✅ Tablets (768px - 991px) */
@media (max-width: 768px) {
    .arrow-img {
        width: 40px !important;
        height: 40px !important;
    }
    .deals-slider-arrow {
        width: 40px !important;
        height: 40px !important;
    }
    #dealsRightArrow {
        left: 35px;
    }
    #dealsLeftArrow {
        right: 15px;
    }
}

/* ✅ Large Phones (576px - 767px) */
@media (max-width: 576px) {
    .arrow-img {
        width: 35px;
        height: 35px;
    }
    .deals-slider-arrow {
        width: 35px;
        height: 35px;
    }
}

/* ✅ Small Phones (401px - 575px) */
@media (max-width: 400px) {
    .arrow-img {
        width: 30px;
        height: 30px;
    }
    .deals-slider-arrow {
        width: 30px;
        height: 30px;
    }
}

/* ✅ Hide Arrows on Extra Small Screens */
@media (max-width: 350px) {
    .deals-slider-arrow {
        display: block;
    }
}
@media (min-width: 1500px) {
  /* Increase the slider container's max-width */
  .deals-slider {
    max-width: 1800px; /* Increase overall slider width */
    margin: 0 auto;
  }
  
  /* Let the deal card take more width */
  .deal-card {
    /* Remove or adjust the scaling if needed */
    width: calc(100% / 3 - 20px); /* Example: if you want 3 cards per view with some gap */
  }
  
  /* Make the image wrapper fill its parent */
  .deal-img-wrapper {
    width: 100%;      /* Fills the entire width of the deal card */
    height: 250px;    /* Adjust height as needed */
  }
  
  .deal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Adjust text sizes if needed */
  .deal-title {
    font-size: 24px;
  }
  .deal-desc {
    font-size: 20px;
  }
  .deal-link {
    font-size: 20px;
  }
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding-bottom: 60px !important;
    max-width: 100%; /* ✅ Ensures it doesn't break layout */

}

/* *********** */
/*  Hall Map   */
/* *********** */

/* === Title Styling === */
  .hall-map-title-text {
    font-family: Assistant;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: #3C4E7D;
    position: relative;
    display: inline-block;
    padding: 5px;
  }
  
  .hall-map-title-text::after {
    content: "";
    position: absolute;
    bottom: -9px;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #00B3DC;
  }
  
  .hall-map-underline-wrapper {
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 8px;
    text-align: right;
  }
  
  /* === Subtitle Styling === */
  .hall-map-subtitle {
    font-family: Assistant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-align: right;
    color: #3C4E7D;
  }
  
  /* === Custom Dropdown === */
  .dropdown-container {
    position: relative;
    display: inline-block;
  }
  
  .custom-dropdown {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    min-width: 260px;
    height: 48px;
    direction: rtl;
  }
  
  /* Select Element */
  .hall-map-select {
    border: none;
    box-shadow: none;
    outline: none;
    font-family: Assistant;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #000;
    line-height: 30px;
    padding: 0 12px;
    flex: 1;
    background-color: transparent;
    appearance: none;
    text-align: right;
    direction: rtl;
    height: 100%;
    cursor: pointer;
    appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  }
  
  /* Remove native arrows */
  .hall-map-select::-ms-expand {
    display: none;
  }
  .hall-map-select::-webkit-inner-spin-button,
  .hall-map-select::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
  }
  
  /* Divider between select and icon */
  .dropdown-divider {
    width: 1px;
    height: 60%;
    background-color: #D9D9D9;
  }
  
  /* Arrow Icon */
  .dropdown-icon {
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* === Buttons === */
  .hall-map-btn,
  .hall-map-add-cart {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 25px;
  }
  
  .hall-map-btn {
    font-family: Assistant !important;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    color: #000;
    line-height: 30px;
    padding: 0 12px;
    background-color: #F6F6F6;
    border-color: #ccc;
  }
  
  .hall-map-add-cart {
    color: #FFF;
text-align: right;
font-family: Assistant !important;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 264% */
    background-color: #F4B738  ;
    border: none;
    padding: 10px 30px;
  }
  
  
  /* old maps */

 /* ************** MAPS ************************/

.zoomIn {
    position: absolute;
    right: 10px;
    top: 10px;
    visibility: hidden;
}

.zoomFit {
    position: absolute;
    right: 10px;
    top: 50px;
    visibility: hidden;
}

.zoomOut {
    position: absolute;
    right: 10px;
    top: 90px;
    visibility: hidden;
}

#canvas_wrap {
	/* background: #fbe795 !important; */
}

#canvas {
    height: 75vh;
    background-color: white;
    overflow: hidden;
    text-align: center;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	border: 2px solid #fbe795;
    position: relative;
}

.seat {
    position: absolute;
    font: 9px arial;
    line-height: 20px;
    text-align: center;
    padding: 0;
    margin: 0px auto;
    text-decoration: none;
    font-weight: normal;
    color: black;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	font: 700 .567rem/1.25rem arial;
    text-decoration: none;
    color: white;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    border-radius: 1.25rem
}

.seatCanSelect {
    color: white;
}

.rowIndicator {
    position: absolute;
    font: 12px arial;
    line-height: 20px;
    text-align: center;
    padding: 0;
    margin: 0px auto;
    font-weight: bold;
    width: 20px;
    height: 20px;
    color: red;
}

a.seatSelect:link {
    text-decoration: none;
    cursor: pointer;
}

a.seatSelect:visited {
    text-decoration: none;
    cursor: pointer;
}

a.seatSelect:hover {
    text-decoration: none;
    cursor: pointer;
}

a.seatSelect:active {
    text-decoration: none;
    cursor: pointer;
}

.stopper {
	border: 1px solid red;
    background: white;
    padding: 5px;
    margin: 2px 0;
}
/*  ********************* END Maps ***************************/
  

  
	  #course-info .info-row {
    display: flex
;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E0E0E0;
}

#course-info .icon-wrapper {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#course-info .info-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}

#course-info .info-text {
    flex: 1;
    font-size: 14px;
    color: #000;
    text-align: right;
}

.icon-wrapper img {
	height:20px;
}

/* --- iPad Mini/Air: FORCE MOBILE in PORTRAIT --- */
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1180px) {

  /* stack columns like mobile */
  .allProductSection .row { flex-direction: column !important; }

  /* kill desktop widths on md cols so they span full width */
  .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* show mobile segmented, hide desktop segmented */
  #segmented-control-placeholder { display: none !important; }
  #segmented-control-mobile-placeholder { display: block !important; }

  /* info rows behave like your mobile rules */
  .info-row { 
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  /* date & location: stacked (mobile feel) */
  .date-location-wrapper {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* price card centered full-width */
  .price-card {
    max-width: none !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* calendar/share: compact row like mobile */
  .add-calendar-section, .share-section {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    flex-direction: row !important;
  }
  .calendar-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
  }
  .calendar-item span { display: none !important; }

  /* breadcrumbs: allow wrapping like mobile */
  .breadcrumb-nav { flex-wrap: wrap !important; }
  .breadcrumbs-scroll-wrapper {
    overflow-x: visible !important;
    white-space: normal !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  /* date boxes: tighter grid for tablet portrait */
  .date-boxes {
    grid-template-columns: repeat(2, minmax(140px, 1fr)) !important;
    gap: 1rem !important;
  }

  /* slider pagination like mobile */
  .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 15px !important;
    width: auto !important;
  }

  /* headline sizing: use your mobile sizes */
  .show-title {
    font-size: 35px !important;
    line-height: 40px !important;
    padding-left: 0 !important;
    margin-top: 1rem !important;
  }
}

/* --- (Optional) Ensure DESKTOP feel for tablet LANDSCAPE below 1180 if needed --- */
/* Covers edge devices that are landscape but still ≤991px wide */
@media screen and (orientation: landscape) and (min-width: 768px) and (max-width: 991px) {
  .allProductSection .row { flex-direction: row !important; }
  #segmented-control-placeholder { display: block !important; }
  #segmented-control-mobile-placeholder { display: none !important; }
  .price-card { max-width: 340px !important; }
  .date-location-wrapper { flex-direction: row !important; gap: 3rem !important; }
}

/* iPad Mini/Air in PORTRAIT: show the mobile segmented control */
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1180px) {
  /* unhide the wrapper that has d-md-none, but only for THIS block */
  .d-md-none:has(#segmented-control-mobile-placeholder) {
    display: block !important;
  }
  /* hide the desktop segmented control */
  #segmented-control-placeholder {
    display: none !important;
  }
}


.swiper-navigation-icon {
	
	display:none !important;
}

.btn-done {
    background-color: #F4B738 ;
    color: #fff;
    border: none;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
}
