.nav__link--reservation{
  appearance:none;
  border:1px solid rgba(202,168,93,.40);
  background:linear-gradient(135deg, rgba(202,168,93,.18), rgba(255,217,160,.08));
  color:#fff;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.nav__link--reservation:hover{
  background:linear-gradient(135deg, rgba(202,168,93,.28), rgba(255,217,160,.14));
  border-color:rgba(202,168,93,.72);
}

.reservationLookupModal{
  position:fixed;
  inset:0;
  z-index:99999;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease, visibility .22s ease;
}

.reservationLookupModal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.reservationLookupModal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,10,18,.68);
  backdrop-filter:blur(8px);
}

.reservationLookupModal__dialog{
  position:relative;
  width:min(92vw, 560px);
  margin:32px auto;
  padding:26px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at top left, rgba(243,210,122,.12), transparent 30%),
    linear-gradient(180deg, rgba(18,30,48,.96), rgba(10,18,30,.96));
  box-shadow:0 28px 90px rgba(0,0,0,.45);
  color:#fff;

  max-height:calc(100vh - 64px);
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;

  scrollbar-width:thin;
  scrollbar-color:rgba(212,175,55,.65) rgba(255,255,255,.08);
}

.reservationLookupModal__dialog::-webkit-scrollbar{
  width:10px;
}

.reservationLookupModal__dialog::-webkit-scrollbar-track{
  background:rgba(255,255,255,.06);
  border-radius:999px;
}

.reservationLookupModal__dialog::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, rgba(212,175,55,.95), rgba(243,210,122,.80));
  border-radius:999px;
  border:2px solid rgba(8,14,24,.35);
}

.reservationLookupModal__dialog::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg, rgba(243,210,122,1), rgba(212,175,55,.95));
}

.reservationLookupModal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  z-index:3;
}

.reservationLookupModal__close:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

.reservationLookupModal__head{
  margin-bottom:18px;
  padding-right:56px;
}

.reservationLookupModal__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(202,168,93,.14);
  border:1px solid rgba(202,168,93,.26);
  color:#f3d27a;
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.reservationLookupModal__title{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.15;
  font-weight:900;
  color:#fff;
}

.reservationLookupModal__sub{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.7;
}

.reservationLookupForm{
  display:grid;
  gap:14px;
}

.reservationLookupForm__field label{
  display:block;
  margin:0 0 8px;
  color:rgba(255,255,255,.86);
  font-size:13px;
  font-weight:800;
}

.reservationLookupForm__input{
  width:100%;
  min-height:52px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.reservationLookupForm__input::placeholder{
  color:rgba(255,255,255,.42);
}

.reservationLookupForm__input:focus{
  border-color:rgba(202,168,93,.85);
  box-shadow:0 0 0 4px rgba(202,168,93,.14);
  background:rgba(255,255,255,.08);
}

.reservationLookupForm__submit{
  min-height:54px;
  padding:14px 18px;
  border:none;
  border-radius:16px;
  cursor:pointer;
  font-size:15px;
  font-weight:900;
  color:#0e314f;
  background:linear-gradient(135deg,#d4af37,#f3d27a);
  box-shadow:0 16px 34px rgba(212,175,55,.24);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.reservationLookupForm__submit:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 40px rgba(212,175,55,.30);
  filter:brightness(1.02);
}

.reservationLookupForm__submit:disabled{
  opacity:.7;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

.reservationLookupResult{
  margin-top:18px;
  padding-bottom:4px;
}

.reservationLookupResult__loading,
.reservationLookupResult__error{
  padding:14px 16px;
  border-radius:16px;
  font-size:14px;
  line-height:1.6;
}

.reservationLookupResult__loading{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.84);
}

.reservationLookupResult__error{
  background:rgba(255,90,90,.10);
  border:1px solid rgba(255,90,90,.22);
  color:#ffd0d0;
}

.reservationLookupCard{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 44px rgba(0,0,0,.18);
}

.reservationLookupCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.reservationLookupCard__title{
  margin:0 0 4px;
  font-size:18px;
  font-weight:900;
  color:#fff;
}

.reservationLookupCard__code{
  color:rgba(255,255,255,.64);
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.reservationLookupBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
  white-space:nowrap;
  flex-shrink:0;
}

.reservationLookupBadge--pending{
  background:rgba(255,193,7,.14);
  border:1px solid rgba(255,193,7,.30);
  color:#ffe082;
}

.reservationLookupBadge--confirmed{
  background:rgba(46,204,113,.14);
  border:1px solid rgba(46,204,113,.30);
  color:#9ff0bf;
}

.reservationLookupBadge--cancelled{
  background:rgba(255,90,90,.14);
  border:1px solid rgba(255,90,90,.30);
  color:#ffb5b5;
}

.reservationLookupBadge--completed{
  background:rgba(86,163,255,.14);
  border:1px solid rgba(86,163,255,.30);
  color:#b8d9ff;
}

.reservationLookupBadge--default{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

.reservationLookupGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.reservationLookupItem{
  padding:13px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  min-width:0;
}

.reservationLookupItem__label{
  display:block;
  margin-bottom:5px;
  color:#f3d27a;
  font-size:11px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.reservationLookupItem__value{
  color:#fff;
  font-size:14px;
  line-height:1.65;
  word-break:break-word;
}

html[dir="rtl"] .reservationLookupModal__dialog{
  text-align:right;
}

html[dir="rtl"] .reservationLookupModal__close{
  right:auto;
  left:14px;
}

html[dir="rtl"] .reservationLookupModal__head{
  padding-right:0;
  padding-left:56px;
}

html[dir="rtl"] .reservationLookupCard__top{
  flex-direction:row-reverse;
}

@media (max-width: 980px){
  .nav__link--reservation{
    padding:10px 12px;
  }
}

@media (max-width: 900px){
  .header{
    height:auto;
  }

  .header__inner{
    min-height:95px;
    height:auto;
    flex-wrap:wrap;
    padding:14px 0;
  }

  .nav{
    order:3;
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  .lang{
    max-width:none;
  }
}

@media (max-width: 640px){
  .reservationLookupModal__dialog{
    width:min(94vw, 560px);
    margin:12px auto;
    padding:20px 14px 14px;
    border-radius:20px;
    max-height:calc(100vh - 24px);
  }

  .reservationLookupModal__title{
    font-size:24px;
  }

  .reservationLookupGrid{
    grid-template-columns:1fr;
  }

  .reservationLookupCard__top{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    gap:6px;
  }

  .nav__link{
    font-size:13px;
    padding:9px 10px;
  }
}