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;
}

.quick-add-section {
  background: #f8f8f8;
  padding: 60px 0;
  margin: 40px 0;
  margin-bottom: 0px;
}

.quick-add-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  margin-bottom: 30px;
}

.form-row label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

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

.tour-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tour-option-btn {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.tour-option-btn:hover {
  border-color: #F37342;
  box-shadow: 0 2px 10px rgba(243, 115, 66, 0.2);
}

.tour-option-btn.active {
  border-color: #F37342;
  background: #fff5f2;
}

.tour-option-btn strong {
  display: block;
  font-size: 18px;
  color: #F37342;
  margin-bottom: 5px;
}

.tour-option-btn small {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.time-badge {
  display: inline-block;
  background: #F37342;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.date-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  background: white;
}

.date-input:focus {
  border-color: #F37342;
  outline: none;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 2px solid #F37342;
  background: white;
  color: #F37342;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

.quantity-selector button:hover:not(:disabled) {
  background: #F37342;
  color: white;
}

.quantity-selector button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.quantity-input {
  width: 80px;
  text-align: center;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}

.price-preview {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

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

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

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.total-amount {
  color: #F37342;
  font-size: 24px;
}

.promo-note {
  margin-top: 10px;
  padding: 10px;
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
  font-size: 14px;
  border-radius: 4px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: #F37342;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #d85a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 115, 66, 0.4);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.validation-messages {
  margin-top: 15px;
  min-height: 40px;
}

.error-message {
  color: #d32f2f;
  padding: 12px;
  background: #ffebee;
  border-radius: 6px;
  border-left: 4px solid #d32f2f;
}

.success-message {
  color: #2e7d32;
  padding: 12px;
  background: #e8f5e9;
  border-radius: 6px;
  border-left: 4px solid #4caf50;
}

.success-message a {
  color: #F37342;
  font-weight: 600;
}

.or-divider {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.or-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ddd;
}

.or-divider span {
  position: relative;
  background: #f8f8f8;
  padding: 0 20px;
  color: #999;
  font-size: 16px;
  font-weight: 600;
}

.full-booking-notice {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.full-booking-notice a {
  color: #F37342;
  font-weight: 600;
}

@media (max-width: 768px) {
  .quick-add-card {
    padding: 25px;
  }
  .tour-option-btn {
    min-width: 100%;
  }
}
/* Add to existing styles in foodtour.ejs */
.selected-tour {
  padding: 15px;
  background: #fff5f2;
  border: 2px solid #F37342;
  border-radius: 8px;
  text-align: center;
}

.selected-tour strong {
  display: block;
  font-size: 20px;
  color: #F37342;
  margin-bottom: 5px;
}

.tour-option {
  display: block;
  color: #666;
  font-size: 14px;
}

.date-input {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date-input:hover {
  border-color: #F37342;
}

.date-input.has-value {
  border-color: #F37342;
  background: #fff5f2;
}

.date-input .placeholder {
  color: #999;
}

.date-input .value {
  color: #F37342;
  font-weight: 600;
}

.date-input i {
  color: #F37342;
}

#floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.cart-icon-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #F37342;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(243, 115, 66, 0.4);
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.cart-icon-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(243, 115, 66, 0.6);
  color: white;
  text-decoration: none;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #c42314;
  color: white;
  border-radius: 50%;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid white;
  padding: 0 6px;
}

@media (max-width: 768px) {
  #floating-cart {
    bottom: 20px;
    right: 20px;
  }
  .cart-icon-fab {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}
.calendar-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e4e4e4;
  background: white;
}

.calendar-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.calendar-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  color: #222;
}

.nav-btn:hover {
  border-color: #222;
  background: #f7f7f7;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.view-btn.active {
  background: #222;
  color: white;
  border-color: #222;
}

/* Month View */
.calendar-month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.weekday-header {
  padding: 16px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #717171;
  text-transform: uppercase;
  border-bottom: 1px solid #e4e4e4;
  background: #fafafa;
}

.calendar-day {
  min-height: 40px;
  padding: 8px;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  background: white;
  position: relative;
}

.calendar-day.other-month.empty {
  min-height: 40px;
  padding: 4px;
}

.calendar-day:nth-child(7n) {
  border-right: none;
}

.calendar-day.other-month {
  background: #fafafa;
  color: #b0b0b0;
}

.day-number {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}

.calendar-day.other-month .day-number {
  color: #b0b0b0;
}

.event-item {
  padding: 6px 8px;
  margin-bottom: 4px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
  color: white;
}

.event-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* List View */
.calendar-list {
  display: none;
  padding: 16px;
}

.calendar-list.active {
  display: block;
  background-color: transparent;
}

.list-date-group {
  margin-bottom: 20px;
}

.list-date-header {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #222;
}

.list-event {
  display: flex;
  gap: 12px;
  padding: 10px;
  margin-bottom: 8px;
  background: #fafafa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  align-items: center;
}

.list-event:hover {
  background: #f0f0f0;
  transform: translateX(4px);
}

.event-time {
  font-size: 13px;
  font-weight: 600;
  color: #717171;
  min-width: 70px;
}

.event-details {
  flex: 1;
}

.event-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

.event-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.loading {
  text-align: center;
  padding: 48px;
  color: #717171;
  font-size: 16px;
}

.no-events {
  text-align: center;
  padding: 48px;
  color: #717171;
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calendar-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .calendar-nav {
    width: 100%;
    justify-content: space-between;
  }
  .calendar-month {
    display: none;
  }
  .calendar-list {
    display: block;
  }
  .view-toggle {
    display: none;
  }
  .calendar-day {
    min-height: 80px;
    padding: 4px;
  }
  .day-number {
    font-size: 12px;
  }
  .event-item {
    font-size: 11px;
    padding: 4px 6px;
  }
  .list-event {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .event-time {
    min-width: auto;
  }
}
/* Color classes for different tour types */
.color-foodtour {
  background-color: #F27441;
}

.color-foodtourlunch {
  background-color: #F24167;
}

.bookingCalendarContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  display: none;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}

.calendarOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.bookingCalendarContainer .calendar-month {
  grid-template-columns: repeat(7, 1fr);
}

.bookingCalendarContainer .calendar-day {
  min-height: 60px;
  padding: 4px;
}

.bookingCalendarContainer .event-item {
  font-size: 11px;
  padding: 4px 6px;
  margin-bottom: 2px;
}

.bookingCalendarContainer .weekday-header {
  padding: 8px 4px;
  font-size: 11px;
}

.bookingCalendarContainer .day-number {
  font-size: 12px;
}

@media (max-width: 600px) {
  .bookingCalendarContainer {
    width: 95%;
    padding: 15px;
  }
  .bookingCalendarContainer .calendar-day {
    min-height: 50px;
    padding: 2px;
  }
  .bookingCalendarContainer .event-item {
    font-size: 10px;
    padding: 3px 4px;
  }
}
/* ... your existing styles ... */
.calendar-month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-top: 10px;
}

.weekday-header {
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.calendar-day {
  min-height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px;
  background-color: white;
  position: relative;
}

.calendar-day.other-month {
  background-color: #fafafa;
  opacity: 0.5;
}

.calendar-day.empty {
  background-color: #f5f5f5;
}

.day-number {
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.event-item {
  background-color: #F27441;
  color: white;
  padding: 4px 8px;
  margin-bottom: 4px;
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.event-item:hover {
  background-color: #d96236;
}

.event-item.color-food-tour-breakfast {
  background-color: #F24167;
}

.event-item.color-food-tour-dinner {
  background-color: #F27441;
}

.event-item.color-oldtown {
  background-color: #F27441;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #666;
}

.no-events {
  text-align: center;
  padding: 40px;
  color: #999;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.nav-btn:hover {
  background-color: #f5f5f5;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.calendar-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 600px) {
  .calendar-day {
    min-height: 60px;
    padding: 4px;
  }
  .event-item {
    font-size: 10px;
    padding: 2px 4px;
  }
  .day-number {
    font-size: 11px;
  }
}
.success-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.btn-view-cart,
.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-view-cart {
  background: #F37342;
  color: white !important;
}

.btn-view-cart:hover {
  background: #d85a2a;
  transform: translateY(-2px);
}

.btn-continue-shopping {
  background: white;
  color: #F37342;
  border: 2px solid #F37342;
}

.btn-continue-shopping:hover {
  background: #F37342;
  color: white;
  transform: translateY(-2px);
}

/* Recommendation Popup */
.recommendation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  animation: fadeIn 0.3s;
}

.recommendation-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 500px;
  width: 90%;
  animation: slideUp 0.3s;
}

.close-recommendation {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s;
}

.close-recommendation:hover {
  color: #333;
  transform: rotate(90deg);
}

.recommendation-header {
  background: linear-gradient(135deg, #F37342 0%, #d85a2a 100%);
  color: white;
  padding: 25px;
  border-radius: 15px 15px 0 0;
  text-align: center;
}

.recommendation-header i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

.recommendation-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.recommendation-body {
  padding: 25px;
}

.recommendation-body h4 {
  color: #F37342;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.recommendation-reason {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.available-times {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.available-times p {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #333;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.time-slot-btn {
  background: white;
  border: 2px solid #F37342;
  color: #F37342;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.time-slot-btn:hover {
  background: #F37342;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(243, 115, 66, 0.3);
}

.recommendation-note {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.recommendation-footer {
  padding: 0 25px 25px;
  text-align: center;
}

.btn-dismiss {
  background: transparent;
  border: 2px solid #ddd;
  color: #666;
  padding: 10px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-dismiss:hover {
  border-color: #999;
  color: #333;
}

/* Combo Success Banner */
.combo-success-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: slideUp 0.3s;
}

.combo-success-banner i {
  font-size: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 768px) {
  .time-slots {
    grid-template-columns: 1fr;
  }
}
.time-slot-btn:disabled,
.time-slot-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #ccc !important;
}

.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;
}

.editbutton {
  padding: 5px;
  cursor: pointer;
  color: white;
  float: left;
  margin: 0px;
  border: none;
  border-radius: 5px;
  width: 48%;
  background-color: rgb(190, 190, 191);
  font-size: 20px;
}

.paybutton {
  padding: 5px;
  cursor: pointer;
  color: white;
  margin: 0px;
  width: 48%;
  border-radius: 5px;
  border: none;
  background-color: #f37342;
  float: right;
  font-size: 20px;
}

.editbutton:hover {
  border: 2px solid #555;
  background-color: #F67645;
  color: black;
}

.paybutton:hover {
  border: 2px solid #555;
  background-color: #F67645;
  color: black;
}

#arrow {
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: #F37342;
}

.arrowdiv {
  background-color: #F37342;
}

#Pagination span {
  background: #F37342;
  width: 15px;
  height: 15px;
}

@media (max-width: 1201px) and (min-width: 992px) {
  .intro h2 {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) and (min-width: 600px) {
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  .twobutton {
    width: 100%;
    text-align: center;
  }
  .title h1 {
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 80px;
    min-width: 500px;
  }
  .title p {
    display: inline-block;
    float: left;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .title p {
    display: inline-block;
    font-size: 20px;
  }
  .title h1 {
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 60px;
  }
}
@media (max-width: 992px) {
  .twobutton {
    width: 100%;
    text-align: left;
  }
  .onebutton {
    width: 100%;
    text-align: center;
  }
}
#link {
  color: #F37342;
  text-decoration: underline;
}

.smallicon {
  width: 30px;
  text-align: center;
  color: #F37342;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  #confirmationname {
    font-size: 36px;
  }
  .furthercollab h2 {
    font-size: 40px;
    margin: 30px auto;
    color: #f37342;
    max-width: 700px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 14px;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  #intro {
    position: relative;
  }
  #introlow {
    height: 100px;
    position: relative;
  }
  .twobutton {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .onebutton {
    width: 100%;
    bottom: 0;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  #confirmationname {
    font-size: 36px;
  }
  .furthercollab h2 {
    font-size: 45px;
    margin: 0 auto;
    color: #f37342;
    max-width: 700px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 14px;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  #intro {
    position: relative;
  }
  #introlow {
    height: 70px;
    position: relative;
  }
  .twobutton {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: left;
  }
  .onebutton {
    width: 100%;
    bottom: 0;
    text-align: center;
  }
}
@media (max-width: 991px) and (min-width: 600px) {
  #confirmationname {
    font-size: 36px;
  }
  .furthercollab h2 {
    font-size: 28px;
    margin: 0 auto;
    color: #f37342;
    max-width: 500px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 14px;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  .twobutton {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  #confirmationname {
    font-size: 8vw;
  }
  .furthercollab h2 {
    font-size: 25px;
    margin: 0 auto;
    color: #f37342;
    max-width: 500px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 3vw;
  }
  .booknow .moretour {
    width: 100%;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 100%;
  }
  .title h1 {
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 40px;
    font-size: 30px;
  }
  .title p {
    display: inline-block;
    float: left;
    font-size: 5vw;
  }
  .centerorleft {
    text-align: center;
  }
}
.booknow h2 {
  display: inline-block;
  color: white;
  padding-bottom: 5px;
}

.moretour h2 {
  display: inline-block;
  color: #ffffff;
  padding-bottom: 5px;
}

.title {
  display: inline-block;
  margin-bottom: 20px;
  vertical-align: middle;
  padding: 0px;
}

.title p i {
  color: #F37342;
}

#noshow {
  display: none;
}

@media (min-width: 1135px) {
  .bannerad {
    cursor: pointer;
    text-align: center;
  }
  .pccolor {
    background-color: black;
  }
  .hgcolor {
    background-color: #F34D51;
  }
  .bannerad-m {
    display: none;
  }
  header.header-up {
    top: -121px;
  }
}
@media (max-width: 1135px) and (min-width: 600px) {
  .bannerad {
    cursor: pointer;
    text-align: center;
  }
  .bannerad-m {
    display: none;
  }
  .bannerad img {
    width: 100vw;
  }
  header.header-up {
    top: -10.7vw;
    /*top: -121px;*/
  }
}
@media (max-width: 600px) {
  .bannerad {
    display: none;
  }
  .bannerad-m {
    cursor: pointer;
    text-align: center;
  }
  .bannerad-m img {
    width: 100vw;
  }
  header.header-up {
    top: -29.9vw;
    /*top: -121px;*/
  }
}
.tabletourorder {
  color: white;
  background-color: #F37342;
  padding: 0px;
  display: initial;
  padding: 7px;
  margin-left: 11px;
}

@media (max-width: 992px) {
  #weaccept {
    margin: 0 auto;
    margin-bottom: 70px;
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  #weaccept {
    margin: 0 auto;
    padding-bottom: 0px;
    margin-top: 10px;
  }
}
.tablebottom {
  border-bottom: 2px dotted #F37342;
  /*margin-bottom: 30px;*/
}

.tabletop {
  margin-top: 20px;
  border-top: 2px solid #F37342;
}

.tourtable {
  margin-top: 20px;
  font-size: 20px;
  /*margin: 0 auto;*/
  text-align: left;
}

@media (max-width: 450px) {
  .tourtable tr td {
    overflow: hidden;
    max-width: 195px;
  }
}
.tourtable tr td {
  padding: 15px;
  vertical-align: center;
  text-align: left;
  color: black;
  border-top: none;
  overflow: hidden;
}

.tourtable tr th {
  width: 150px;
  padding: 15px;
  font-weight: normal;
  vertical-align: center;
  text-align: left;
  color: #F37342;
  border-top: none;
  /*border-bottom:1.5pt solid #194C4C;*/
}

.tourtable {
  font-weight: normal;
  text-align: center;
  /*margin: 0 auto;*/
  /*border-collapse: collapse; */
}

@media (min-width: 800px) {
  .feature {
    height: 300px;
  }
  #mobile {
    display: none;
  }
  .mobile {
    display: none;
  }
}
@media (max-width: 800px) {
  .feature {
    height: 200px;
  }
  #desktop {
    display: none;
  }
  .desktop {
    display: none;
  }
}
.triangle h2 {
  width: 90%;
}

@media (min-width: 991px) {
  .bannerDIV {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .coverphoto-H {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .coverphoto-V {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  #partnerlogo a img {
    width: 16vw;
  }
  .air {
    height: 315px;
  }
  .checkbox button {
    min-width: 150px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 16px;
  }
  .Add_Undo_Button {
    height: 40px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 991px) and (min-width: 650px) {
  .bannerDIV {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .coverphoto-H {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .coverphoto-V {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  #partnerlogo a img {
    width: 20vw;
  }
  .air {
    height: 410px;
  }
  .checkbox button {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 16px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 650px) and (min-width: 500px) {
  .bannerDIV {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .coverphoto-H {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .coverphoto-V {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  #partnerlogo a img {
    width: 30vw;
  }
  .air {
    height: 400px;
  }
  .checkbox button {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 15px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 500px) {
  .bannerDIV {
    position: relative;
    width: 100%;
    padding-top: 177.7%;
  }
  .coverphoto-H {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  .coverphoto-V {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .nopadding {
    padding: 0px;
  }
  .title img {
    display: none;
  }
  #partnerlogo a img {
    width: 28vw;
  }
  .checkbox button {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 13px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
  .air {
    height: 240px;
  }
}
#ntup {
  width: 100%;
  display: block;
  margin: auto;
}

#logo {
  width: 60%;
  display: block;
  margin: auto;
}

.foot {
  padding: 0px;
}

.white {
  position: fixed;
  /*background-color: white;*/
  width: 100%;
}

/**/
.nav {
  background-color: white;
  width: 100%;
  margin-top: 0px;
}

.nav a {
  padding: 9px !important;
}

#tours img {
  padding: 40px 15px 0px 15px;
}

#route {
  padding: 0px;
  margin: auto;
  width: 100%;
}

#intro i {
  color: #F37342;
}

#introlow i {
  color: #F37342;
}

#intro h1 {
  margin-top: 0px;
}

#intro h2 {
  line-height: 100%;
}

#intro p {
  font-size: 20px;
  text-align: justify;
}

#intro img {
  margin-top: 90px;
  margin-bottom: 0px;
}

@media (min-width: 991px) {
  #paddle {
    font-weight: bold;
    font-size: 30px !important;
    padding-left: 70px;
  }
  .options {
    text-align: center;
  }
  .options div {
    display: inline-block;
    width: 140px;
    height: 140px;
    margin: 10px;
  }
  .options div a img {
    width: 140px;
    height: 140px;
  }
  #intro {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .slide {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .icon {
    height: 160px;
    width: 160px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
  .pubcrawlm {
    margin-top: 50px;
    text-align: center;
  }
  .hungerm {
    margin-top: 150px;
    text-align: center;
  }
  .pubcrawlm i {
    font-size: 100px;
    color: white;
    text-align: center;
  }
  .pubcrawlm a i:hover {
    font-size: 100px;
    color: #ff0000;
  }
  .hungerm i {
    font-size: 100px;
    color: white;
    text-align: center;
  }
  .hungerm a i:hover {
    font-size: 100px;
    color: #ff0000;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySectionZentour {
    background-image: url("/home/zencover.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hunger {
    background-image: url("/home/hunger.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .play {
    background: url(/home/button.png) no-repeat center center;
    margin-top: 50px;
    height: 84px;
  }
  .play:hover {
    background: url(/home/button2.png) no-repeat center center;
  }
  .whatsUpTaipei img {
    margin-top: 40px;
    margin-bottom: 5px;
  }
  .icon {
    height: 160px;
    width: 160px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .belowbar {
    margin-top: 64px;
  }
  .mobilemargin {
    margin-top: 10px;
  }
  #paddle {
    font-weight: bold;
    font-size: 25px !important;
  }
  .options {
    text-align: center;
  }
  .options div {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 5px;
  }
  .options div a img {
    width: 100px;
    height: 100px;
  }
  .slide {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  #intro {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  #intro img {
    width: 100%;
  }
  .centerBlock div {
    height: 100px;
    width: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
  .pubcrawlm {
    margin-top: 10px;
    text-align: center;
  }
  .pubcrawlm a i {
    font-size: 50px;
    color: white;
  }
  .pubcrawlm a i:hover {
    font-size: 50px;
    color: #ff0000;
  }
  .hungerm {
    margin-top: 100px;
    text-align: center;
  }
  .hungerm a i {
    font-size: 100px;
    color: white;
  }
  .hungerm a i:hover {
    font-size: 100px;
    color: #ff0000;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySectionZentour {
    background-image: url("/home/zencover.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hunger {
    background-image: url("/home/hunger.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 500px) {
  .options {
    text-align: center;
  }
  .options div {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin: 5px;
  }
  .options div a img {
    width: 90px;
    height: 90px;
  }
  .slide {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #intro img {
    width: 100%;
  }
  .centerBlock div {
    height: 100px;
    width: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
}
@media (max-width: 350px) {
  .icon {
    height: 150px;
    width: 150px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
  .select-wrapper {
    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: 80%;
  }
}
/*trying*/
select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: white;
  border-radius: 0px;
  border-color: gray;
  border-width: 1px;
  display: block;
  outline: 0;
  text-decoration: none;
  text-align: center;
}

/* Form from now on */
@media (min-width: 630px) {
  .select-wrapper {
    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: 600px;
    height: 50px;
  }
  .select-wrapper p {
    color: #f37342;
    position: absolute;
    right: 10px;
    top: 9px;
    font-size: 30px;
  }
  .select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-transform: none !important;
  }
  .select-wrapper select::-ms-expand {
    display: none;
    text-align: center;
  }
  .application {
    text-align: center;
    background-color: rgb(254, 244, 240);
    display: block;
  }
  .application h1 {
    padding-top: 100px;
    margin: 0px;
    color: #f37342;
    text-transform: uppercase;
  }
  .application h2 {
    font-size: 20px;
    color: #f37342;
  }
  .application input {
    border: none;
    border-radius: 5px;
    width: 600px;
    height: 50px;
    padding-left: 10px;
    margin: 5px;
    font-size: 18px;
  }
  .application input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #b6b8ba;
    font-weight: 100;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #b6b8ba;
    font-weight: 100;
  }
  .application select {
    background-color: transparent;
    color: #f37342;
    border: none;
    border-radius: 5px;
    width: 600px;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    font-size: 18px;
    text-align: center;
  }
  .privateapp {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .privateapp h1 {
    padding: 20px;
    padding-top: 70px;
    margin: 0px;
  }
  .privateapp input {
    width: 600px;
    height: 50px;
    padding-left: 10px;
    margin: 10px;
    font-size: 18px;
  }
  .privateapp select {
    width: 400px;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .br {
    display: none;
  }
  .send button {
    width: 250px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 70px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 25px;
  }
  .send button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 630px) {
  .select-wrapper {
    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;
    height: 50px;
  }
  .select-wrapper p {
    color: #f37342;
    position: absolute;
    right: 10px;
    top: 9px;
    font-size: 30px;
  }
  .select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-transform: none !important;
  }
  .select-wrapper select::-ms-expand {
    display: none;
    text-align: center;
  }
  .application {
    text-align: center;
    background-color: rgba(243, 115, 66, 0.1);
    display: block;
  }
  .br {
    display: block;
  }
  .application h1 {
    padding-top: 40px;
    margin: 0px;
    padding-left: 20px;
    padding-right: 20px;
    color: #f37342;
    text-transform: uppercase;
  }
  .application h2 {
    font-size: 20px;
    color: #f37342;
    padding-left: 20px;
    padding-right: 20px;
  }
  .application input {
    border: none;
    border-radius: 5px;
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 5px;
    font-size: 18px;
  }
  .application input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #b6b8ba;
    font-weight: 100;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #b6b8ba;
    font-weight: 100;
  }
  .application select {
    background-color: transparent;
    color: #f37342;
    border: none;
    border-radius: 5px;
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    font-size: 18px;
    text-align: center;
  }
  .privateapp {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .privateapp h1 {
    padding: 20px;
    padding-top: 70px;
    margin: 0px;
  }
  .privateapp input {
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 10px;
    font-size: 18px;
  }
  .privateapp select {
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .send button {
    width: 250px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 70px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 20px;
  }
  .send button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
html, body {
  width: 100%;
  height: 100%;
  /*overflow:hidden;*/
}

.feature iframe {
  height: 100%;
  width: 100%;
  border: 0;
  -webkit-backface-visibility: hidden;
}

#privatetour {
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  background-color: #1f1f1f;
}

#privatetour span span {
  color: #F67645;
}

#privatetour:hover {
  border: 2px solid #F67645;
  background-color: #F67645;
  color: white;
}

#privatetour:hover span span {
  color: white;
}

#reserve {
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  margin-left: 3px;
}

/*footer*/
#footerpic {
  width: 100%;
}

.slidecap img {
  width: 100%;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  font-size: 18px;
}

.autocomplete-items div {
  font-size: 18px;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

@media screen and (min-width: 600px) {
  #schedule div div {
    text-align: center;
  }
  #schedule div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 20px;
    padding-top: 3px;
    text-align: center;
    /*float: right;*/
  }
  #schedule div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 46%;
  }
  #schedule div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 31%;
  }
  #schedule div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 21%;
  }
  #schedule div div .fourdays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 22%;
  }
  #schedule div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 48%;
  }
  #schedule div div .time {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 31%;
  }
  #schedule div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 46%;
  }
  #schedule div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 22%;
  }
  #schedule div div .singlelinetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 94%;
  }
  #schedule div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 48%;
  }
  #schedule div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 250px;
  }
  #schedule .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 12px;
  }
  #schedule 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;
  }
  #schedule 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) {
  #schedule div div {
    text-align: center;
  }
  #schedule div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 20px;
    padding-top: 3px;
    text-align: center;
    /*float: right;*/
  }
  #schedule div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 99%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .time {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #schedule div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #schedule div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 32%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .fourdays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 22%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .singlelinetime {
    border: 2px solid #848486;
    color: #848486;
    width: 92%;
  }
  #schedule div div .fourtimes {
    border: 2px solid #848486;
    color: #848486;
    width: 22%;
  }
  #schedule div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #schedule div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 97%;
  }
  #schedule div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 97%;
  }
  #schedule div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 250px;
  }
  #schedule .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  #schedule 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;
  }
  #schedule 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) {
  #schedule div div {
    text-align: center;
  }
  #schedule div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 5vw;
    padding-top: 3px;
    text-align: center;
    /*float: right;*/
  }
  #schedule div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .time {
    border: 2px solid #848486;
    color: #848486;
    min-width: 25vw;
  }
  #schedule div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    min-width: 25vw;
  }
  #schedule div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 31%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .fourdays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 23%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .singlelinetime {
    border: 2px solid #848486;
    color: #848486;
    width: 97%;
  }
  #schedule div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 97%;
  }
  #schedule div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 97%;
  }
  #schedule div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 83vw;
  }
  #schedule div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 55vw;
  }
  #schedule .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 10px;
    max-width: 87vw;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  #schedule 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;
  }
  #schedule 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;
  }
}
.fc button {
  height: auto;
}

.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.review-cards .card {
  flex: 1 1 100px;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.info-banner {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.info-banner .card {
  flex: 1;
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: none;
  text-align: center;
}

.rating {
  font-size: 18px;
  font-weight: bold;
  color: #FFC107;
}

.source {
  font-size: 16px;
  color: #333;
  margin-top: 8px;
}

.count {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.card a {
  font-size: 13px;
  color: #007BFF;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.confirm {
  background: #e7f8ef;
  color: #007850;
  font-weight: bold;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.book-now-btn {
  background-color: #F37342;
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.book-now-btn:hover {
  background-color: #e46430;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .book-now-btn {
    width: 90%;
    font-size: 1.5rem;
  }
}

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