    /* Light */
@font-face {
  font-family: 'MyFont';
  src: url('../fonts/MyFont-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: 'MyFont';
  src: url('../fonts/MyFont-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'MyFont';
  src: url('../fonts/MyFont-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

    /* =========================
       TOP NAV (like your images)
    ========================== */
    .tl-nav{
      height: var(--nav-h);
      background: var(--nav-bg);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .tl-nav .nav-inner{
      max-width: 1076px;
      margin: 0 auto;
      height: var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      position:relative;
    }

    /* Center logo on desktop */

    .tl-logo{
      width: auto;
      height: 42px;
      display:block;
    }

    /* Right-side language (desktop) */
    .lang-btn{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color: var(--icon);
      background: transparent;
      border: 0;
      font-weight: 600;
      letter-spacing: .6px;
      padding: 8px 10px;
    }
    .lang-btn:hover{ color:#fff; }

    .lang-menu{
      min-width: 88px;
      background:#0f0f0f;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      overflow:hidden;
      padding: 6px;
    }
    .lang-menu .dropdown-item{
      color: rgba(255,255,255,.92);
      border-radius: 8px;
      padding: 10px 10px;
      font-weight: 600;
      font-size: 12px;
    }
    .lang-menu .dropdown-item:hover{
      background: rgba(255,255,255,.08);
      color:#fff;
    }

    /* Mobile icons (user + hamburger) */
    .icon-btn{
      width: 40px;
      height: 40px;
      border: 0;
      background: transparent;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color: var(--icon);
      border-radius: 10px;
    }
    .icon-btn:hover{ background: rgba(255,255,255,.06); }

    .tl-nav a{ text-decoration:none; }

    /* Desktop vs mobile layout */
    .desktop-only{ display:none; }
    .mobile-only{ display:flex; }

    @media (min-width: 992px){
      .desktop-only{ display:flex; }
      .mobile-only{ display:none; }
    }

    /* =========================
       HERO (same alignment as before)
    ========================== */
    .hero-wrap{
      position: relative;
      /* min-height: 100vh; */
      overflow: hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:#fff;

      /* Replace with your real background */
      background: url("../../purchase-flow.jpg") center/cover no-repeat;
      padding-top: var(--nav-h); /* space for fixed nav */
    }

    .hero-wrap::before{
      content:"";
      position:absolute;
      inset:-20px;
      background: inherit;
      /* filter: blur(10px); */
      transform: scale(1.05);
      z-index:0;
    }
    .hero-wrap::after{
      content:"";
      position:absolute;
      inset:0;
      background: var(--overlay);
      z-index:1;
      opacity: 1.3;
    }

    .hero-content{
      position:relative;
      z-index:2;
      width:100%;
      /* padding-top: 24px; */
      padding-bottom: 108px;
      
      
    }

    .hero-title-1{
      font-weight: var(--font-weight-bold);;
      font-size: 48px;
      margin: 0 0 10px 0;
      text-shadow: 0 2px 10px rgba(0,0,0,.35);
    }
    .hero-title-2{
      font-weight: var(--font-weight-bold);;
      font-size: 48px;
      margin: 0 0 18px 0;
      text-shadow: 0 2px 10px rgba(0,0,0,.35);
    }
    .hero-desc{
      margin: 0 auto;
      max-width: 780px;
      font-size: 18px;
      line-height: 1.75;
      opacity:.95;
      text-shadow: 0 1px 8px rgba(0,0,0,.35);
    }
    .hero-btn{
      margin-top: 80px;
      background:linear-gradient(to right, #8b4513, #d2691e);
      border: 0;
      color:#fff;
      padding: 14px 48px;
      border-radius: 999px;
      /* font-weight: 700; */
      box-shadow: 0 10px 24px rgba(0,0,0,.25);
      transition: .2s ease;
      max-width: 12rem;
      font-size: var(--text-sm);
    }
    .hero-btn:hover{
      background: var(--btn-orange-hover);
      transform: translateY(-1px);
    }

    @media (max-width: 576px){
      .hero-title-1{ font-size: 24px; margin-bottom: 6px; }
      .hero-title-2{ font-size: 24px; margin-bottom: 14px; }
      .hero-desc{ font-size: 16px; max-width: 340px; margin-bottom: 48px; }
      .hero-content{ padding: 70px 16px; }
      .hero-btn{ margin-top: 26px; }
      .hero-wrap{ padding-top: unset !important; }
    }

    /* =========================
       MOBILE OVERLAY (image 3)
    ========================== */
    .mobile-overlay{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.78);
      z-index: 2000;
      display:none;
      align-items:center;
      justify-content:center;
      padding-top: var(--nav-h);
    }
    .mobile-overlay.show{ display:flex; }

    .overlay-top{
      position:absolute;
      top: 0;
      left:0;
      right:0;
      height: var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 0 14px;
      background: transparent; /* like screenshot */
    }

    .overlay-center{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap: 18px;
      transform: translateY(-20px);
    }

    .overlay-logo{
      width: 72px;
      height: 72px;
      opacity: .95;
    }

    .overlay-lang-wrap{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap: 10px;
      margin-top: 8px;
    }

    .overlay-lang-btn{
      border:0;
      background: transparent;
      color: rgba(255,255,255,.95);
      font-weight: 700;
      letter-spacing: .6px;
      display:inline-flex;
      align-items:center;
      gap: 6px;
      padding: 6px 10px;
    }

    /* dropdown box like image 3 */
    .overlay-lang-menu{
      width: 86px;
      background:#fff;
      border-radius: 10px;
      overflow:hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,.35);
      display:none;
    }
    .overlay-lang-menu.show{ display:block; }

    .overlay-lang-item{
      width:100%;
      border:0;
      background: transparent;
      text-align:left;
      padding: 12px 14px;
      font-weight: 700;
      font-size: 13px;
      color:#111;
    }
    .overlay-lang-item.active{
      background:#111;
      color:#fff;
    }

    /* small helper to keep content below nav if nav is fixed */
    body.has-fixed-nav{
      padding-top: var(--nav-h);
      background-color: #000;
    }


    /* =========================
   PACKAGES SECTION (2 cards)
========================= */
.tl-packages{
  background:#000;
  padding: 120px 0 80px;
}

.tl-packages-row{
  max-width: 1180px;
  margin: 0 auto;
}

/* Card */
.tl-card{
  background: linear-gradient(183.91deg, rgb(31, 31, 31) 36.75%, rgb(0, 0, 0) 91.16%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.tl-card-img{
  height: 250px;
  background:#111;
}
.tl-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Body */
.tl-card-body{
  padding: 32px 34px 28px;
}

.tl-card-title{
  color:#fff;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin: 0 0 14px;
}

.tl-card-desc{
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 92%;
}

/* Button */
.tl-pill-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  width: 100%;
  height: 54px;
  border-radius: 999px;
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.22);
  transition: .2s ease;
}

.tl-pill-btn:hover{
  color:#fff;
  border-color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.34);
  transform: translateY(-1px);
}

.tl-arrow{
  font-size: 18px;
  line-height: 0;
  transform: translateY(-1px);
  opacity: .95;
}

/* Included divider */
.tl-included{
  display:flex;
  align-items:center;
  gap: 14px;
  margin: 26px 0 18px;
}

.tl-included-line{
  flex:1;
  height: 1px;
  background: rgba(255,255,255,.15);
}

.tl-included-text{
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 13px;
}

/* Checklist with check icons */
.tl-checklist{
  list-style:none;
  padding: 0;
  margin: 0;
}

.tl-checklist li{
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.7;
  margin: 8px 0;
}

.tl-checklist li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 900;
  color: rgba(130,170,210,.95);     /* bluish check like screenshot */
  border: 1px solid rgba(130,170,210,.35);
}

/* Responsive: stack cards on mobile, keep centered */
@media (max-width: 991.98px){
  .tl-packages{ padding: 70px 0 50px; }
  .tl-card-img{ height: 220px; }
  .tl-card-body{ padding: 26px 22px 22px; }
  .tl-card-desc{ max-width: 100%; }
}



    .tl-footer{
  background: #000;
  color: #fff;
  padding: 0px 20px 100px;
}

.footer-content{
  max-width: 780px;
  margin: 0 auto;
}

.footer-logo{
  margin-bottom: 60px;
}

.footer-logo-img{
  height: 114px;
}

.footer-text{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.footer-bottom{
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.footer-link{
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  text-decoration: underline;
}

.footer-link:hover{
  color: #fff;
  opacity: 0.85;
}

.main-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  height: 80px;
}

ul {
  padding: 0;
  margin: 0;
}

.m-0 {
  margin: 0;
}

body {
  font-family: 'MyFont', sans-serif;
  background-color: #000;
}

.main-header {
  position: relative;
  text-transform: uppercase;
  background-color: #8a390066;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
}

.main-header:before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: brightness(60%) blur(16px);
  z-index: -1;
}

.cus-nav-item {
  display: flex;
  align-items: center;
  height: 80px;
}

.cus-nav-item>li>a{
  padding: 26px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}


li {
  list-style-type: none;
}


.cust-nav-dropdown {
    background-color: #8a390066;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px;
    top: 80px;
    left: 0;
    right: 0;
    padding-block: 24px;
    padding-inline: 180px;
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999999;
}

.cust-nav-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: brightness(60%) blur(16px);
  z-index: -1;
}

.cus-nav-item>li:hover>.cust-nav-dropdown, .cus-nav-item>li>.cust-nav-dropdown:hover  {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cust-nav-dropdown a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: lighter;
}

.cust-nav-dropdown li{
  padding: 3px 0;
}

.main-header button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-inline: 10px;
    width: fit-content;
    height: 30px;
    border-radius: 9999px;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(100px);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    padding: 0 14px;
    font-size: 12px;
}

.main-header button:hover{
    border-color: rgba(255, 255, 255, 0.5);
}

.language-button {
  position: relative;
}

.language-list {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9960;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
  opacity: 0;
  border-radius: 16px;
  border: 1px solid #ffffff1a;
  background: #ffffff1a;
  backdrop-filter: brightness(60%) blur(100px);
  -webkit-backdrop-filter: brightness(60%) blur(100px);
  box-shadow: 0 15px 70px 0 rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  pointer-events: none;
  overflow: hidden;
  color: white;
}

.language-list li {
  border-bottom: 1px solid hsla(0, 100%, 100%, 0.1);
  text-transform: uppercase;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
}

.language-list.active {
  opacity: 1;
  pointer-events: auto;
}

.main-content{
  margin-top: 80px;
}

.hero-banner {
  text-align: center;
  color: #fff;
  background-image: url('../img/hero.webp');
  background-position: center;
  background-size: cover;
  padding: 194px 16px;
  position: relative;
}

.hero-banner.passes-package {
  background-image: url('../img/passes-packages-banner.webp');
}

.hero-banner.hospitality-package {
  background-image: url('../img/hospitality-package-banner.webp');
}

.hero-banner.policies {
  background-image: url('../img/policies.webp');
  padding: 103px 16px;
}

.hero-banner.sales-info {
  background-image: url('../img/sales-info-banner.webp');
}

.hero-banner.line-up {
  background-image: url('../img/lineup-banner.webp');
}

.hero-banner.discover-thailand {
  background-image: url('../img/discover-thailand.webp');
}

.hero-banner:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #10090c4d 10%, #10090cb3 70%, #000 100%);
}

.hero-details {
  position: relative;
  z-index: 1;
}

.hero-banner h1 {
  font-size: 48px;
}

.hero-banner p {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.mx-w-658 {
  max-width: 658px;
  margin: 0 auto;
  padding: 0 70px;
}

.cus-btn {
  line-height: normal;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-wrap: nowrap;
  transition: all .25s ease-in-out;
  opacity: 1;
  border: none;
  padding: 16px 20px;
  font-weight: lighter;
}

.main-btn {
  color: #fff;
  background: linear-gradient(90deg, #8a3900, #eb8100);
}

.border-btn {
  color: #f5f5f5;
  background: transparent;
  box-shadow: inset 0 0 0 1px #eb8100;
}

.border-btn:hover {
  box-shadow: inset 0 0 0 1px #eb8100d9;
}

.main-btn:hover {
  background: linear-gradient(90deg, #8a3900d9, #eb8100d9);
}

.sec-btn {
  background: #f5f5f5d9;
}

.flot-header {
  position: fixed;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  z-index: 99999;
}

.width-fit {
  width: 790px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 48px;
  padding: 0 22px;
  border-radius: 9999px;
  box-shadow: hsla(240, 5%, 40%, 0.5) 0px 8px 29px 0px;
  background-color: hsl(0, 0%, 100%);
}

.flot-header p {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: lime;
    background: linear-gradient(90deg, #eb8100 0%, #8a3900 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.flot-header p:after {
  content: '';
  height: 80%;
  width: 1px;
  background-color: #8a3900;
  position: absolute;
  right: -16px;
}

.flot-header ul {
  display: flex;
  text-transform: none;
  gap: 32px;
}

.flot-header ul a {
  color: #4b2001;
  font-size: 15px;
  text-decoration: none;
}

.package-list {
  position: relative;
}

.bg-ele {
    width: 100%;
    height: 100%;
    position: relative;
    filter: blur(50px);
    background-image: url('../img/bg-ele.png');
    background-position: top;
    background-size: 100% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-ele.passes-package-bg {
  background-size: 100% 100%;
}

.bg-ele.passes-packages-bg {
  background-size: 100% 100%;
}


.bg-ele.pratical-bg {
  background-size: 100% 60%;
}

.bg-ele:after {
  content: '';
  background-color: #0000008f;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bg-ele.passes-package-bg:after {
  background-color: #000000be;
}

.bg-ele.passes-packages-bg:after {
  background-color: #000000a8;
}

.bg-ele.pratical-bg:after {
  background-color: #000000be;
}

.package-icon {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 100px;
    position: relative;
    background: linear-gradient(180deg, #f5f5f51a 0%, rgba(153, 153, 153, 0) 100%);
    outline: 1px solid hsla(0, 0%, 100%, .05);
    box-shadow: 0 3px 20px 0 #eb810026 inset;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    color: #eb810026;
}

.package-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 24px 0;
}

.package-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f5f5f50d 0%, #f5f5f540 50%, #f5f5f50d 100%);
}

.package-item .datetime {
  color: #f5f5f5;
  margin: 0;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.package-item h2 {
  color: #f5f5f5;
  margin: 0;
  font-size: 24px;
  gap: 12px;
  display: flex;
}

.package-item h2:after {
  content: "";
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, #f5f5f51a 0%, #f5f5f580 50%, #f5f5f51a 100%);
}

.package-item .description {
  color: #f5f5f5cc;
  letter-spacing: 1px;
  font-size: 14px;
}

.package-card {
  position: relative;
}

.section-subtitle {
  color: #f5f5f580;
  font-size: 16px;
  margin: 0;
  letter-spacing: 1px;
}

.section-title {
  color: #f5f5f5;
  font-size: 30px;
  margin: 0;
}

.card-list {
  height: 100%;
}


.cus-card {
  all: unset;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #10090c;
  border-radius: 8px;
  text-decoration: none;
  color: #f5f5f5;
  box-shadow: 0 1px 4px 0 #f5f5f51a;
  transition: box-shadow 256ms ease-in-out;
  overflow: hidden;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cus-card .img-wrap {
  position: relative;
}

.cus-card>a>.img-wrap>img {
  height: 216px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 6 / 4;
}

.cus-card .img-wrap:after {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(180deg, #10090c00 0%, #10090c0a 10%, #10090c1f 25%, #10090c47 40%, #10090c85 55%, #10090cc2 70%, #10090ceb 85%, #10090c 100%);
}

.cus-card .img-wrap .card-icon {
  position: absolute;
  bottom: 0;
  z-index: 2;
  align-self: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-block: 10px;
  padding-inline: 16px;
  margin-block: 16px;
  margin-inline: 16px;
  min-width: 48px;
  width: fit-content;
  border-radius: 100px;
  box-shadow: 0 3px 20px 0 #eb810026 inset;
  background: linear-gradient(#ffffff17, #9990);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  color: #f5f5f5cc;
}

.cus-card .card-icon .img-wrap {
  display: flex;
  position: relative;
}

.cus-card .card-icon .img-wrap:first-child::after{
  content: unset;
}

.cus-card .card-icon .img-wrap:not(:first-child)::after {
  width: 1px;
  height: 26px;
  z-index: 1;
  position: absolute;
  content: "";
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #f5f5f51a 0%, #f5f5f580 50%, #f5f5f51a 100%);
}

.cus-card a {
  text-decoration: none;
}

.cus-card:hover {
  box-shadow: 0 1px 20px 0 #f5f5f540;
}

.cus-card h3 {
  color: #fff;
  font-size: 20px;
}

.cus-card p {
  color: #f5f5f5b3;
  font-size: 14px;
  letter-spacing: .8px;
  margin-bottom: 40px;
}

.cus-card-body a {
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
}

.cus-card-body {
  padding: 0 30px 30px;
}

.about-tmrland {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.about-tmrland img {
  border-radius: 8px;
}

.about-tmrland .accordion-header .accordion-button, .about-tmrland .accordion-item {
  background-color: unset;
  border: none;
}

.about-tmrland .accordion-button {
  font-size: 24px;
  color: #fff;
  box-shadow: none;
  position: relative;
}

.about-tmrland .accordion-button:after {
  font-size: 12px;
  content: "\f068"; /* plus */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  background-image: unset;
  transform: unset;
}

.about-tmrland .accordion-button.collapsed:after {
  content: "\2b"; /* plus */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.about-tmrland .accordion-button:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background: radial-gradient(circle, #eb8100 0%, transparent 100%);
}

.accordion-body p {
  color: #f5f5f5D9;
  font-size: 14px;
  letter-spacing: .8px;
}

.accordion-body p a{
  color: #fff;
}

.bg-ele2 {
  width: 100%;
  height: 100%;
  position: relative;
  filter: blur(50px);
  background-image: url('../img/bg-ele2.png');
  background-position: top;
  background-size: 100% 70%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bg-ele2:after {
  content: '';
  background-color: #00000099;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mt-80 {
  margin-top: 80px;
}

.color-f5 {
  color: #f5f5f5;
  font-weight: lighter;
  font-size: 14px;
}

.discover-more {
  position: relative;
}

.bg-ele3 {
  width: 100%;
  height: 100%;
  position: relative;
  filter: blur(50px);
  background-image: url('../img/bg-ele3.png');
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bg-ele3:after {
  content: '';
  background-color: #000000b3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.line {
  height: 1px;
  opacity: 0.3;
  flex: 1;
  width: initial;
}

.line-left {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #fff);
}

 .line-right {
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #fff);
}

.social-media img {
  transform: scale(1);
  opacity: .75;
  transform: .3s;
}

.social-media img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.footer {
  margin-top: 80px;
}

.footer-upper .title {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
}

.desktop .footer-upper li {
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: lighter;
  margin-top: 15px;
}

.footer-upper a {
  color: #ffffffbf;
  text-decoration: none;
}

.download-app {
  color: #fff;
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: lighter;
  margin-top: 15px;
  opacity: .75;
}

.footer-bottom small {
  opacity: .75;
  color: #ffffffbf;
  font-size: 11px;
  letter-spacing: .8px;
  font-weight: lighter;
}

.footer-bottom a {
  color: #ffffffbf;
}

.mobile-nav {
  height: 64px;
  padding: 16px;
  background-color: #8a3900;
}

.mobile-nav svg, .mobile-nav i {
  color: #fff;
  font-size: 22px;
}
.mobile-nav {
  position: relative;
}

.mobile .menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #8a3900;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  display: none;
}

.cursor-pointer {
  cursor: pointer;
}

.close-icon {
  display: none;
}

.mobile .menu>ul {
  flex: 1;
}

.mobile .menu>ul>li {
  padding: 16px 0;
}

.mobile .menu>ul>li>a>i {
  font-size: 12px;
}

.mobile .sub-menu {
  display: none;
}

.mobile .menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.sub-menu {
  padding-top: 16px;
}

.sub-menu li {
  padding: 16px 24px;
}

.sub-menu li>a>i {
  font-size: 12px;
}

.sub-menu-navigation {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #8a3900;
  transition: .5s;
  padding: 0 16px;
}

.mobile .menu .sub-menu-navigation .back i {
  font-size: 12px;
}

.mobile .menu .sub-menu-navigation .back {
  color: #fff;
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: lighter;
  margin-top: 15px;
  opacity: .75;
}

.sub-menu-navigation h3 {
  color: #fff;
  font-size: 32px;
  position: relative;
}

.sub-menu-navigation h3:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: white;
}

.sub-menu-navigation.active {
  left: 0;
}

.mobile-nav-bottom {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-nav-bottom .my-account {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  height: 30px;
  padding-inline: 10px;
  margin: auto;
  border-radius: 9999px;
  border: 1px solid transparent;
  background-color: #ffffff1a;
  backdrop-filter: blur(100px);
  font-weight: lighter;
  opacity: .8;
  transition: .3s;
}

.mobile-nav-bottom .my-account {
  font-size: 14px !important;
}

.mobile-nav-bottom .my-account:hover {
  border-color: #fff;
}

.footer-upper .mobile .footer-nav-item>a {
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}

.footer-nav-item {
  margin: 0 !important;
}

.footer-upper .mobile .footer-nav-item .footer-nav-list {
  display: none;
}

.footer-nav-list li {
  padding-bottom: 15px;
}

.footer-nav-list li a {
  font-size: 12px;
}

.mobile-language {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
}

.mobile-language a {
  padding: 0 16px;
  font-size: 14px !important;
}

.mobile-language a:hover {
  text-decoration: underline;
}

.mobile-language a:not(:last-child) {
  border-right: 1px solid #fff;
}

.mobile-nav-bottom .my-account i {
  font-size: 14px;
}

.bg-f6f2ef {
  background-color: #f6f2ef;
}

.login-bg {
  background-image: url("../img/login.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.login-wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-wrap form input, .reset-wrap form input, .signup-wrap form input, .create-wrap form input  {
  background-color: #fff !important;
  border-radius: 4px !important;
  border: 1px solid rgba(36, 36, 36, .2) !important;
  color: #242424 !important;
  transform: none !important;
  line-height: normal !important;
  padding: 16px 12px 17px;
  width: 100%;
}

.create-wrap form select {
  background: none;
  box-shadow: none;
  border: .1rem solid rgba(255, 255, 255, .2);
  border-radius: .4rem;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .03rem;
  padding: 13px 17px 16px;
  width: 100%;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  appearance: none;
  background-color: #fff !important;
  border-radius: 4px !important;
  border: 1px solid rgba(36, 36, 36, .2) !important;
  color: #242424 !important;
  transform: none !important;
  line-height: normal !important;
  height: 53.5px;
}

.select {
  position: relative;
}

.radio-input {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.radio-label {
  background-color: #f6f2ef !important;
  border: 1px solid rgba(36, 36, 36, .2) !important;
  border-radius: 4px !important;
  transform: none !important;
  color: #242424 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 100%;
  height: 100%;
  position: relative;
  font-size: 16px;
  line-height: 1;
  color: #fff9;
  height: 46px;
  transition: color .2s, transform .2s;
  cursor: pointer;
}

.radio-label.active {
  background-color: #fff !important;
}

.create-wrap form .select:after {
    content: "\f107"; /* plus */
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-70%);
    width: 1rem;
    height: .6rem;
    display: block;
    pointer-events: none;
}

.create-wrap form .note {
  font-size: 12px;
  color: #242424;
  opacity: .5;
  margin-top: 10px;
}

.login-wrap form {
  width: 100%;
  padding: 0 35px;
}

.login-wrap form a {
  text-decoration: none;
  color: #242424;
  font-size: 13px;
  font-weight: bold !important;
}

.login-wrap form p {
  font-size: 13px;
  color: #242424;
}

.login-copy-right {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: 20px;
  color:#ffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: ligther;
}

.login-copy-right a {
  color:#ffff;
}

.login-btn {
  display: inline-block;
  background: none;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 1.27;
  letter-spacing: .015rem;
  color: #000;
  font-weight: 700;
  padding: 17px 10px;
  width: 100%;
  position: relative;
  cursor: pointer;
  border-radius: 4px !important;
  border: 1px solid rgba(36, 36, 36, .2) !important;
  background: #fcfaf8 !important;
}

.reset-wrap, .create-wrap {
  display: none;
  height: 100vh;
  padding: 0 35px;
  overflow-y: scroll;
}

.reset-wrap .header i {
  color: #242424;
}

.reset-wrap .header p {
  font-size: 13px;
  letter-spacing: 1px;
}

.reset-wrap label, .signup-wrap label, .create-wrap label {
  font-size: 13px;
  color: #242424;
  font-weight: bold;
}

.important-label {
  font-size: 13px;
  letter-spacing: 1px;
}

.important-details {
  font-size: 14px;
  color: #242424;;
}

.signup-wrap form input[type="checkbox"] {
    width: 22px;
    height: 22px;
    background-color: #f6f2ef;
    accent-color: transparent !important;
}

.signup-wrap {
  display: none;
  position: relative;
  height: 100vh;
}

#marketing-consent, #agree-share-data {
  display: none;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: #0000008a;
}

#agree-share-data {
  justify-content: center;
  align-items: center;
}

#marketing-consent .content, #agree-share-data .content {
  width: 100%;
  height: 100%;
  background-color: #f6f2ef;
  padding: 20px 40px;
  overflow-y: scroll;
  border-radius: 8px;
}

#agree-share-data .content {
  height: fit-content;
}

#agree-share-data i {
  font-size: 13px;
}

#marketing-consent .content ::-webkit-scrollbar, #agree-share-data .content ::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#marketing-consent .content, #agree-share-data .content  {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#marketing-consent h3 {
  font-size: 26px;
}

#marketing-consent li {
  margin-bottom: 18px;
}

#marketing-consent p, #marketing-consent li {
  font-size: 13px;
  list-style-type: circle;
}

.model-close-btn {
  background-color: #fcfaf8;
  border: 1px solid hsla(0, 0%, 14%, .2) !important;
  outline: none;
  font-weight: 400;
  width: 100%;
  padding: 9px 10px;
  font-size: 13px;
}

.col-2-5 {
  flex: 0 0 auto;
  width: 20.833333%;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs a {
  color: #fff;
}


.breadcrumbs a:not(:last-child) {
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumbs a:not(:last-child):after {
  content: '\f111';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #fff;
  font-size: 3px;
  margin-right: 10px;
}

.cus-card-2 {
  background: linear-gradient(180deg, #f5f5f51a 0%, transparent 100%);
  box-shadow: 0 1px 4px 0 #f5f5f51a, 3px 15px 15px 0 #eb810026 inset, 0 0 10px 0 #f5f5f50d inset;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  padding: 32px;
  border-radius: 16px;
  cursor: pointer;
  height: 100%;
}

.cus-card-2 h3{
  font-size: 20px;
  color: #f5f5f5;
}

.cus-card-2 p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #f5f5f5;
  line-height: 22px;
}

.cus-card-2 a {
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}

.cus-card-2:hover {
    box-shadow: 0 1px 20px 0 #f5f5f540, 3px 15px 15px 0 #eb810026 inset, 0 0 10px 0 #f5f5f50d inset;
}

.theme-1-content {
  background-color: #fff;
  padding: 30px 0;
}

.cus-container {
  max-width: 1076px;
  margin: 0 auto;
}



.fs-18 {
  font-size: 18px;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-16 {
  font-size: 16px;
}

.fs-24 {
  font-size: 24px;
}

.hotel-package-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hotel-package-card .line {
  background-color: #4c4c4c;
  height: 1px;
  width: 100%;
  flex: unset;
}

.hotel-package-card .details {
  border-radius: 0 0 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.color-93 {
  color: #939393;
}

.checkin-wrap {
  background-color: #f6f6f6;
  padding: 28px;
  border-radius: 10px;
}

.checkin-wrap label {
  font-size: 12px;
  color: #697386;
  margin-bottom: 8px;
}

#checkin, #checkout {
  font-size: 14px;
  padding: 8px 12px 8px 40px;
}

.dateinput {
  position: relative;
}

.theme-1-content .select-input select{
  height: 56px;
  font-size: 14px;
}

.h-100px {
  height: 100px;
  width: 100%;
}

.dateinput:after{
  content: '\f133';
  font-family: "Font Awesome 7 Free";
  font-weight: 500;
  color: #697386;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.btn-direction {
  border: 1px solid #00000080;
  border-radius: 40px;
  padding:  8px 16px;
  font-size: 14px;
  background-color: transparent;
  min-width: 100px;
}

.btn-direction:hover {
  background-color: #00000018;
}

.hotel-package-card .img-wrap {
  aspect-ratio: 258 / 146;
  position: relative;
  height: 138px;
}

.hotel-package-card .img-wrap .label{
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 2px 10px;
  font-size: 12px;
  background-color: #dfbd69;
  border-radius: 15px;
}

.hotel-package-card .img-wrap .label.silver {
  background-color: silver;
}

.hotel-package-card .img-wrap .label.bronze {
  background-color: #cd7f32;
}

.hotel-package-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.hotel-package-card .details {
  background-color: #1f1f1f;
  color: #fff;
  padding: 12px;
}

.hotel-package-card.selected {
  padding: 2px;
  border-radius: 10px;
  outline: 5px solid #007aff;
}

.step-1,
.step-2,
.step-3,
.step-4 {
  display: none;
}

.step-active {
  display: block;
}

.step-2 .img-wrap img {
  border-radius: 10px;
}

.step-2 h3 {
  font-size: 22px;
  margin-top: 30px;
}

.step-2 p {
  color: #364153;
  font-size: 15px;
}

.step-2 .address {
  color: #101828;
}

.line-2 {
  background-color: #ededed;
  height: 1px;
  width: 100%;
  margin: 30px 0;
}

.festival-pass-section {
  margin-top: 40px;
}

.festival-pass-heading i {
  font-size: 18px;
}

.festival-pass-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.festival-pass-subtitle {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7280;
}

.festival-pass-card {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  background-color: #f9fafb;
}

.festival-pass-card-header {
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}

.festival-pass-card-body {
  background-color: #f5f5f5;
  padding: 20px 24px 24px;
}

.festival-pass-room-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.festival-pass-group {
  padding: 18px 0;
}

.festival-pass-group + .festival-pass-group {
  border-top: 1px solid #e5e5e5;
}

.festival-pass-group-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.festival-pass-option {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.festival-pass-option-input {
  display: none;
}

.festival-pass-option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: #f9fafb;
  border: 1px solid #e5e5e5;
}

.festival-pass-option-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.festival-pass-option-indicator {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #9ca3af;
  background-color: #fff;
}

.festival-pass-option-label {
  font-size: 14px;
  color: #111827;
}

.festival-pass-option-price {
  text-align: right;
  font-size: 11px;
}

.festival-pass-option-price-thb {
  font-weight: 600;
  color: #111827;
}

.festival-pass-option-price-usd {
  color: #6b7280;
}

.festival-pass-option-input:checked + .festival-pass-option-content {
  border-color: #111827;
  background-color: #fff;
}

.festival-pass-option-input:checked + .festival-pass-option-content .festival-pass-option-indicator {
  border-color: #111827;
  background-color: #111827;
}

.order-overview-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111827;
}

.order-overview-card {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  background-color: #f9fafb;
}

.order-overview-header {
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
}

.order-overview-section {
  padding: 20px 24px;
  background-color: #f5f5f5;
}

.order-overview-section + .order-overview-section {
  border-top: 1px solid #e5e5e5;
}

.order-overview-section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.order-overview-hotel-name {
  font-size: 14px;
  color: #111827;
}

.order-overview-dates {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

.order-overview-room-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
}

.order-overview-room-type {
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
}

.order-overview-pass-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111827;
  margin-top: 10px;
}

.order-overview-pass-row i {
  font-size: 14px;
}

.order-overview-included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  padding: 8px 0;
}

.order-overview-included-sign {
  font-size: 16px;
  line-height: 1;
}

.order-overview-price {
  margin-top: 24px;
  border-radius: 16px;
  background-color: #f5f5f5;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
}

.order-overview-price-label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.order-overview-price-values {
  text-align: right;
}

.order-overview-price-thb {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.order-overview-price-usd {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

/* =========================
   PAYMENT RESULT PAGES
========================== */
.payment-result-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.payment-result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.payment-result-icon.success {
  background-color: #d1fae5;
  color: #10b981;
}

.payment-result-icon.error {
  background-color: #fee2e2;
  color: #ef4444;
}

.payment-result-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.payment-result-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 32px;
}

.payment-result-divider {
  height: 1px;
  background-color: #e5e5e5;
  margin-bottom: 24px;
}

.payment-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #374151;
}

.payment-result-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #111827;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 32px;
  transition: background-color 0.2s;
}

.payment-result-btn:hover {
  background-color: #000;
  color: #fff;
}

.payment-result-btn.secondary {
  background-color: #f3f4f6;
  color: #111827;
}

.payment-result-btn.secondary:hover {
  background-color: #e5e7eb;
}



.order-overview-price-label {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.order-overview-price-values {
  text-align: right;
  font-size: 12px;
}

.order-overview-price-thb {
  font-weight: 600;
  color: #111827;
}

.order-overview-price-usd {
  color: #6b7280;
}

.step-2-room-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.step-2-room-card-header {
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
}

.step-2-room-card-body {
  padding: 18px 20px;
}

.room-option {
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.room-option:last-child {
  border-bottom: 0;
}

.room-option-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.room-option-title {
  font-size: 15px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
}

.room-option-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 12px;
}

.room-option-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-option-icon i {
  font-size: 16px;
}

.room-option-amenities-label {
  font-size: 13px;
  color: #111827;
  margin-bottom: 2px;
}

.room-option-amenities {
  font-size: 12px;
  color: #6b7280;
}

.room-option-qty {
  text-align: right;
  min-width: 110px;
}

.room-option-qty-label {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 8px;
}

.room-option-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.room-option-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}

.room-option-qty-value {
  font-size: 14px;
  min-width: 12px;
  text-align: center;
}

.room-option-divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 16px 0 10px;
}

.room-option-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
}

.room-option-price-label {
  color: #6b7280;
}

.room-option-price-values {
  text-align: right;
}

.room-option-price-thb {
  font-weight: 600;
  color: #111827;
}

.room-option-price-usd {
  color: #6b7280;
}



.facilities-list {
  font-size: 12px;
  vertical-align: bottom;
}

.facilities-list i {
  font-size: 10px;
}

.festival-pass-icon-list .img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(180deg, #f5f5f51a 0%, #99999900 100%);
    outline: 1px solid #f5f5f50d;
    box-shadow: 0 3px 20px 0 #eb810026 inset;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    margin-bottom: 12px;
}

.festival-pass-icon-list .icon-list p, .festival-pass-icon-list .icon-list b{
  color: #fff;
  text-align: center;
  position: relative;
}

.pass-packages-price h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.festival-pass-icon-list .icon-list b {
  font-size: 22px;
}

.festival-pass-icon-list .icon-list p {
  font-size: 14px;
  font-weight: lighter;
}

.pass-packages-price {
  color: #fff;
  position: relative;
}

.price-list-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #f5f5f50d;
  border-radius: 16px;
  padding-block: 24px;
  padding-inline: 16px;
  background: linear-gradient(180deg, #f5f5f51a 0%, transparent 100%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

.price-list-item:not(:first-child) {
  padding-block-start: 24px;
  border-top: 1px solid;
  border-color: #f5f5f540;
}

.pass-packages-price .price-list-wrap .price-tag {
  position: relative;
  height: fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #8a3900 0%, #eb8100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 100px;
  padding: 6px 12px;
}

.pass-packages-price .price-list-wrap .price-tag::before {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 1px;
  background: #fff;
  border-radius: inherit;
}

.pass-packages-price .price-list-wrap .price-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #8a3900 0%, #eb8100 100%) border-box;
  border: 2px solid transparent;
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: exclude;
}

.passes-package-about .img-wrap img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.color-f580 {
  color: #f5f5f580;
}

.color-f5 {
  color: #f5f5f5;
}

.passes-package-about ul li {
  color: #f5f5f5;
  font-size: 16px;
  font-weight: lighter;
}

.passes-package-about ul li::before {
  content: "- ";
  margin-right: 8px; 
}

.opacity-80 {
  opacity: .8;
}

.opacity-1 {
  opacity: 1;
}

ul li.list-type-disc {
  list-style-type: disc;
  margin-left: 30px;
}

ul li.list-type-disc::before {
  content: '';
}

.mt-100 {
  margin-top: 100px;
}

.order-6 {
    order: 6 !important;
}

.order-7 {
    order: 7 !important;
}

.order-8 {
    order: 8 !important;
}

.order-9 {
  order: 9 !important;
}

.order-10 {
  order: 10 !important;
}

.order-11 {
  order: 11 !important;
}

.order-12 {
  order: 12 !important;
}

.order-13 {
  order: 13 !important;
}

.order-14 {
  order: 14 !important;
}

@media (max-width: 991px) {
  .main-content {
    margin-top: 64px;
  }

  .flot-header p {
    text-align: center;
  }

  .flot-header p:after {
    content: unset;
  }

  .width-fit {
    width: fit-content;
    height: 32px;
  }

  .flot-header {
    top: 88px;
  }

  .package-item h2 {
    flex-direction: column;
  }

  .package-item h2:after {
    height: 1px;
    width: 26px;
    background: linear-gradient(90deg, #f5f5f51a 0%, #f5f5f580 50%, #f5f5f51a 100%);
  }

  .line {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #fff 50%, rgba(0, 0, 0, 0) 100%);
  }

  .social-media {
    padding: 30px 0;
  }

  .login-bg {
    background-image: unset;
  }

  .login-copy-right {
    color: #24242499;
    position: relative;
    text-align: center;
  }

  .login-copy-right a {
    color: #24242499;
  }

  .cus-card-wrap {
    overflow-x: scroll;
    flex-wrap: nowrap;
    gap: 22px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }

  .cus-card-wrap::-webkit-scrollbar {
    display: none;
  }

  .cus-card-wrap .col-3 {
    width: 282px;
    padding-inline: 0;
  }

  .cus-container {
    padding: 0 15px;
  }

  .hotel-package-card {
    flex-direction: row;
  }

  .hotel-package-card .img-wrap {
    width: 180px;
    height: 100%;
  }

  .hotel-package-card .details {
    border-radius: 0 10px 10px 0;
  }

  .hotel-package-card img {
    border-radius: 10px 0 0 10px;
  }

  .tl-nav .nav-inner{ padding: 0 15px; }

 
}

@media (min-width: 991px) {
  .order-lg-6 {
    order: 6 !important;
}

.order-lg-7 {
    order: 7 !important;
}

.order-lg-8 {
    order: 8 !important;
}

.order-lg-9 {
  order: 9 !important;
}

.order-lg-10 {
  order: 10 !important;
}

.order-lg-11 {
  order: 11 !important;
}

.order-lg-12 {
  order: 12 !important;
}

.order-lg-13 {
  order: 13 !important;
}

.order-lg-14 {
  order: 14 !important;
}

.fs-lg-24 {
  font-size: 24px;
}

}
