
    :root{
      --bg:#151515;
      --panel:#1f1f1f;
      --panel2:#292929;
      --border:#454545;
      --gold:#c4a45f;
      --gold-light:#e2c77e;
      --text:#fff;
      --muted:#a9a9a9;
      --danger:#e57373;
      --success:#8fd59a;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      font-family:Arial,Helvetica,sans-serif;
      background:linear-gradient(180deg,#191919 0%,#242424 42%,#ededed 42%,#f5f5f5 100%);
      color:var(--text);
      min-height:100vh;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    button,
    input{
      font:inherit;
    }

    button{
      cursor:pointer;
    }

    .site-header{
      border-bottom:1px solid rgba(196,164,95,.22);
      background:rgba(7,7,7,.96);
      position:sticky;
      top:0;
      z-index:50;
    }

    .nav{
      max-width:1180px;
      margin:auto;
      min-height:78px;
      padding:0 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .brand{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }

    .brand-name{
      font-size:21px;
      font-weight:700;
      letter-spacing:.5px;
    }

    .brand-sub{
      margin-top:5px;
      color:var(--gold);
      font-size:11px;
      letter-spacing:2px;
      text-transform:uppercase;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:25px;
      font-size:14px;
    }

    .nav-links a{
      color:#d7d7d7;
      transition:.2s ease;
    }

    .nav-links a:hover{
      color:var(--gold-light);
    }

    .book-nav{
      padding:11px 17px;
      border:1px solid var(--gold);
      color:var(--gold-light)!important;
      border-radius:6px;
    }

    .page{
      max-width:1080px;
      margin:0 auto;
      padding:58px 22px 80px;
    }

    .page-intro{
      margin-bottom:34px;
    }

    .eyebrow{
      color:var(--gold);
      text-transform:uppercase;
      letter-spacing:2.5px;
      font-size:11px;
      font-weight:700;
      margin-bottom:10px;
    }

    h1{
      margin:0;
      font-size:42px;
      line-height:1.08;
      font-weight:600;
    }

    .intro-text{
      color:var(--muted);
      margin-top:12px;
      font-size:16px;
      line-height:1.6;
    }

    .hidden{
      display:none!important;
    }

    .auth-shell{
      max-width:590px;
      margin:0 auto;
    }

    .card{
      background:linear-gradient(145deg,#2d2d2d,#232323);
      border:1px solid var(--border);
      border-radius:16px;
      box-shadow:0 18px 55px rgba(0,0,0,.28);
    }

    .auth-card{
      padding:30px;
    }

    .tabs{
      display:grid;
      grid-template-columns:1fr 1fr;
      background:#202020;
      border:1px solid #272727;
      border-radius:9px;
      padding:4px;
      margin-bottom:28px;
    }

    .tab{
      border:0;
      background:transparent;
      color:#aaa;
      padding:12px;
      border-radius:6px;
      font-weight:600;
    }

    .tab.active{
      background:var(--gold);
      color:#090909;
    }

    .auth-title{
      font-size:26px;
      margin:0 0 7px;
    }

    .auth-copy{
      color:var(--muted);
      margin:0 0 25px;
      line-height:1.5;
    }

    .field{
      margin-bottom:17px;
    }

    label{
      display:block;
      margin-bottom:8px;
      font-size:13px;
      color:#d5d5d5;
      font-weight:600;
    }

    input{
      width:100%;
      background:#202020;
      color:#fff;
      border:1px solid #353535;
      border-radius:8px;
      padding:14px 15px;
      outline:none;
      transition:.2s;
    }

    input:focus{
      border-color:var(--gold);
      box-shadow:0 0 0 3px rgba(196,164,95,.10);
    }

    .btn{
      border:1px solid #444;
      background:#111;
      color:#fff;
      border-radius:7px;
      padding:12px 18px;
      font-weight:600;
      transition:.2s;
    }

    .btn:hover{
      border-color:#777;
    }

    .btn-primary{
      border-color:var(--gold);
      background:var(--gold);
      color:#0b0b0b;
    }

    .btn-primary:hover{
      background:var(--gold-light);
      border-color:var(--gold-light);
    }

    .btn-block{
      width:100%;
      padding:14px;
    }

    .error{
      color:var(--danger);
      margin-top:15px;
      font-size:14px;
    }

    .success{
      color:var(--success);
      margin-top:15px;
      font-size:14px;
    }

    .account-header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:25px;
      padding:27px 30px;
      margin-bottom:25px;
    }

    .welcome-title{
      font-size:28px;
      margin:0 0 7px;
    }

    .muted{
      color:var(--muted);
    }

    .bookings-card{
      padding:0;
      overflow:hidden;
    }

    .bookings-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding:26px 30px;
      border-bottom:1px solid #292929;
    }

    .bookings-head h2{
      margin:0;
      font-size:25px;
    }

    .bookings-head p{
      margin:7px 0 0;
      color:var(--muted);
      font-size:14px;
    }

    .new-booking-btn{
      flex-shrink:0;
    }

    #bookings-list{
      padding:10px 30px 30px;
    }

    .booking{
      margin-top:20px;
      border:1px solid #303030;
      background:#242424;
      border-radius:13px;
      overflow:hidden;
      transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
    }

    .booking:hover{
      border-color:rgba(196,164,95,.7);
      transform:translateY(-2px);
      box-shadow:0 15px 38px rgba(0,0,0,.3);
    }

    .booking-main{
      padding:22px;
    }

    .booking-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:20px;
      margin-bottom:20px;
    }

    .confirmation-label{
      color:#888;
      text-transform:uppercase;
      letter-spacing:1.4px;
      font-size:10px;
      margin-bottom:6px;
    }

    .confirmation-number{
      font-weight:700;
      font-size:19px;
    }

    .status-badge{
      border-radius:999px;
      padding:7px 11px;
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:1px;
      font-weight:700;
      white-space:nowrap;
    }

    .status-active{
      color:#bfe7c5;
      border:1px solid rgba(143,213,154,.35);
      background:rgba(143,213,154,.08);
    }

    .status-modified{
      color:#edd18c;
      border:1px solid rgba(196,164,95,.45);
      background:rgba(196,164,95,.09);
    }

    .status-cancelled{
      color:#efaaaa;
      border:1px solid rgba(229,115,115,.4);
      background:rgba(229,115,115,.08);
    }

    .trip-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:25px;
    }

    .trip-label{
      color:#777;
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:1.2px;
      margin-bottom:7px;
    }

    .trip-value{
      color:#f0f0f0;
      line-height:1.5;
      font-size:15px;
    }

    .route{
      margin-top:18px;
      border-left:2px solid var(--gold);
      padding-left:15px;
    }

    .route-point{
      margin:0 0 9px;
      line-height:1.5;
    }

    .route-point:last-child{
      margin-bottom:0;
    }

    .route-arrow{
      color:#777;
      margin:3px 0 7px;
      font-size:13px;
    }

    .booking-footer{
      background:#2a2a2a;
      border-top:1px solid #262626;
      padding:16px 22px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
    }

    .price-label{
      color:#888;
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:1px;
    }

    .price{
      color:var(--gold-light);
      font-size:22px;
      font-weight:700;
      margin-top:3px;
    }

    .view-btn{
      padding:11px 18px;
      border:1px solid var(--gold);
      border-radius:6px;
      color:var(--gold-light);
      font-size:13px;
      font-weight:700;
    }

    .view-btn:hover{
      background:var(--gold);
      color:#080808;
    }

    .cancel-info{
      color:#d39797;
      font-size:13px;
      margin-top:7px;
    }

    .empty-state{
      text-align:center;
      padding:55px 20px 35px;
    }

    .empty-title{
      font-size:21px;
      margin-bottom:8px;
    }

    .empty-copy{
      color:var(--muted);
      margin-bottom:22px;
    }

    .loading{
      color:var(--muted);
      padding:28px 0 10px;
    }

    @media(max-width:760px){
      .nav{
        min-height:70px;
        padding:0 18px;
      }

      .nav-links a:not(.book-nav){
        display:none;
      }

      .brand-name{
        font-size:18px;
      }

      .brand-sub{
        font-size:9px;
      }

      .page{
        padding:38px 15px 60px;
      }

      h1{
        font-size:34px;
      }

      .auth-card{
        padding:22px;
      }

      .account-header{
        padding:22px;
        align-items:flex-start;
        flex-direction:column;
      }

      .bookings-head{
        padding:22px;
        align-items:flex-start;
        flex-direction:column;
      }

      .new-booking-btn{
        width:100%;
        text-align:center;
      }

      #bookings-list{
        padding:5px 15px 20px;
      }

      .trip-grid{
        grid-template-columns:1fr;
        gap:18px;
      }

      .booking-top{
        gap:12px;
      }

      .booking-footer{
        align-items:flex-start;
        flex-direction:column;
      }

      .view-btn{
        width:100%;
        text-align:center;
      }
    }
  



:root{
  --bg:#f5f5f3;
  --panel:#fff;
  --panel2:#f7f7f5;
  --border:#e2e2de;
  --gold:#a47b3c;
  --gold-light:#bc9556;
  --text:#151515;
  --muted:#6c6d6e;
  --danger:#b94a48;
  --success:#427a4b;
}

body{
  background:
    radial-gradient(circle at 82% 8%,rgba(164,123,60,.08),transparent 28%),
    #f5f5f3!important;
  color:#151515!important;
}

/* HEADER */

.site-header{
  position:sticky!important;
  top:0!important;
  z-index:1000!important;
  background:rgba(255,255,255,.94)!important;
  border-bottom:1px solid rgba(0,0,0,.07)!important;
  backdrop-filter:blur(14px)!important;
}

.nav{
  max-width:1280px!important;
  min-height:74px!important;
  padding:0 24px!important;
}

.brand{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  gap:11px!important;
  color:#151515!important;
  font-size:20px!important;
  font-weight:700!important;
  letter-spacing:-.02em!important;
}

.brand:before{
  content:"DL";
  width:36px;
  height:36px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:800;
  letter-spacing:0;
}

.nav-links{
  display:flex!important;
  align-items:center!important;
  gap:30px!important;
  font-size:13px!important;
  font-weight:600!important;
}

.nav-links > a{
  color:#222!important;
  padding:28px 0!important;
}

.nav-links > a:hover{
  color:#777!important;
}

.book-nav{
  border:0!important;
  background:#111!important;
  color:#fff!important;
  border-radius:6px!important;
  padding:12px 18px!important;
  font-size:13px!important;
  font-weight:700!important;
}

/* SERVICES DROPDOWN */

.services-menu{
  position:relative;
  display:flex;
  align-items:center;
}

.services-trigger{
  appearance:none;
  border:0;
  background:transparent;
  color:#222;
  font:inherit;
  font-size:13px;
  font-weight:600;
  padding:28px 0;
  cursor:pointer;
}

.services-dropdown{
  position:absolute;
  top:calc(100% - 5px);
  left:50%;
  transform:translate(-50%,10px);
  width:285px;
  padding:6px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(255,255,255,.65);
  border-radius:8px;
  box-shadow:0 18px 45px rgba(0,0,0,.13);
  backdrop-filter:blur(18px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.18s ease;
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.services-dropdown a{
  display:block!important;
  color:#161616!important;
  padding:8px 10px!important;
  border-radius:6px!important;
}

.services-dropdown a:hover{
  background:rgba(255,255,255,.72)!important;
}

.services-dropdown strong{
  display:block;
  font-size:12px;
  line-height:1.15;
}

.services-dropdown span{
  display:block;
  margin-top:2px;
  color:#777;
  font-size:10px;
}

/* PAGE */

.page{
  max-width:1080px!important;
  padding:64px 22px 90px!important;
}

.page-intro{
  text-align:center;
  margin-bottom:38px!important;
}

.eyebrow{
  color:#a47b3c!important;
  font-size:10px!important;
  font-weight:800!important;
  letter-spacing:.18em!important;
}

h1{
  color:#151515!important;
  font-size:clamp(42px,5vw,62px)!important;
  font-weight:500!important;
  letter-spacing:-.045em!important;
  line-height:1.02!important;
}

.intro-text{
  color:#6c6d6e!important;
  font-size:16px!important;
}

/* CARDS */

.card{
  background:#fff!important;
  border:1px solid #e2e2de!important;
  border-radius:14px!important;
  box-shadow:0 18px 50px rgba(0,0,0,.055)!important;
}

.auth-shell{
  max-width:540px!important;
}

.auth-card{
  padding:28px!important;
}

.tabs{
  background:#f4f4f2!important;
  border:1px solid #e5e5e1!important;
  border-radius:9px!important;
}

.tab{
  color:#777!important;
}

.tab.active{
  background:#111!important;
  color:#fff!important;
}

.auth-title{
  color:#151515!important;
  font-size:27px!important;
  letter-spacing:-.025em!important;
}

.auth-copy,
.muted{
  color:#747576!important;
}

label{
  color:#333!important;
}

input{
  background:#fafafa!important;
  color:#151515!important;
  border:1px solid #d9d9d5!important;
  border-radius:7px!important;
  padding:14px 15px!important;
}

input:focus{
  border-color:#777!important;
  box-shadow:0 0 0 3px rgba(0,0,0,.05)!important;
}

.btn{
  border:1px solid #d3d3cf!important;
  background:#fff!important;
  color:#151515!important;
  border-radius:6px!important;
}

.btn:hover{
  border-color:#999!important;
}

.btn-primary{
  background:#111!important;
  border-color:#111!important;
  color:#fff!important;
}

.btn-primary:hover{
  background:#292929!important;
  border-color:#292929!important;
}

/* LOGGED-IN ACCOUNT */

.account-header{
  padding:26px 28px!important;
}

.welcome-title{
  color:#151515!important;
  font-size:29px!important;
  letter-spacing:-.03em!important;
}

.bookings-card{
  background:#fff!important;
}

.bookings-head{
  border-bottom:1px solid #e7e7e3!important;
  padding:26px 28px!important;
}

.bookings-head h2{
  color:#151515!important;
  letter-spacing:-.025em!important;
}

.bookings-head p{
  color:#747576!important;
}

#bookings-list{
  padding:10px 28px 30px!important;
}

/* RESERVATIONS */

.booking{
  background:#fff!important;
  border:1px solid #e2e2de!important;
  border-radius:12px!important;
  box-shadow:none!important;
}

.booking:hover{
  border-color:#bcbcb6!important;
  transform:translateY(-2px)!important;
  box-shadow:0 14px 35px rgba(0,0,0,.055)!important;
}

.confirmation-label,
.trip-label,
.price-label{
  color:#888!important;
}

.confirmation-number,
.trip-value{
  color:#181818!important;
}

.status-active{
  color:#427a4b!important;
  border-color:rgba(66,122,75,.25)!important;
  background:rgba(66,122,75,.07)!important;
}

.status-modified{
  color:#96702f!important;
  border-color:rgba(164,123,60,.30)!important;
  background:rgba(164,123,60,.07)!important;
}

.status-cancelled{
  color:#b94a48!important;
  border-color:rgba(185,74,72,.28)!important;
  background:rgba(185,74,72,.06)!important;
}

.route{
  border-left:2px solid #111!important;
}

.route-arrow{
  color:#aaa!important;
}

.booking-footer{
  background:#f7f7f5!important;
  border-top:1px solid #e7e7e3!important;
}

.price{
  color:#151515!important;
}

.view-btn{
  color:#151515!important;
  border:1px solid #bdbdb8!important;
  background:#fff!important;
}

.view-btn:hover{
  background:#111!important;
  border-color:#111!important;
  color:#fff!important;
}

.cancel-info{
  color:#b94a48!important;
}

.empty-title{
  color:#151515!important;
}

.empty-copy,
.loading{
  color:#777!important;
}

/* MOBILE */

@media(max-width:760px){

  .nav{
    min-height:70px!important;
    padding:0 16px!important;
  }

  .nav-links{
    display:none!important;
  }

  .brand{
    font-size:17px!important;
  }

  .brand:before{
    width:32px;
    height:32px;
    font-size:10px;
  }

  .book-nav{
    padding:11px 13px!important;
    font-size:12px!important;
  }

  .page{
    padding:44px 15px 65px!important;
  }

  h1{
    font-size:42px!important;
  }

  .auth-card{
    padding:20px!important;
  }

  .account-header,
  .bookings-head{
    padding:21px!important;
  }

  #bookings-list{
    padding:5px 14px 20px!important;
  }

  .booking-main{
    padding:19px!important;
  }

  .booking-footer{
    padding:16px 19px!important;
  }
}





.reservation-tabs{
  display:flex;
  align-items:center;
  gap:6px;
  margin:20px 28px 0;
  padding:5px;
  background:#f4f4f2;
  border:1px solid #e5e5e1;
  border-radius:9px;
}

.reservation-tab{
  flex:1;
  appearance:none;
  border:0;
  background:transparent;
  color:#777;
  border-radius:6px;
  padding:11px 14px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.18s ease;
}

.reservation-tab:hover{
  color:#111;
}

.reservation-tab.active{
  background:#111;
  color:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.10);
}

.reservation-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:20px;
  height:20px;
  margin-left:5px;
  padding:0 6px;
  border-radius:999px;
  background:rgba(0,0,0,.08);
  font-size:10px;
}

.reservation-tab.active .reservation-count{
  background:rgba(255,255,255,.17);
}

.booking{
  cursor:pointer;
}

.booking:focus-visible{
  outline:2px solid #111;
  outline-offset:3px;
}

.reservation-empty{
  padding:55px 20px;
  text-align:center;
  color:#777;
}

.reservation-empty strong{
  display:block;
  color:#151515;
  font-size:20px;
  margin-bottom:7px;
}

@media(max-width:760px){

  .reservation-tabs{
    margin:16px 14px 2px;
  }

  .reservation-tab{
    padding:10px 5px;
    font-size:12px;
  }

  .reservation-count{
    margin-left:2px;
  }
}





/* =========================================
   LOGGED-IN CUSTOMER DASHBOARD
   ========================================= */

#account-area{
  max-width:1180px;
  margin:0 auto;
}

/* ACCOUNT TOP */

.modern-account-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;

  padding:10px 2px 34px;
  margin-bottom:4px;

  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}

.modern-account-header .eyebrow{
  margin-bottom:8px;
}

.modern-account-header .welcome-title{
  margin:0;

  font-size:clamp(30px,4vw,43px)!important;
  line-height:1.05;

  font-weight:500!important;
  letter-spacing:-.045em!important;
}

.modern-account-header .muted{
  margin-top:9px;

  font-size:14px;
}

.account-header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.dashboard-book-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:46px;
  padding:0 19px;

  background:#111;
  color:#fff;

  border-radius:7px;

  font-size:13px;
  font-weight:700;

  transition:.18s ease;
}

.dashboard-book-btn:hover{
  background:#292929;
}

.dashboard-logout-btn{
  min-height:46px;
  padding:0 17px;

  background:#fff;
  color:#333;

  border:1px solid #d9d9d5;
  border-radius:7px;

  font-size:13px;
  font-weight:600;
}

.dashboard-logout-btn:hover{
  border-color:#aaa;
}


/* RESERVATIONS CONTAINER */

.bookings-card{
  overflow:hidden;

  background:#fff!important;

  border:1px solid #e4e4df!important;
  border-radius:18px!important;

  box-shadow:
    0 20px 60px rgba(0,0,0,.055)!important;
}

.modern-bookings-head{
  padding:30px 32px 20px!important;

  border-bottom:0!important;
}

.dashboard-label{
  margin-bottom:8px;

  color:#a47b3c;

  font-size:9px;
  font-weight:800;

  letter-spacing:.20em;
}

.modern-bookings-head h2{
  margin:0;

  font-size:31px!important;
  line-height:1.1;

  font-weight:600!important;
  letter-spacing:-.035em!important;
}

.modern-bookings-head p{
  margin-top:8px!important;

  color:#777!important;

  font-size:14px!important;
}


/* =========================================
   BIG RESERVATION CATEGORY CARDS
   ========================================= */

.reservation-tabs{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;

  gap:12px!important;

  margin:4px 32px 28px!important;
  padding:0!important;

  background:transparent!important;
  border:0!important;
}

.reservation-tab{
  position:relative;

  min-height:104px;

  padding:19px 20px!important;

  text-align:left!important;

  background:#f7f7f5!important;
  color:#555!important;

  border:1px solid #e7e7e2!important;
  border-radius:12px!important;

  box-shadow:none!important;

  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease!important;
}

.reservation-tab:hover{
  transform:translateY(-2px);

  border-color:#cfcfca!important;

  color:#111!important;
}

.reservation-tab::before{
  display:block;

  margin-bottom:9px;

  color:#888;

  font-size:9px;
  font-weight:800;

  letter-spacing:.17em;
}

.reservation-tab[data-filter="upcoming"]::before{
  content:"NEXT TRIPS";
}

.reservation-tab[data-filter="past"]::before{
  content:"TRIP HISTORY";
}

.reservation-tab[data-filter="cancelled"]::before{
  content:"CANCELLED";
}

.reservation-tab.active{
  background:#111!important;
  color:#fff!important;

  border-color:#111!important;

  transform:none!important;
}

.reservation-tab.active::before{
  color:#aaa;
}

.reservation-count{
  position:absolute;

  top:17px;
  right:17px;

  min-width:30px!important;
  height:30px!important;

  margin:0!important;

  background:#fff!important;
  color:#111!important;

  border:1px solid #deded9;

  font-size:12px!important;
  font-weight:800!important;
}

.reservation-tab.active .reservation-count{
  background:rgba(255,255,255,.13)!important;
  color:#fff!important;

  border-color:rgba(255,255,255,.12);
}


/* =========================================
   RESERVATION LIST
   ========================================= */

#bookings-list{
  padding:0 32px 32px!important;
}

.booking{
  position:relative;

  margin-top:14px!important;

  overflow:hidden;

  background:#fff!important;

  border:1px solid #e6e6e1!important;
  border-radius:14px!important;

  box-shadow:none!important;

  cursor:pointer;

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease!important;
}

.booking:first-child{
  margin-top:0!important;
}

.booking:hover{
  transform:translateY(-2px)!important;

  border-color:#c9c9c3!important;

  box-shadow:
    0 14px 38px rgba(0,0,0,.06)!important;
}

.booking-main{
  padding:25px 26px 21px!important;
}


/* CONFIRMATION + STATUS */

.booking-top{
  align-items:center!important;

  margin-bottom:22px!important;
}

.confirmation-label{
  margin-bottom:4px!important;

  color:#999!important;

  font-size:9px!important;
  font-weight:700;

  letter-spacing:.15em!important;
}

.confirmation-number{
  color:#202020!important;

  font-size:15px!important;
  font-weight:700!important;
}

.status-badge{
  padding:7px 10px!important;

  font-size:9px!important;
  letter-spacing:.11em!important;
}


/* TRIP INFORMATION */

.trip-grid{
  grid-template-columns:1fr 1fr!important;

  gap:35px!important;
}

.trip-label{
  margin-bottom:7px!important;

  color:#999!important;

  font-size:9px!important;
  font-weight:700;

  letter-spacing:.15em!important;
}

.trip-value{
  color:#222!important;

  font-size:14px!important;
  line-height:1.55!important;
}

.trip-value strong{
  font-size:17px;
  font-weight:650;
}


/* ROUTE */

.route{
  position:relative;

  margin-top:22px!important;
  padding:3px 0 3px 22px!important;

  border-left:0!important;
}

.route::before{
  content:"";

  position:absolute;
  top:8px;
  bottom:8px;
  left:5px;

  width:1px;

  background:#d2d2cd;
}

.route-point{
  position:relative;

  margin:0!important;

  color:#282828;

  font-size:14px;
  line-height:1.45;
}

.route-point::before{
  content:"";

  position:absolute;
  left:-22px;
  top:5px;

  width:9px;
  height:9px;

  background:#fff;

  border:2px solid #111;
  border-radius:50%;
}

.route-point:last-child::before{
  background:#111;
}

.route-arrow{
  height:20px;

  margin:0!important;

  color:transparent!important;

  font-size:0!important;
}


/* PRICE FOOTER */

.booking-footer{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;

  padding:17px 26px!important;

  background:#fafaf8!important;

  border-top:1px solid #ecece8!important;
}

.price-label{
  margin-bottom:3px;

  color:#999!important;

  font-size:9px!important;
  font-weight:700;

  letter-spacing:.13em!important;
}

.price{
  margin:0!important;

  color:#111!important;

  font-size:20px!important;
  font-weight:700!important;
}

.view-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;

  min-height:40px;

  padding:0 15px!important;

  background:#fff!important;
  color:#111!important;

  border:1px solid #d6d6d1!important;
  border-radius:7px!important;

  font-size:12px!important;
  font-weight:700!important;

  transition:.18s ease;
}

.view-btn::after{
  content:" →";

  margin-left:5px;
}

.view-btn:hover{
  background:#111!important;
  color:#fff!important;

  border-color:#111!important;
}


/* EMPTY STATES */

.reservation-empty{
  margin-top:2px;

  padding:68px 20px!important;

  background:#fafaf8;

  border:1px dashed #deded9;
  border-radius:12px;

  color:#777!important;
}

.reservation-empty strong{
  margin-bottom:8px!important;

  font-size:20px!important;
  font-weight:600!important;

  letter-spacing:-.02em;
}


/* =========================================
   MOBILE
   ========================================= */

@media(max-width:760px){

  #account-area{
    width:100%;
  }

  .modern-account-header{
    align-items:flex-start!important;
    flex-direction:column!important;

    gap:20px!important;

    padding:4px 2px 26px!important;
  }

  .account-header-actions{
    width:100%;
  }

  .dashboard-book-btn{
    flex:1;
  }

  .modern-account-header .welcome-title{
    font-size:33px!important;
  }

  .bookings-card{
    border-radius:14px!important;
  }

  .modern-bookings-head{
    padding:23px 18px 17px!important;
  }

  .modern-bookings-head h2{
    font-size:26px!important;
  }

  .reservation-tabs{
    display:flex!important;

    gap:8px!important;

    margin:0 18px 22px!important;

    overflow-x:auto;

    scrollbar-width:none;
  }

  .reservation-tabs::-webkit-scrollbar{
    display:none;
  }

  .reservation-tab{
    flex:0 0 155px!important;

    min-height:91px!important;

    padding:16px!important;
  }

  .reservation-count{
    top:13px;
    right:13px;
  }

  #bookings-list{
    padding:0 14px 18px!important;
  }

  .booking-main{
    padding:20px!important;
  }

  .booking-top{
    margin-bottom:20px!important;
  }

  .trip-grid{
    grid-template-columns:1fr!important;

    gap:17px!important;
  }

  .route{
    margin-top:19px!important;
  }

  .booking-footer{
    align-items:center!important;
    flex-direction:row!important;

    padding:15px 20px!important;
  }

  .view-btn{
    width:auto!important;
  }

  .price{
    font-size:18px!important;
  }

}




.mobile-simple-menu{display:none}

@media(max-width:760px){

  .nav-links,
  .book-nav{
    display:none!important;
  }

  .site-header,
  .site-header .nav{
    overflow:visible!important;
  }

  .mobile-simple-menu{
    display:block!important;
    position:relative;
    margin-left:auto;
    z-index:5000;
  }

  .mobile-simple-btn{
    width:42px;
    height:42px;
    min-width:42px;
    padding:0;
    border:0;
    cursor:pointer;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;

    background:
      linear-gradient(#111,#111)
      center/23px 2px no-repeat;
  }

  .mobile-simple-btn::before,
  .mobile-simple-btn::after{
    content:"";
    display:block;
    width:23px;
    height:2px;
    background:#111;
    border-radius:2px;
  }

  .mobile-simple-btn span{
    display:none;
  }

  .mobile-simple-dropdown{
    position:absolute;
    top:49px;
    right:0;

    width:min(290px,calc(100vw - 28px));
    max-height:calc(100vh - 90px);

    overflow:hidden;
    padding:8px;

    background:rgba(255,255,255,.99);
    border:1px solid rgba(0,0,0,.09);
    border-radius:12px;

    box-shadow:0 20px 55px rgba(0,0,0,.16);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translateY(-6px);

    transition:
      opacity .16s ease,
      transform .16s ease,
      visibility .16s ease;
  }

  .mobile-simple-menu.open .mobile-simple-dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .mobile-simple-dropdown > a,
  .mobile-services-open{
    display:flex!important;
    width:100%!important;

    align-items:center!important;
    justify-content:space-between!important;

    padding:13px 12px!important;

    color:#222!important;
    background:transparent!important;

    border:0!important;
    border-bottom:1px solid #ecece8!important;
    border-radius:0!important;

    font-family:inherit!important;
    font-size:14px!important;
    font-weight:600!important;

    text-decoration:none!important;
    text-align:left!important;
  }

  .mobile-services-open{
    cursor:pointer;
  }

  .mobile-services-panel{
    position:absolute;
    inset:0;

    padding:8px;

    background:#fff;
    border-radius:12px;

    overflow-y:auto;

    transform:translateX(105%);
    transition:transform .18s ease;

    z-index:2;
  }

  .mobile-simple-menu.services-open .mobile-services-panel{
    transform:translateX(0);
  }

  .mobile-services-back{
    display:flex;
    width:100%;

    align-items:center;
    gap:8px;

    padding:12px 10px 13px;

    background:transparent;
    color:#111;

    border:0;
    border-bottom:1px solid #ecece8;

    font-family:inherit;
    font-size:13px;
    font-weight:700;

    cursor:pointer;
  }

  .mobile-services-panel a{
    display:block!important;

    padding:11px 10px!important;

    color:#333!important;

    font-size:13px!important;
    font-weight:500!important;

    text-decoration:none!important;

    border-bottom:1px solid #f0f0ed!important;
  }

}

/* Keep the Account header fixed while the page scrolls */
.site-header{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  width:100%!important;
  z-index:1000!important;
}
body{
  padding-top:74px!important;
}

/* Account header scrolls normally with the page */
.site-header{
  position:relative!important;
  top:auto!important;
  left:auto!important;
  right:auto!important;
  width:auto!important;
}
body{
  padding-top:0!important;
}
