body {
  font-family: "Cereal", Arial, sans-serif;
  font-weight: 550;
  color: #848486;
  margin: 0;
  padding-top: 60px;
}
@font-face {
  font-family: "Cereal";
  src: url("https://a0.muscache.com/airbnb/static/airbnb-dls-web/build/fonts/Airbnb_Cereal-Book-9a1c9cca9bb3d65fefa2aa487617805e.woff2") format("woff2"), url("https://a0.muscache.com/airbnb/static/airbnb-dls-web/build/fonts/Airbnb_Cereal-Book-aa38e86e3f98554f9f7053d7b713b4db.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h2 {
    font-size: 20px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h3 {
    font-size: 18px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
}
@media (min-width: 576px) {
  h1 {
    font-size: 36px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h2 {
    font-size: 23px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h3 {
    font-size: 23px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
}
p {
  font-size: 16px;
  font-weight: 100;
}

a {
  text-decoration: none;
}

:root {
  --airbnb-red: #FFC107;
  --airbnb-dark: #222222;
  --airbnb-light: #FFFFFF;
  --airbnb-gray: #717171;
  --airbnb-gray-light: #F7F7F7;
  --airbnb-border: #DDDDDD;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

#reviews-container {
  font-family: "Circular", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  max-width: 100%;
  padding: 16px;
  color: var(--airbnb-dark);
}

.reviews-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.rating-summary {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.rating-score {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.star {
  color: var(--airbnb-red);
  margin-right: 4px;
}

.rating-count {
  color: var(--airbnb-gray);
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background-color: var(--airbnb-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.reviewer-name {
  text-align: left;
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.stars {
  color: var(--airbnb-red);
}

.time {
  color: var(--airbnb-gray);
}

.review-text {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.view-profile {
  display: inline-block;
  color: var(--airbnb-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--airbnb-dark);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.view-profile:hover {
  color: var(--airbnb-red);
  border-color: var(--airbnb-red);
}

.error {
  color: var(--airbnb-red);
  text-align: center;
  padding: 24px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  #reviews-container {
    padding: 12px;
  }
  .review-card {
    padding: 16px;
  }
}
/* =====================================================
   HEADER & NAVIGATION STYLES
   ===================================================== */
/* Header Container */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F37342;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-header {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* Logo */
.main-nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

#logoOrange {
  height: 50px;
  width: auto;
  display: block;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-toggle .mobile-nav-close {
  display: none;
}

.mobile-nav-toggle.active .mobile-nav-open {
  display: none;
}

.mobile-nav-toggle.active .mobile-nav-close {
  display: block;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  padding: 17px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-menu li a:hover {
  background-color: white;
  color: #F37342;
}

/* Cart Link Specific Styles */
.cart-item {
  margin-left: 10px;
}

.cart-link {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.cart-link i {
  font-size: 20px;
}

.cart-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  border: 2px solid white;
}

/* =====================================================
   TABLET STYLES (768px - 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .nav-menu li a {
    padding: 14px;
    font-size: 16px;
  }
  .main-header {
    padding: 0 15px;
  }
}
/* =====================================================
   MOBILE STYLES (< 768px)
   ===================================================== */
@media (max-width: 767px) {
  /* Show mobile toggle */
  .mobile-nav-toggle {
    display: block;
  }
  /* Mobile menu styling */
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: calc(100vh - 60px);
    background-color: #F37342;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    align-items: stretch;
  }
  .nav-menu.nav-menu-open {
    right: 0;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu li a {
    width: 100%;
    padding: 16px 24px;
    height: auto;
    border-radius: 0;
    justify-content: flex-start;
  }
  .nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }
  /* Cart item in mobile */
  .cart-item {
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding-top: 10px;
  }
  .cart-link {
    justify-content: flex-start !important;
    gap: 12px;
  }
  .cart-link::before {
    content: "Cart";
    font-size: 16px;
  }
  /* Overlay for mobile menu */
  body.nav-open::before {
    content: "";
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}
/* =====================================================
   SMALL MOBILE STYLES (< 480px)
   ===================================================== */
@media (max-width: 479px) {
  .main-header {
    padding: 0 10px;
  }
  #logoOrange {
    height: 40px;
  }
  .nav-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }
  body.nav-open::before {
    top: 55px;
    height: calc(100vh - 55px);
  }
}
/* =====================================================
   ACCESSIBILITY
   ===================================================== */
.mobile-nav-toggle:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.nav-menu li a:focus {
  outline: 2px solid white;
  outline-offset: -2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  body.nav-open {
    overflow: auto;
  }
}
.fade-in {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.announcement {
  max-width: 1000px;
  text-align: center;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
@media (max-width: 575px) {
  .announcement {
    padding: 0 15px 0 15px;
    margin-top: 10px;
  }
}
@media (min-width: 576px) {
  .announcement {
    padding: 0 30px 0 30px;
    margin-top: 30px;
  }
}
.announcement h1 {
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #F37342;
  display: flex;
}
.announcement h2 {
  justify-content: center;
  display: flex;
}
.announcement a {
  text-decoration: underline;
  color: red;
}

.banner-body {
  position: relative;
}

.banner-body-title-box {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-body-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .banner-body-title h2 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 22px;
  }
  .banner-body-title h3 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .banner-body-title h2 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 35px;
  }
  .banner-body-title h3 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 25px;
  }
}
@media (min-width: 768px) {
  .banner-body-title h2 {
    font-size: 45px;
  }
  .banner-body-title h3 {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .banner-body-title h2 {
    font-size: 60px;
  }
  .banner-body-title h3 {
    font-size: 40px;
  }
}

.circle {
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  background: #F37342;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.circle p {
  font-weight: 500;
}
@media (max-width: 575px) {
  .circle {
    width: 60px;
    height: 60px;
  }
  .circle p {
    font-size: 13px;
    margin-top: 24px;
  }
}
@media (min-width: 576px) {
  .circle {
    width: 80px;
    height: 80px;
  }
  .circle p {
    font-size: 17px;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .circle {
    width: 100px;
    height: 100px;
  }
  .circle p {
    font-size: 20px;
    margin-top: 35px;
  }
}

#orangebackground .back-img {
  opacity: 0.6;
}
#orangebackground a :hover .tour-icon {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
#orangebackground a :hover .foot-note {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
#orangebackground a :hover .back-img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.tours-body {
  max-width: 1000px;
  text-align: center;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
@media (max-width: 575px) {
  .tours-body {
    padding: 0 15px 0 15px;
  }
}
@media (min-width: 576px) {
  .tours-body {
    padding: 0 30px 0 30px;
  }
}

.headline {
  height: 22px;
  width: 100%;
  border-bottom: 10px solid #F37342;
  margin-bottom: 10px;
}
.headline span {
  margin-top: 15px;
  background-color: white;
  padding: 0 10px 0 0;
  color: #F37342;
  float: left;
  font-weight: 20;
  overflow: hidden;
}
@media (max-width: 575px) {
  .headline span {
    font-size: 20px;
  }
}
@media (min-width: 576px) {
  .headline span {
    font-size: 25px;
  }
}

.tours-section {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.tours-section-long {
  margin-top: 10px;
  width: 100%;
  height: 100%;
}
.tours-section-long img {
  width: 100%;
}

.tours-section-blocks {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.tours-section-blocks a {
  background-color: black;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media (max-width: 575px) {
  .tours-section-blocks a {
    margin: 7px;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks a {
    margin: 5px;
  }
}
@media (min-width: 768px) {
  .tours-section-blocks a {
    margin: 5px;
  }
}
@media (min-width: 992px) {
  .tours-section-blocks a {
    margin: 5px;
  }
}
.tours-section-blocks a :hover .tour-icon {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks a :hover .foot-note {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks a :hover .back-img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 300px;
}
@media (max-width: 575px) {
  .tours-section-blocks div {
    width: 40vw;
    height: 40vw;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks div {
    width: 38vw;
    height: 38vw;
  }
}
@media (min-width: 768px) {
  .tours-section-blocks div {
    width: 29vw;
    height: 29vw;
  }
}
@media (min-width: 992px) {
  .tours-section-blocks div {
    width: 300px;
    height: 300px;
  }
}
.tours-section-blocks .tour-icon {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media (max-width: 575px) {
  .tours-section-blocks .tour-icon {
    width: 80%;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks .tour-icon {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .tours-section-blocks .tour-icon {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .tours-section-blocks .tour-icon {
    width: 70%;
  }
}
.tours-section-blocks .back-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks .foot-note {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  color: white;
  position: absolute;
}
@media (max-width: 575px) {
  .tours-section-blocks .foot-note {
    font-size: 12px;
    bottom: -5px;
    right: 10px;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks .foot-note {
    font-size: 20px;
    bottom: 0;
    right: 15px;
  }
}

.body-about {
  width: 100%;
  display: flex;
  justify-content: center;
}
.body-about div {
  display: flex;
  justify-content: center;
  max-width: 768px;
}
@media (max-width: 575px) {
  .body-about div {
    width: 100%;
    padding-top: 28.87%;
  }
}
@media (min-width: 576px) {
  .body-about div {
    width: 90%;
    padding-top: 28.87%;
  }
}
@media (min-width: 768px) {
  .body-about div {
    padding-top: 18.87%;
  }
}
@media (min-width: 992px) {
  .body-about div {
    padding-top: 12.87%;
  }
}
.body-about img {
  width: 100%;
  height: 100%;
}

.body-video {
  background-image: url("/home/videoPic.jpg");
  background-size: cover;
  margin-top: 50px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.body-video h3 {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-size: 45px;
}
.body-video a {
  font-size: 80px;
  color: white;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.body-video a :hover {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  color: #FF0000;
}

@media (max-width: 575px) {
  .description {
    font-size: 19px;
  }
  .tourOptions {
    border: solid 4px #F37342;
  }
}
@media (min-width: 576px) {
  .description {
    font-size: 24px;
  }
  .tourOptions {
    border: solid 4px #F37342;
  }
}
.bookingCalendar {
  border-radius: 5px;
  margin: 5px;
  background-color: white;
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
  display: inline-block;
  vertical-align: center;
  font-family: "Cereal", Arial, sans-serif;
  font-weight: 550;
  color: #848486;
  width: 90vw;
  max-width: 600px;
}
.bookingCalendar .fc-day-grid-event .fc-content {
  white-space: break-spaces;
}

@media (min-width: 800px) {
  #reviews .slidecap {
    width: 50vw;
    max-width: 970px;
    margin: 0 auto;
  }
  .brnotshow {
    display: block;
  }
  .brshow {
    display: none;
  }
}
@media (max-width: 800px) {
  #reviews .slidecap {
    width: 60vw;
    margin: 0 auto;
  }
  .slidecap {
    text-align: center;
  }
  .brnotshow {
    display: none;
  }
  .brshow {
    display: block;
  }
}
#reviews h1 {
  color: #F37342;
  text-align: center;
}

#reviews .reviewsource {
  color: #FDCC0D;
  margin-bottom: 30px;
}
#reviews .reviewsource img {
  width: 200px;
}

.seemorereview-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F37342;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.seemorereview-button:hover {
  background-color: #F37342;
}

.footer {
  background-color: #F37342;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media (max-width: 575px) {
  .footer {
    height: auto;
    flex-direction: column;
  }
  .footer div {
    margin: 0px;
  }
}
@media (min-width: 576px) {
  .footer div {
    margin: 17px;
  }
}

.footer-TA {
  text-align: center;
}
.footer-TA img {
  max-width: 90%;
  max-height: 300px;
}

.footer-text {
  color: #fff;
  text-align: left;
}
.footer-text .footer-text-title {
  font-size: 35px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-text a {
  color: #fff;
}
@media (max-width: 575px) {
  .footer-text {
    text-align: center;
  }
  .footer-text a {
    font-size: 35px;
  }
}
@media (min-width: 576px) {
  .footer-text a {
    font-size: 50px;
  }
}

@media screen and (min-width: 600px) {
  #HGmenu div div {
    text-align: center;
  }
  #HGmenu div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 20px;
    padding: 7px;
    text-align: center;
    /*float: right;*/
  }
  #HGmenu div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 46%;
  }
  #HGmenu div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 31%;
  }
  #HGmenu div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 21%;
  }
  #HGmenu div div .fourdays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 22%;
  }
  #HGmenu div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 48%;
  }
  #HGmenu div div .time {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 31%;
  }
  #HGmenu div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 46%;
  }
  #HGmenu div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 22%;
  }
  #HGmenu div div .singlelinetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 94%;
  }
  #HGmenu div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 48%;
  }
  #HGmenu div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 250px;
  }
  #HGmenu .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 12px;
  }
  #HGmenu div div .tourname:hover {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    color: white;
    background-color: #F37342;
  }
  #HGmenu div div .tourname {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
}
@media (min-width: 400px) and (max-width: 600px) {
  #HGmenu div div {
    text-align: center;
  }
  #HGmenu div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 20px;
    padding: 7px;
    text-align: center;
    /*float: right;*/
  }
  #HGmenu div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 99%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .time {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #HGmenu div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #HGmenu div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 32%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .fourdays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 22%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .singlelinetime {
    border: 2px solid #848486;
    color: #848486;
    width: 92%;
  }
  #HGmenu div div .fourtimes {
    border: 2px solid #848486;
    color: #848486;
    width: 22%;
  }
  #HGmenu div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #HGmenu div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 97%;
  }
  #HGmenu div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 97%;
  }
  #HGmenu div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 250px;
  }
  #HGmenu .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  #HGmenu div div .tourname:hover {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    color: white;
    background-color: #F37342;
  }
  #HGmenu div div .tourname {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
}
@media screen and (max-width: 400px) {
  #HGmenu div div {
    text-align: center;
  }
  #HGmenu div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 5vw;
    padding: 7px;
    text-align: center;
    /*float: right;*/
  }
  #HGmenu div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .time {
    border: 2px solid #848486;
    color: #848486;
    min-width: 25vw;
  }
  #HGmenu div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #HGmenu div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 31%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .fourdays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 23%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #HGmenu div div .singlelinetime {
    border: 2px solid #848486;
    color: #848486;
    width: 97%;
  }
  #HGmenu div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 97%;
  }
  #HGmenu div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 97%;
  }
  #HGmenu div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 83vw;
  }
  #HGmenu div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 55vw;
  }
  #HGmenu .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 10px;
    max-width: 87vw;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  #HGmenu div div .tourname:hover {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    color: white;
    background-color: #F37342;
  }
  #HGmenu div div .tourname {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
}
/* For mobile devices */
@media only screen and (max-width: 600px) {
  .apple-pay-button {
    width: 90%;
    height: 50px;
  }
}
.priceTable {
  width: 100%;
  table-layout: fixed;
}
.priceTable br {
  display: none;
}
.priceTable .remark {
  font-size: 12px;
  line-height: normal;
}
.priceTable .pricetag {
  font-weight: bold;
  color: #F37342;
  font-size: 24px;
  padding-bottom: 5px;
}
.priceTable .favorited th {
  color: #F37342;
}
.priceTable .favorited th, .priceTable .favorited td {
  border: 3px #F37342 solid;
}
.priceTable th, .priceTable td {
  border: 1px solid;
  text-align: left;
  padding: 10px;
  /* Four columns, so each column takes 25% of the table width */
}
.priceTable th {
  width: 25%;
}
.priceTable td {
  width: 75%;
}
.priceTable th h2, .priceTable td h2 {
  margin: 0;
}
@media (max-width: 575px) {
  .priceTable {
    font-size: 20px;
  }
  .priceTable br {
    display: block;
  }
  .priceTable .favorited .pricetag span {
    font-size: 17px;
    color: white;
    background-color: #F37342;
    padding: 2px 8px 2px 8px;
  }
  .priceTable th {
    font-size: 20px;
  }
}
.priceTable .favorited .pricetag span {
  font-size: 15px;
}
@media (min-width: 576px) {
  .priceTable br {
    display: none;
  }
  .priceTable .favorited .pricetag span {
    font-size: 17px;
    color: white;
    background-color: #F37342;
    padding: 3px 10px 3px 10px;
  }
  .priceTable th {
    font-size: 24px;
  }
  .priceTable .pricetag {
    font-size: 24px;
  }
  .priceTable span {
    font-size: 24px;
  }
}

.priceTableH1 {
  color: #F37342;
  text-align: center;
}

.reveal-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .reveal-modal {
    visibility: hidden;
    top: 50px;
    left: 20vw;
    /*margin-left: -300px;*/
    width: 60vw;
    background: #eee url(/home/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 25px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 991px) and (min-width: 600px) {
  .reveal-modal {
    visibility: hidden;
    top: 50px;
    left: 10vw;
    /*margin-left: -300px;*/
    width: 80vw;
    background: #eee url(/home/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 25px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 600px) {
  .reveal-modal {
    visibility: hidden;
    top: 50px;
    left: 3vw;
    /*margin-left: -300px;*/
    width: 90vw;
    background: #eee url(/home/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 2vw;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
.reveal-modal.small {
  width: 200px;
  margin-left: -140px;
}

.reveal-modal.medium {
  width: 400px;
  margin-left: -240px;
}

.reveal-modal.large {
  width: 600px;
  margin-left: -340px;
}

.reveal-modal.xlarge {
  width: 800px;
  margin-left: -440px;
}

.reveal-modal .close-reveal-modal {
  font-size: 22px;
  line-height: 0.5;
  position: absolute;
  top: 8px;
  right: 11px;
  color: #aaa;
  text-shadow: 0 -1px 1px rbga(0, 0, 0, 0.6);
  font-weight: bold;
  cursor: pointer;
}

/* ============================================
   MODERN CHECKOUT PAGE LAYOUT
   Left: Cart Items (2/3) | Right: Summary (1/3)
   ============================================ */
* {
  box-sizing: border-box;
}

/* Container */
.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.checkout-header {
  text-align: center;
  margin-bottom: 40px;
  background: white;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.checkout-header h1 {
  color: #F37342;
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

.checkout-header h1 i {
  margin-right: 15px;
}

.checkout-header p {
  color: #666;
  font-size: 18px;
  margin: 0;
}

/* Main Grid: 2/3 left, 1/3 right */
.checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ========== LEFT COLUMN (2/3) ========== */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Cart Items Section */
.cart-items-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.cart-items-section h2 {
  color: #F37342;
  font-size: 28px;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #F37342;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-items-section h2 i {
  font-size: 26px;
}

.cart-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s;
}

.cart-item:hover {
  border-color: #F37342;
  box-shadow: 0 4px 15px rgba(243, 115, 66, 0.15);
  transform: translateY(-2px);
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.cart-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.cart-item-option {
  font-size: 14px;
  color: #F37342;
  font-weight: 500;
  display: block;
}

.remove-item {
  background: #fff;
  border: 2px solid #d32f2f;
  color: #d32f2f;
  cursor: pointer;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 600;
}

.remove-item:hover {
  background: #d32f2f;
  color: white;
  transform: scale(1.05);
}

.cart-item-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #666;
}

.cart-item-details div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-details i {
  color: #F37342;
  font-size: 16px;
  width: 20px;
}

.cart-item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 2px solid #ddd;
  font-weight: 600;
  font-size: 16px;
}

.cart-item-price .prices {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-price .original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.cart-item-price .current-price {
  color: #F37342;
  font-size: 20px;
  font-weight: 700;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.promo-badge i {
  margin-right: 5px;
}

/* Bundle Discount */
.bundle-discount {
  background: linear-gradient(135deg, #fff7e6 0%, #ffe4cc 100%);
  border: 2px solid #F37342;
  border-left: 5px solid #F37342;
  color: #d85a2a;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(243, 115, 66, 0.1);
}

.bundle-discount i {
  font-size: 28px;
  color: #F37342;
  flex-shrink: 0;
}

.bundle-discount h3 {
  margin: 0 0 3px 0;
  font-size: 16px;
  color: #F37342;
  font-weight: 700;
}

.bundle-discount p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.cart-empty i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.cart-empty p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #666;
}

.cart-empty .btn {
  display: inline-block;
  padding: 15px 40px;
  background: #F37342;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.cart-empty .btn:hover {
  background: #d85a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 115, 66, 0.3);
}

/* Customer Info Form */
.customer-info {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.customer-info h3 {
  color: #F37342;
  font-size: 24px;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #F37342;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

.form-group label i {
  color: #F37342;
  margin-right: 8px;
  width: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #F37342;
  box-shadow: 0 0 0 3px rgba(243, 115, 66, 0.1);
}

.error-message {
  color: #d32f2f;
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.error-message i {
  font-size: 14px;
}

/* Promo Code Section */
.promo-section {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.promo-section h3 {
  color: #F37342;
  font-size: 20px;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-input-group {
  display: flex;
  gap: 10px;
}

.promo-input-group input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.promo-input-group input:focus {
  outline: none;
  border-color: #F37342;
  box-shadow: 0 0 0 3px rgba(243, 115, 66, 0.1);
}

.promo-input-group button {
  padding: 12px 30px;
  background: #F37342;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.promo-input-group button:hover:not(:disabled) {
  background: #d85a2a;
  transform: translateY(-2px);
}

.promo-input-group button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.promo-success,
.promo-error {
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-success {
  background: #e8f5e9;
  color: #2e7d32;
}

.promo-error {
  background: #ffebee;
  color: #d32f2f;
}

/* ========== RIGHT COLUMN (1/3) - STICKY SUMMARY ========== */
.cart-summary {
  background: white;
  border: 3px solid #F37342;
  border-radius: 15px;
  padding: 25px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(243, 115, 66, 0.2);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.cart-summary h2 {
  color: #F37342;
  font-size: 24px;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #F37342;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Price Summary */
.price-summary {
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  color: #666;
}

.price-row.discount {
  color: #2e7d32;
  font-weight: 600;
}

.price-row.total {
  border-top: 2px solid #F37342;
  padding-top: 15px;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #F37342;
}

.price-row.total .amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.original-price-strike {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3px;
}

/* Payment Section */
.payment-section {
  margin-top: 20px;
}

.checkout-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #F37342 0%, #d85a2a 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(243, 115, 66, 0.3);
}

.checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 115, 66, 0.4);
}

.checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.checkout-btn i {
  font-size: 18px;
}

.payment-info {
  margin-top: 15px;
  padding: 12px;
  background: #f0f9ff;
  border-radius: 8px;
  font-size: 13px;
  color: #0277bd;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.payment-info i {
  font-size: 16px;
  flex-shrink: 0;
}

.cancellation-policy {
  margin-top: 15px;
  padding: 12px;
  background: #fff7e6;
  border-radius: 8px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.cancellation-policy strong {
  color: #F37342;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

/* Continue Shopping */
.continue-shopping {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
}

.continue-shopping a {
  color: #F37342;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.continue-shopping a:hover {
  color: #d85a2a;
  gap: 12px;
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-spinner i {
  font-size: 60px;
  color: #F37342;
  margin-bottom: 20px;
}

.loading-spinner p {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .checkout-content {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: relative;
    top: 0;
    max-height: none;
    order: 2; /* Move summary to bottom on mobile */
  }
  .left-column {
    order: 1;
  }
}
@media (max-width: 768px) {
  .checkout-header h1 {
    font-size: 32px;
  }
  .cart-item-details {
    grid-template-columns: 1fr;
  }
  .promo-input-group {
    flex-direction: column;
  }
  .promo-input-group button {
    width: 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bundle-opportunity {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px dashed #999;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
  animation: pulse 2s ease-in-out infinite;
}

.bundle-opportunity i {
  color: #F37342;
  font-size: 18px;
}

.bundle-opportunity strong {
  color: #333;
  font-weight: 600;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
.bundle-opportunity a {
  color: #F37342;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bundle-opportunity a:hover {
  color: #d65a2f;
  text-decoration: underline;
}

.bundle-opportunity a i {
  font-size: 12px;
  margin-left: 4px;
}

/* Apple Pay Button Styles - Add this to your checkout.css */
.apple-pay-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.apple-pay-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.apple-pay-btn:active {
  transform: translateY(0);
}

.apple-pay-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.apple-pay-btn i {
  font-size: 24px;
}

#ckoApplePay {
  margin-top: 15px;
}

/* Add separator between payment methods */
.payment-section .checkout-btn + #ckoApplePay::before {
  content: "OR";
  display: block;
  text-align: center;
  margin: 15px 0;
  color: #999;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.payment-section .checkout-btn + #ckoApplePay::before::before,
.payment-section .checkout-btn + #ckoApplePay::before::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.payment-section .checkout-btn + #ckoApplePay::before::before {
  left: 0;
}

.payment-section .checkout-btn + #ckoApplePay::before::after {
  right: 0;
}

/* Add More Tours Button */
.add-more-tours {
  text-align: center;
  margin: 30px 0;
  padding: 20px 0;
}

.add-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #F37342 0%, #ff8c5a 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(243, 115, 66, 0.3);
}

.add-more-btn:hover {
  background: linear-gradient(135deg, #ff8c5a 0%, #F37342 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 115, 66, 0.4);
  color: white;
  text-decoration: none;
}

.add-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(243, 115, 66, 0.3);
}

.add-more-btn i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .add-more-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
/* UBN Section Styling */
.ubn-section {
  margin-top: 30px;
  padding: 20px;
  background: #fff7e6;
  border-left: 5px solid #f0ad4e;
  border-radius: 4px;
}

.ubn-notice {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #856404;
}

.ubn-notice i {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ubn-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 15px;
  font-weight: 600;
}

.ubn-checkbox input[type=checkbox] {
  vertical-align: bottom;
  margin-top: 0px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 9px;
}

.ubn-checkbox input[type=span] {
  vertical-align: middle;
}

.ubn-warning {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px;
  border-left: 5px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ubn-warning i {
  font-size: 18px;
}

.ubn-fields {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0ad4e;
}

.ubn-fields .form-group {
  background: white;
  padding: 15px;
  border-radius: 4px;
}

.cart-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-item-title a:hover {
  color: #F37342; /* Your brand orange */
  text-decoration: underline;
}

.recommendation-overlay {
  display: none;
}

.recommendation-overlay.ng-show {
  display: block;
}

/*# sourceMappingURL=checkout.css.map */
