@import url("https://fonts.googleapis.com/css?family=Montserrat");

/* =========================================================
   Click2Reserve – Online Widget (ONE optimized CSS)
   Merge of:
   - /online/<venue>/style.css
   - /online/<venue>/css/widget-theme.css
========================================================= */

/* ---------- Theme tokens (defaults = dark) ---------- */
:root{
  /* Base surfaces */
  --c2r-bg: #121212;
  --c2r-text: #f1f1f1;
  --c2r-surface: #1e1e1e;
  --c2r-surface2: #161616;
  --c2r-border: #333;

  /* Inputs */
  --c2r-input-bg: #0f0f0f;
  --c2r-input-text: #f1f1f1;
  --c2r-input-border: #3a3a3a;

  /* Brand */
  --c2r-accent: #c8a03a;          /* GOLD (PHP can override inline if you want) */
  --c2r-accent-hover: #b88f2f;

  /* Buttons / selection */
  --c2r-selected-bg: var(--c2r-accent);
  --c2r-selected-border: var(--c2r-accent);
  --c2r-selected-text: #111;

  /* Slot/seat normal */
  --c2r-choice-bg: #ffffff;
  --c2r-choice-border: #cbd5e1;
  --c2r-choice-text: #0f172a;

  /* Animated border gradient */
  --c2r-border-gradient: linear-gradient(
    270deg,
    #ffffff,
    #000000,
    #ffffff,
    #000000,
    #000000,
    #ffffff,
    #000000
  );
  --c2r-border-speed: 80s;

  /* Convenience aliases */
  --c2r-gold: var(--c2r-accent);
  --c2r-gold-hover: var(--c2r-accent-hover);
}


/* Light overrides */
.c2r-theme-light{
  --c2r-bg: #ffffff;
  --c2r-text: #0f172a;
  --c2r-surface: #ffffff;
  --c2r-surface2: #f8fafc;
  --c2r-border: #e2e8f0;

  --c2r-input-bg: #ffffff;
  --c2r-input-text: #0f172a;
  --c2r-input-border: #cbd5e1;

  /* Light border gradient looks “premium” (soft + gold) */
  --c2r-border-gradient: linear-gradient(
    270deg,
    #f8fafc,
    #e2e8f0,
    #c8a03a,
    #f8fafc,
    #e2e8f0
  );
}

/* Auto follows OS */
@media (prefers-color-scheme: light){
  .c2r-theme-auto{
    --c2r-bg: #ffffff;
    --c2r-text: #0f172a;
    --c2r-surface: #ffffff;
    --c2r-surface2: #f8fafc;
    --c2r-border: #e2e8f0;

    --c2r-input-bg: #ffffff;
    --c2r-input-text: #0f172a;
    --c2r-input-border: #cbd5e1;

    --c2r-border-gradient: linear-gradient(
      270deg,
      #f8fafc,
      #e2e8f0,
      #c8a03a,
      #f8fafc,
      #e2e8f0
    );
  }
}

/* ---------- Base page (ONLY when theme class exists) ---------- */
html, body{ height:100%; }
html{ width:100%; }

body.c2r-theme-dark,
body.c2r-theme-auto{
  margin:0;
  padding:0;
  background: var(--c2r-bg);
  color: var(--c2r-text);
  font-family: Arial, sans-serif;
}

p{ color: inherit; }
a{ color: inherit; }
a:hover{ color: var(--c2r-accent); text-decoration: none; }

/* Mobile footer spacing fix (kept from your original) */
@media (max-width: 767px){
  #footer{
    margin-left:-20px;
    margin-right:-20px;
    padding-left:20px;
    padding-right:20px;
  }
}

/* ---------- Small utilities ---------- */
.text-sm{ font-size:.875rem; line-height:1.25rem; color:inherit; }
#error, .error{ color:red; font-family:verdana, Helvetica, sans-serif; }
option:disabled{ color:grey; font-style:italic; }
.initiallyHidden{ display:none; }

#contact-form{ height:auto; overflow-y:auto; }

.c2r-disabled{ opacity:.55; pointer-events:none; }
.c2r-hidden{ display:none !important; }

.grecaptcha-badge{
  z-index: 2147483647 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  right: 12px !important;
  bottom: 54px !important;
}

.c2r-recaptcha-disclosure{
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(248,250,252,.46);
  font-size: .68rem;
  line-height: 1.35;
  text-align: center;
}

.c2r-recaptcha-disclosure a{
  color: rgba(245,200,105,.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Step indicator */
.step.finish{ background-color:#04AA6D; }

/* Checkmark animation */
@keyframes popIn{
  0%   { transform:scale(.2); opacity:0; }
  80%  { transform:scale(1.2); opacity:1; }
  100% { transform:scale(1); }
}
.animated-checkmark{ animation: popIn .6s ease-out forwards; transform-origin:center; }

.reservation-code{ font-size:1.3rem; margin-top:20px; padding:10px; display:inline-block; }
.copy-btn{ vertical-align:middle; transition:all .3s ease; }

/* Invalid fields */
input.invalid, select.invalid, textarea.invalid{ border:2px solid red; }

/* ---------- Embed mode ---------- */
.c2r-embed #footer,
.c2r-embed .logoA{ display:none !important; }
.c2r-embed section{ max-width:100% !important; }
.c2r-embed .grecaptcha-badge{
  bottom: 12px !important;
  right: 12px !important;
  transform: scale(.86);
  transform-origin: bottom right;
}

/* ---------- Section card (used in deposit/thankyou) ---------- */
section{
  z-index:999;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  padding:1rem;
  border:1px solid var(--c2r-border);
  border-radius:4px;
  background: var(--c2r-surface2);
  color: var(--c2r-text);
  position:relative;
  top:2px;
  height:auto;
  margin:0 auto;
  text-align:center;
}

/* ---------- Widget shell ---------- */
.reserveWidget{
  z-index:1000;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  padding:1rem;
  border:1px solid var(--c2r-border);
  border-radius:4px;
  position:relative;
  top:2px;
  height:auto;
  margin-left:auto;
  margin-right:auto;
  background: var(--c2r-surface);
  color: var(--c2r-text);
}

/* Keep grid safe: DO NOT style .row globally */
.reserveWidget .row{ color: inherit; }

/* Animated border wrapper */
.block{
  position:relative;
  background: var(--c2r-surface2);
}

/* Animated border around the form */
.block:before,
.block:after{
  content:'';
  position:absolute;
  left:-2px;
  top:-2px;
  background: var(--c2r-border-gradient);
  background-size:400%;
  width:calc(100% + 4px);
  height:calc(100% + 4px);
  z-index:-1;
  animation: steam var(--c2r-border-speed) linear infinite;
}
@keyframes steam{
  0%   { background-position:0 0; }
  50%  { background-position:400% 0; }
  100% { background-position:0 0; }
}
.block:after{ filter: blur(50px); }

/* Country code select */
#country_code{
  color: var(--c2r-input-text);
  background: var(--c2r-input-bg);
}

/* Output (thankyou / summaries) */
.rsvOut{
  color: var(--c2r-choice-text);
  background: var(--c2r-choice-bg);
  font-size:15px;
  padding:10px;
}

/* Before accepting Reservation */
.noActive{
  background-color:#ddd;
  cursor:not-allowed;
}

/* ---------- Inputs / labels ---------- */
.reserveWidget .control-label{
  font-size:18px;
  color: inherit;
}

.reserveWidget input[type="text"]{
  padding:10px;
  margin:0;
  font-size:18px;
  color: var(--c2r-input-text);
  background: var(--c2r-input-bg);
  border:1px solid var(--c2r-input-border);
}

/* Widget-scoped buttons */
.reserveWidget .btn{
  border-radius:5px;
  font-weight:300;
  height:45px;
}

/* input group sizing */
.reserveWidget .input-group > .form-control:not(:first-child),
.reserveWidget .input-group > .custom-select:not(:first-child){
  font-size:18px;
}

/* Alerts */
.reserveWidget .alert{
  width:100%;
  max-width:350px;
  margin-left:auto;
  margin-right:auto;
}

/* ---------- Horizontal scrollable (seats) ---------- */
div.horizontal-scrollable{
  overflow:auto;
  white-space:nowrap;
}
div.horizontal-scrollable a{
  display:inline-block;
  color: inherit;
  text-align:center;
  padding:14px;
  text-decoration:none;
}
div.horizontal-scrollable a:hover{ background-color:#777; }

/* ---------- Wizard tabs ---------- */
.tab{ display:none; }

.step{
  height:15px;
  width:15px;
  margin:0 2px;
  background-color:#bbbbbb;
  border:none;
  border-radius:50%;
  display:inline-block;
  opacity:.5;
}
.step.active{ opacity:1; }

/* ---------- Form fields theme (scoped to widget area only) ---------- */
#contact-page input:not([type="radio"]):not([type="checkbox"]),
#contact-page select,
#contact-page textarea,
#contact-page .form-control,
#contact-page .custom-select,
#contact-page .form-select{
  background: var(--c2r-input-bg) !important;
  color: var(--c2r-input-text) !important;
  border:1px solid var(--c2r-input-border) !important;
}

#contact-page input::placeholder,
#contact-page textarea::placeholder{
  opacity:.7;
  color: var(--c2r-input-text) !important;
}

#contact-page .form-control:focus,
#contact-page select:focus,
#contact-page textarea:focus{
  border-color: var(--c2r-accent) !important;
  box-shadow: 0 0 0 .2rem rgba(0,0,0,.12) !important;
}

.c2r-theme-light #contact-page,
.c2r-theme-light #contact-page *{
  color: inherit;
}

.c2r-theme-light #contact-page .text-danger{ color:#dc2626 !important; }
.c2r-theme-light #contact-page .text-muted{  color:#64748b !important; }

.c2r-theme-light #contact-page,
.c2r-theme-light #contact-form,
.c2r-theme-light #contact-page .reserveWidget,
.c2r-theme-light #contact-page .tab,
.c2r-theme-light #contact-page .block,
.c2r-theme-light section{
  background: var(--c2r-surface) !important;
  color: var(--c2r-text) !important;
}

/* ---------- Cards ---------- */
.c2r-card{
  background: var(--c2r-surface) !important;
  color: var(--c2r-text) !important;
  border: 1px solid var(--c2r-border) !important;
}

/* ---------- Seats / Time slots ---------- */
.input-group-btn input[type="radio"],
.input-group-btnDate input[type="radio"],
.input-group-btnTime input[type="radio"]{
  display:none;
}

.input-group-btn label,
.input-group-btnDate label,
.input-group-btnTime label,
label.c2r-seat,
label.c2r-slot,
.btnDate,
.btnTime{
  background: var(--c2r-choice-bg) !important;
  color: var(--c2r-choice-text) !important;
  height:45px;
  border-radius:5px;
  border:1px solid var(--c2r-choice-border) !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  vertical-align:middle;
  cursor:pointer;
  user-select:none;
}

.input-group-btn label{ width:45px; }
.input-group-btnDate label, .btnDate{ width:120px; }
.input-group-btnTime label{ width:80px; }
.btnTime{ width:120px; }

.input-group-btn label.active,
.input-group-btnDate label.active,
.input-group-btnTime label.active,
label.c2r-seat.active,
label.c2r-slot.active,
label.c2r-slot.is-selected{
  background: var(--c2r-selected-bg) !important;
  border-color: var(--c2r-selected-border) !important;
  color: var(--c2r-selected-text) !important;
}

label.c2r-slot .c2r-time,
label.c2r-seat,
label.c2r-seat *{
  color: inherit !important;
}

label.c2r-disabled,
label.c2r-slot.c2r-disabled{
  opacity:.55;
  pointer-events:none;
}

.c2r-theme-dark  #contact-page label.c2r-seat.btn-outline-secondary{
  color:#fff !important;
  border-color:#555 !important;
  background: transparent !important;
}

.c2r-theme-dark  #contact-page label.c2r-seat.btn-outline-secondary:hover{
  background: rgba(255,255,255,.08) !important;
}

/* Keep selected seats clearly GOLD in dark mode */
.c2r-theme-dark #contact-page .input-group-btn input[type="radio"]:checked + label.c2r-seat.btn-outline-secondary,
.c2r-theme-dark #contact-page label.c2r-seat.btn-outline-secondary.active{
  background: var(--c2r-selected-bg) !important;
  border-color: var(--c2r-selected-border) !important;
  color: var(--c2r-selected-text) !important;
}

@media (prefers-color-scheme: dark){
  .c2r-theme-auto #contact-page label.c2r-seat.btn-outline-secondary{
    color:#fff !important;
    border-color:#555 !important;
    background: transparent !important;
  }

  .c2r-theme-auto #contact-page label.c2r-seat.btn-outline-secondary:hover{
    background: rgba(255,255,255,.08) !important;
  }

  .c2r-theme-auto #contact-page .input-group-btn input[type="radio"]:checked + label.c2r-seat.btn-outline-secondary,
.c2r-theme-auto #contact-page label.c2r-seat.btn-outline-secondary.active{
    background: var(--c2r-selected-bg) !important;
    border-color: var(--c2r-selected-border) !important;
    color: var(--c2r-selected-text) !important;
  }
}

/* Seat-limit badge readability (light mode) */
.c2r-theme-light #contact-page .c2r-badge.c2r-badge-muted{
  background:#fde68a !important; /* soft gold */
  color:#111827 !important;      /* dark readable text */
  border:1px solid #f59e0b !important;
}

@media (prefers-color-scheme: light){
  .c2r-theme-auto #contact-page .c2r-badge.c2r-badge-muted{
    background:#fde68a !important;
    color:#111827 !important;
    border:1px solid #f59e0b !important;
  }
}

/* ---------- Buttons ---------- */
#contact-page .btn-primary,
#btn-submit.btn-primary{
  background: var(--c2r-accent) !important;
  border-color: var(--c2r-accent) !important;
  color: #111 !important;
  font-weight: 800;
}

#contact-page .btn-primary:hover,
#btn-submit.btn-primary:hover{
  background: var(--c2r-accent-hover) !important;
  border-color: var(--c2r-accent-hover) !important;
  color:#111 !important;
}

#contact-page .btn-primary:focus,
#btn-submit.btn-primary:focus{
  box-shadow: 0 0 0 .2rem rgba(200,160,58,.25) !important;
}

/* Next button class you already use */
.reserveWidget .btn.btn-c2r-gold,
.btn.btn-c2r-gold{
  background-color: var(--c2r-gold) !important;
  border-color: var(--c2r-gold) !important;
  color:#111 !important;
  font-weight:800;
}
.reserveWidget .btn.btn-c2r-gold:hover,
.btn.btn-c2r-gold:hover,
.reserveWidget .btn.btn-c2r-gold:focus,
.btn.btn-c2r-gold:focus{
  background-color: var(--c2r-gold-hover) !important;
  border-color: var(--c2r-gold-hover) !important;
  color:#111 !important;
}
.reserveWidget .btn.btn-c2r-gold:disabled,
.btn.btn-c2r-gold:disabled{
  background-color:#e7d3a5 !important;
  border-color:#e7d3a5 !important;
  color:#444 !important;
  opacity:.95;
  cursor:not-allowed;
}

/* ---------- Deposit note (Step 1 + Step 2) ---------- */
.c2r-deposit-box{
  margin-top: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--c2r-border);
  background: var(--c2r-surface2);
  color: var(--c2r-text);
}

.c2r-deposit-box .c2r-deposit-title{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-weight:800;
}

.c2r-deposit-box .c2r-deposit-muted{
  opacity:.8;
}

/* Optional: make it pop a bit in light mode */
.c2r-theme-light .c2r-deposit-box{
  background: var(--c2r-surface2);
  border-color: var(--c2r-border);
}

/* =========================================================
   Mitsaras premium booking restyle
========================================================= */
body.c2r-theme-dark,
body.c2r-theme-auto{
  --c2r-bg: #07090a;
  --c2r-text: #f7f1e7;
  --c2r-surface: #121415;
  --c2r-surface2: #17191a;
  --c2r-border: rgba(229, 197, 126, .18);
  --c2r-input-bg: rgba(255,255,255,.035);
  --c2r-input-text: #f8fafc;
  --c2r-input-border: rgba(255,255,255,.18);
  --c2r-choice-bg: rgba(255,255,255,.055);
  --c2r-choice-border: rgba(255,255,255,.16);
  --c2r-choice-text: #f8fafc;
  --c2r-accent: #e3ad37;
  --c2r-accent-hover: #f1c86d;
  --c2r-selected-bg: linear-gradient(180deg, #f4cc71 0%, #d69724 100%);
  --c2r-selected-border: #f4c762;
  --c2r-selected-text: #17120a;
  background:
    radial-gradient(circle at 50% -10%, rgba(227,173,55,.16), transparent 36%),
    radial-gradient(circle at 14% 20%, rgba(255,255,255,.055), transparent 28%),
    linear-gradient(180deg, #080b0d 0%, #050607 100%) !important;
  color: var(--c2r-text);
  font-family: Inter, Montserrat, Arial, sans-serif !important;
}

.c2r-booking-page{
  max-width: 980px;
  padding-top: 28px;
  padding-bottom: 34px;
}

.c2r-booking-top{
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 156px;
  gap: 18px;
  align-items: center;
  margin: 0 auto 16px;
}

.c2r-brand-mark{
  display: inline-flex;
  align-items: center;
}

.c2r-brand-mark img{
  width: 176px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

.c2r-venue-title{
  text-align: center;
}

.c2r-venue-title h1{
  margin: 0;
  color: #f7d58b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
}

.c2r-venue-title p{
  margin: 8px 0 0;
  color: rgba(248,250,252,.72);
  font-size: .95rem;
}

.c2r-lang-wrap{
  justify-self: end;
}

.c2r-lang-wrap .custom-select{
  min-width: 136px;
  width: auto;
  height: 38px;
  border-radius: 7px !important;
}

#contact-page .reserveWidget{
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(12,14,15,.92);
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}

#contact-page .block{
  border-radius: 8px;
  padding: 18px 20px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
    #111314;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

#contact-page .block:before,
#contact-page .block:after{
  display: none;
}

#add-form.container{
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.c2r-progress{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 4px 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.c2r-progress:before{
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,173,55,.66), rgba(255,255,255,.14), transparent);
}

.c2r-progress-item{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: rgba(248,250,252,.58);
  font-size: .72rem;
}

.c2r-progress-item span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: #202224;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,0,0,.32);
}

.c2r-progress-item b{
  display: block;
  min-height: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.c2r-progress-item.is-active,
.c2r-progress-item.is-complete{
  color: #f5c869;
}

.c2r-progress-item.is-active span,
.c2r-progress-item.is-complete span{
  background: linear-gradient(180deg, #f7d47b, #d99a27);
  border-color: #f6cf73;
  color: #17120a;
}

.c2r-progress-item.is-complete span:before{
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.c2r-progress-item.is-complete span{
  font-size: 0;
}

.c2r-progress-item.is-complete span:before{
  font-size: .82rem;
}

.c2r-tab-heading{
  max-width: 560px;
  margin: 8px auto 18px;
  text-align: center;
}

.c2r-tab-heading-left{
  margin-left: 0;
  text-align: left;
}

.c2r-tab-heading h2{
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
}

.c2r-tab-heading p{
  margin: 7px 0 0;
  color: rgba(248,250,252,.64);
  font-size: .9rem;
}

#contact-page .control-label,
#contact-page .form-label{
  margin-bottom: 8px;
  color: rgba(248,250,252,.78);
  font-size: .82rem;
  font-weight: 700;
}

.c2r-field-icon{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c2r-field-icon:before{
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: rgba(248,250,252,.72);
}

.c2r-field-date:before{ content: "\f133"; }
.c2r-field-guests:before{ content: "\f0c0"; font-weight: 900; }
.c2r-field-time:before{ content: "\f017"; }

#contact-page .c2r-field-guests{
  margin-top: 12px;
}

#contact-page .ButtonDatePicker{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-12px) scale(.985);
  pointer-events: none;
  transform-origin: top center;
  transition:
    max-height .58s cubic-bezier(.22,1,.36,1),
    opacity .28s ease,
    transform .5s cubic-bezier(.22,1,.36,1);
  will-change: max-height, opacity, transform;
}

#contact-page .ButtonDatePicker.c2r-times-visible{
  max-height: 360px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#contact-page .ButtonDatePicker label.c2r-slot,
#contact-page .ButtonDatePicker .btnDate,
#contact-page .ButtonDatePicker .btnTime{
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition:
    opacity .32s ease,
    transform .42s cubic-bezier(.22,1,.36,1),
    border-color .2s ease,
    background .2s ease,
    color .2s ease;
}

#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot,
#contact-page .ButtonDatePicker.c2r-times-visible .btnDate,
#contact-page .ButtonDatePicker.c2r-times-visible .btnTime{
  opacity: 1;
  transform: translateY(0) scale(1);
}

#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(1){ transition-delay: .03s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(2){ transition-delay: .05s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(3){ transition-delay: .07s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(4){ transition-delay: .09s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(5){ transition-delay: .11s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(6){ transition-delay: .13s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(7){ transition-delay: .15s; }
#contact-page .ButtonDatePicker.c2r-times-visible label.c2r-slot:nth-child(8){ transition-delay: .17s; }

@media (prefers-reduced-motion: reduce){
  #contact-page .ButtonDatePicker,
  #contact-page .ButtonDatePicker label.c2r-slot,
  #contact-page .ButtonDatePicker .btnDate,
  #contact-page .ButtonDatePicker .btnTime{
    transition: none;
    transform: none;
  }
}

#add_r_date{
  min-width: 230px;
  max-width: 300px;
  background-color: rgba(255,255,255,.04) !important;
  border-color: rgba(227,173,55,.32) !important;
  color: #f8fafc !important;
  outline: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}

#add_r_date:hover{
  border-color: rgba(227,173,55,.52) !important;
}

#add_r_date:focus,
#add_r_date:focus-visible,
#add_r_date:active{
  border-color: rgba(244,199,98,.78) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 2px rgba(227,173,55,.14), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

#contact-page input:not([type="radio"]):not([type="checkbox"]),
#contact-page select,
#contact-page textarea,
#contact-page .form-control,
#contact-page .custom-select,
#contact-page .form-select{
  min-height: 44px;
  border-radius: 7px !important;
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.17) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

#contact-page select option,
#contact-page select optgroup,
#c2r_lang_select option,
#add_r_date option{
  background: #111314 !important;
  color: #f8fafc !important;
}

#contact-page select option:checked,
#add_r_date option:checked{
  background: #e3ad37 !important;
  color: #17120a !important;
}

#contact-page select::-ms-expand{
  background: transparent;
  border: 0;
}

#contact-page #country_code{
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: none !important;
  padding-right: 34px;
  white-space: nowrap;
}

#contact-page .form-control:focus,
#contact-page select:focus,
#contact-page textarea:focus{
  border-color: rgba(244,199,98,.75) !important;
  box-shadow: 0 0 0 .18rem rgba(227,173,55,.16), 0 0 24px rgba(227,173,55,.12) !important;
}

div.horizontal-scrollable{
  padding-bottom: 5px;
  scrollbar-color: rgba(227,173,55,.55) rgba(255,255,255,.06);
}

.input-group-btn,
.input-group-btnDate,
.timeSlots{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.input-group-btn label,
.input-group-btnDate label,
.input-group-btnTime label,
label.c2r-seat,
label.c2r-slot,
.btnDate,
.btnTime{
  min-width: 44px;
  height: 42px;
  border-radius: 6px;
  margin: 0 !important;
  background: rgba(255,255,255,.045) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(248,250,252,.86) !important;
  font-weight: 600;
}

.input-group-btnDate label,
.btnDate,
.btnTime{
  width: 96px;
}

.input-group-btn label:hover,
.input-group-btnDate label:hover,
label.c2r-slot:hover{
  border-color: rgba(244,199,98,.55) !important;
  color: #fff !important;
}

.input-group-btn label.active,
.input-group-btnDate label.active,
.input-group-btnTime label.active,
label.c2r-seat.active,
label.c2r-slot.active,
label.c2r-slot.is-selected{
  background: linear-gradient(180deg, #f7d47b, #d99a27) !important;
  border-color: #f6cf73 !important;
  color: #17120a !important;
  box-shadow: 0 0 0 1px rgba(246,207,115,.28), 0 0 18px rgba(227,173,55,.28);
}

.c2r-details-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
}

.c2r-booking-summary{
  position: sticky;
  top: 18px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(244,199,98,.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    rgba(24,23,20,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 38px rgba(0,0,0,.24);
}

.c2r-booking-summary h3{
  margin: 0 0 15px;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 800;
}

.c2r-summary-line{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: rgba(248,250,252,.82);
  font-size: .88rem;
}

.c2r-summary-line i,
.c2r-summary-venue i,
.c2r-trust-note i{
  color: #f0bd53;
  width: 18px;
  text-align: center;
}

.c2r-summary-venue{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,199,98,.42);
}

.c2r-summary-venue strong{
  color: #f8fafc;
  font-size: .86rem;
}

.c2r-summary-venue small{
  grid-column: 2;
  color: rgba(248,250,252,.56);
  line-height: 1.35;
}

.c2r-trust-note{
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #f5c869;
  font-size: .78rem;
  line-height: 1.35;
}

.c2r-card,
.c2r-final-card{
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    #151718 !important;
  border-color: rgba(244,199,98,.24) !important;
}

.reserveWidget .btn.btn-c2r-gold,
.btn.btn-c2r-gold,
.c2r-final-cta{
  min-height: 48px;
  border-radius: 6px !important;
  background: linear-gradient(180deg, #f7d47b, #d99a27) !important;
  border-color: #efbd56 !important;
  color: #17120a !important;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(217,154,39,.22);
}

.reserveWidget .btn.btn-c2r-gold:hover,
.btn.btn-c2r-gold:hover,
.c2r-final-cta:hover{
  background: linear-gradient(180deg, #ffe09a, #e3a332) !important;
  color: #17120a !important;
}

.reserveWidget .btn.btn-c2r-gold:disabled,
.btn.btn-c2r-gold:disabled{
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: rgba(248,250,252,.45) !important;
  box-shadow: none;
}

#prevBtn{
  min-width: 130px;
  border-radius: 6px !important;
  border-color: rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.035) !important;
  color: #f8fafc !important;
}

#nextBtn{
  flex: 1 1 auto;
}

.c2r-powered{
  color: rgba(248,250,252,.52);
  font-size: .78rem;
}

.c2r-powered a{
  opacity: .7;
  background: transparent !important;
  box-shadow: none !important;
}

.c2r-more-guests{
  display: none;
}

#contact_results .alert{
  margin-top: 16px;
  border-radius: 8px;
}

#contact-page .step{
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
}

#contact-page .c2r-legacy-steps{
  display: none;
}

body.c2r-theme-light{
  --c2r-bg: #f6f2ea;
  --c2r-text: #18202a;
  --c2r-surface: #ffffff;
  --c2r-surface2: #fbfaf7;
  --c2r-border: rgba(148, 127, 84, .24);
  --c2r-input-bg: #ffffff;
  --c2r-input-text: #17202b;
  --c2r-input-border: #d7dce3;
  --c2r-choice-bg: #ffffff;
  --c2r-choice-border: #d7dce3;
  --c2r-choice-text: #17202b;
  --c2r-accent: #c69424;
  --c2r-accent-hover: #a97816;
  --c2r-selected-bg: linear-gradient(180deg, #f5cd73 0%, #d79a2c 100%);
  --c2r-selected-border: #d7a03a;
  --c2r-selected-text: #17120a;
  background:
    radial-gradient(circle at 50% -10%, rgba(198,148,36,.13), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f5f2ea 100%) !important;
  color: var(--c2r-text);
}

body.c2r-theme-light .c2r-venue-title h1{ color:#9a6b12; }
body.c2r-theme-light .c2r-venue-title p{ color:#667085; }
body.c2r-theme-light .c2r-brand-mark img{ filter: drop-shadow(0 10px 22px rgba(24,32,42,.12)); }

body.c2r-theme-light #contact-page .reserveWidget{
  border-color: rgba(148,127,84,.22);
  background:#ffffff;
  box-shadow: 0 24px 70px rgba(24,32,42,.12);
}

body.c2r-theme-light #contact-page .block{
  background:#ffffff;
  border-color: rgba(148,127,84,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

body.c2r-theme-light .c2r-progress{
  border-bottom-color: rgba(148,127,84,.18);
}

body.c2r-theme-light .c2r-progress:before{
  background: linear-gradient(90deg, transparent, rgba(198,148,36,.48), rgba(148,163,184,.28), transparent);
}

body.c2r-theme-light .c2r-progress-item{
  color:#6b7280;
}

body.c2r-theme-light .c2r-progress-item span{
  background:#f8fafc;
  border-color:#d7dce3;
  color:#475569;
  box-shadow:0 8px 18px rgba(24,32,42,.08);
}

body.c2r-theme-light .c2r-tab-heading h2,
body.c2r-theme-light .c2r-booking-summary h3,
body.c2r-theme-light .c2r-summary-venue strong{
  color:#17202b;
}

body.c2r-theme-light .c2r-tab-heading p,
body.c2r-theme-light #contact-page .control-label,
body.c2r-theme-light #contact-page .form-label,
body.c2r-theme-light .c2r-field-icon:before,
body.c2r-theme-light .c2r-summary-line,
body.c2r-theme-light .c2r-summary-venue small,
body.c2r-theme-light .c2r-powered,
body.c2r-theme-light .c2r-recaptcha-disclosure{
  color:#64748b;
}

body.c2r-theme-light .c2r-recaptcha-disclosure a{
  color:#8a5a08;
}

body.c2r-theme-light #add_r_date,
body.c2r-theme-light #contact-page input:not([type="radio"]):not([type="checkbox"]),
body.c2r-theme-light #contact-page select,
body.c2r-theme-light #contact-page textarea,
body.c2r-theme-light #contact-page .form-control,
body.c2r-theme-light #contact-page .custom-select,
body.c2r-theme-light #contact-page .form-select{
  background:#ffffff !important;
  border-color:#d7dce3 !important;
  color:#17202b !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
}

body.c2r-theme-light #contact-page select option,
body.c2r-theme-light #contact-page select optgroup,
body.c2r-theme-light #c2r_lang_select option,
body.c2r-theme-light #add_r_date option{
  background:#ffffff !important;
  color:#17202b !important;
}

body.c2r-theme-light .input-group-btn label,
body.c2r-theme-light .input-group-btnDate label,
body.c2r-theme-light .input-group-btnTime label,
body.c2r-theme-light label.c2r-seat,
body.c2r-theme-light label.c2r-slot,
body.c2r-theme-light .btnDate,
body.c2r-theme-light .btnTime{
  background:#ffffff !important;
  border-color:#d7dce3 !important;
  color:#17202b !important;
}

body.c2r-theme-light .input-group-btn label:hover,
body.c2r-theme-light .input-group-btnDate label:hover,
body.c2r-theme-light label.c2r-slot:hover{
  border-color: rgba(198,148,36,.58) !important;
  color:#111827 !important;
}

body.c2r-theme-light #contact-page .input-group-btn input[type="radio"]:checked + label,
body.c2r-theme-light #contact-page .input-group-btnDate input[type="radio"]:checked + label,
body.c2r-theme-light #contact-page .input-group-btnTime input[type="radio"]:checked + label,
body.c2r-theme-light #contact-page .input-group-btn label.active,
body.c2r-theme-light #contact-page .input-group-btnDate label.active,
body.c2r-theme-light #contact-page .input-group-btnTime label.active,
body.c2r-theme-light #contact-page label.c2r-seat.active,
body.c2r-theme-light #contact-page label.c2r-slot.active,
body.c2r-theme-light #contact-page label.c2r-slot.is-selected{
  background: linear-gradient(180deg, #f8ca61 0%, #c98210 100%) !important;
  border-color: #9a5f05 !important;
  color: #111827 !important;
  font-weight: 900;
  box-shadow: 0 0 0 2px rgba(154,95,5,.28), 0 10px 22px rgba(154,95,5,.22) !important;
}

body.c2r-theme-light #contact-page label.c2r-seat.active *,
body.c2r-theme-light #contact-page label.c2r-slot.active *,
body.c2r-theme-light #contact-page label.c2r-slot.is-selected *,
body.c2r-theme-light #contact-page .input-group-btn input[type="radio"]:checked + label *,
body.c2r-theme-light #contact-page .input-group-btnDate input[type="radio"]:checked + label *,
body.c2r-theme-light #contact-page .input-group-btnTime input[type="radio"]:checked + label *{
  color: #111827 !important;
}

body.c2r-theme-light #contact-page .c2r-progress-item.is-active,
body.c2r-theme-light #contact-page .c2r-progress-item.is-complete{
  color: #7a4c04;
}

body.c2r-theme-light #contact-page .c2r-progress-item.is-active span,
body.c2r-theme-light #contact-page .c2r-progress-item.is-complete span{
  background: linear-gradient(180deg, #f8ca61, #c98210);
  border-color: #9a5f05;
  color: #111827;
  box-shadow: 0 0 0 2px rgba(154,95,5,.18), 0 10px 22px rgba(154,95,5,.18);
}

body.c2r-theme-light .c2r-booking-summary,
body.c2r-theme-light .c2r-card,
body.c2r-theme-light .c2r-final-card{
  background:#ffffff !important;
  border-color: rgba(198,148,36,.28) !important;
  box-shadow:0 18px 38px rgba(24,32,42,.1) !important;
}

body.c2r-theme-light .c2r-summary-venue,
body.c2r-theme-light .c2r-trust-note{
  border-top-color: rgba(198,148,36,.24);
}

body.c2r-theme-light #prevBtn{
  background:#ffffff !important;
  border-color:#d7dce3 !important;
  color:#17202b !important;
}

body.c2r-theme-light .reserveWidget .btn.btn-c2r-gold:disabled,
body.c2r-theme-light .btn.btn-c2r-gold:disabled{
  background:#eef1f5 !important;
  border-color:#d7dce3 !important;
  color:#94a3b8 !important;
}

/* =========================================================
   Mitsaras premium confirmation page
========================================================= */
.c2r-confirm-page{
  min-height: 100vh;
  padding: 32px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f8fafc;
}

.c2r-confirm-card{
  width: min(100%, 720px);
  padding: 18px 38px 22px;
  border: 1px solid rgba(227,173,55,.62);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(227,173,55,.13), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
    rgba(12,14,16,.94);
  box-shadow: 0 30px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08);
}

.c2r-confirm-brand{
  display: flex;
  justify-content: center;
  padding: 0 0 16px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.c2r-confirm-brand img{
  width: 190px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

.c2r-confirm-hero{
  padding: 20px 0 12px;
  text-align: center;
}

.c2r-confirm-icon{
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.7);
  box-shadow: 0 0 26px rgba(34,197,94,.32);
}

.c2r-confirm-pending .c2r-confirm-icon{
  background: rgba(227,173,55,.12);
  border-color: rgba(227,173,55,.75);
  box-shadow: 0 0 26px rgba(227,173,55,.28);
}

.c2r-confirm-declined .c2r-confirm-icon{
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.75);
  box-shadow: 0 0 26px rgba(239,68,68,.28);
}

.c2r-confirm-icon i{
  font-size: 32px;
  color: #37d43a;
}

.c2r-confirm-pending .c2r-confirm-icon i{ color: #f5c869; }
.c2r-confirm-declined .c2r-confirm-icon i{ color: #f87171; }

.c2r-confirm-hero h1{
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.c2r-confirm-hero p{
  max-width: 520px;
  margin: 10px auto 0;
  color: rgba(248,250,252,.78);
  font-size: 1rem;
  line-height: 1.45;
}

.c2r-confirm-quick{
  display: grid;
  grid-template-columns: 1.35fr .85fr .9fr;
  gap: 0;
  margin: 2px 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}

.c2r-confirm-quick div{
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: #f8fafc;
  font-weight: 700;
}

.c2r-confirm-quick div:last-child{
  border-right: 0;
}

.c2r-confirm-quick i,
.c2r-confirm-panel h2 i{
  color: #f0bd53;
}

.c2r-confirm-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c2r-confirm-panel{
  position: static;
  top: auto;
  z-index: auto;
  margin: 0;
  padding: 16px 18px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.018)),
    rgba(19,22,24,.86);
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.c2r-confirm-panel h2{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #f5c869;
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.c2r-confirm-panel dl{
  display: grid;
  grid-template-columns: 72px minmax(0,1fr);
  gap: 8px 12px;
  margin: 0;
}

.c2r-confirm-panel dt{
  color: rgba(248,250,252,.66);
  font-size: .86rem;
}

.c2r-confirm-panel dd{
  margin: 0;
  color: #fff;
  font-size: .92rem;
  overflow-wrap: anywhere;
}

.c2r-code-panel{
  text-align: center;
}

.c2r-code-panel h2{
  justify-content: flex-start;
}

.c2r-confirm-code{
  margin: 8px auto 10px;
  padding: 14px 18px;
  border: 1px solid rgba(55,212,58,.72);
  border-radius: 12px;
  background: rgba(34,197,94,.07);
  color: #48df42;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.c2r-copy-code,
.c2r-inline-actions .btn,
.c2r-confirm-actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 7px !important;
  border: 1px solid rgba(227,173,55,.38) !important;
  background: rgba(255,255,255,.035) !important;
  color: #f8fafc !important;
  font-weight: 800;
}

.c2r-copy-code:hover,
.c2r-inline-actions .btn:hover,
.c2r-confirm-actions .btn:hover{
  border-color: rgba(244,199,98,.72) !important;
  color: #f5c869 !important;
}

.c2r-deposit-confirm{
  margin-top: 12px;
}

.c2r-deposit-confirm strong{
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.35rem;
}

.c2r-deposit-confirm p{
  margin: 8px 0 0;
  color: rgba(248,250,252,.72);
}

.c2r-qr-panel{
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 22px;
  align-items: center;
  margin-top: 12px;
}

.c2r-qr-target{
  width: 132px;
  height: 132px;
  min-height: 132px;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c2r-qr-target img,
.c2r-qr-target canvas{
  max-width: 116px;
  max-height: 116px;
}

.c2r-qr-panel p{
  margin: 0 0 12px;
  color: rgba(248,250,252,.76);
  line-height: 1.45;
}

.c2r-inline-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c2r-next-panel{
  margin-top: 12px;
}

.c2r-next-panel ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.c2r-next-panel li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(248,250,252,.82);
  line-height: 1.35;
}

.c2r-next-panel li i{
  color: #37d43a;
  margin-top: 3px;
}

.c2r-confirm-actions{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.c2r-confirm-actions .c2r-action-primary{
  background: linear-gradient(180deg, #f7d47b, #d99a27) !important;
  border-color: #efbd56 !important;
  color: #17120a !important;
}

.c2r-confirm-help{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: rgba(248,250,252,.74);
}

.c2r-confirm-help i{
  color: #f0bd53;
  margin-right: 8px;
}

.c2r-confirm-page #footer{
  width: min(100%, 720px);
  margin-top: 16px;
  color: rgba(248,250,252,.54);
  text-align: center;
}

@media (max-width: 720px){
  .c2r-confirm-card{
    padding: 16px;
  }

  .c2r-confirm-quick,
  .c2r-confirm-grid,
  .c2r-qr-panel,
  .c2r-confirm-actions{
    grid-template-columns: 1fr;
  }

  .c2r-confirm-quick div{
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .c2r-confirm-quick div:last-child{
    border-bottom: 0;
  }

  .c2r-qr-panel{
    justify-items: center;
    text-align: center;
  }

  .c2r-qr-panel h2{
    justify-content: center;
  }

  .c2r-inline-actions{
    justify-content: center;
  }
}

@media (max-width: 900px){
  .c2r-booking-page{
    padding: 14px 12px 24px;
  }

  .c2r-booking-top{
    grid-template-columns: 1fr auto;
  }

  .c2r-brand-mark{
    grid-column: 1 / -1;
    justify-content: center;
  }

  .c2r-venue-title{
    text-align: left;
  }

  .c2r-details-layout{
    grid-template-columns: 1fr;
  }

  .c2r-booking-summary{
    position: static;
  }
}

@media (max-width: 640px){
  body.c2r-mobile-form-active{
    padding-bottom: 86px;
  }

  .c2r-booking-top{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .c2r-brand-mark img{
    width: 118px;
  }

  .c2r-venue-title{
    text-align: center;
  }

  .c2r-venue-title h1{
    font-size: 1.72rem;
  }

  .c2r-venue-title p{
    display: none;
  }

  .c2r-lang-wrap{
    justify-self: center;
  }

  #contact-page.reserveWidget,
  #contact-page .reserveWidget{
    padding: 8px;
  }

  #contact-page .block{
    padding: 10px 12px 12px;
  }

  .c2r-progress{
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .c2r-progress:before{
    left: 8%;
    right: 8%;
  }

  .c2r-progress-item b{
    display: none;
  }

  .c2r-progress-item span{
    width: 28px;
    height: 28px;
  }

  .c2r-tab-heading{
    margin: 4px auto 12px;
  }

  .c2r-tab-heading h2{
    font-size: 1.25rem;
  }

  .c2r-tab-heading p{
    display: none;
  }

  #contact-page .control-label,
  #contact-page .form-label{
    margin-bottom: 5px;
  }

  #add_r_date{
    width: 100% !important;
    max-width: none;
  }

  .input-group-btn{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    overflow: visible !important;
    white-space: normal !important;
  }

  .input-group-btn label.c2r-seat{
    width: 100%;
    min-width: 0;
    height: 38px;
  }

  #add-form:not(.c2r-guests-expanded) .c2r-seat-extra{
    display: none !important;
  }

  .c2r-more-guests{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 9px;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(227,173,55,.38);
    background: rgba(255,255,255,.035);
    color: #f5c869;
    font-weight: 800;
  }

  #contact-page .ButtonDatePicker.c2r-times-visible{
    max-height: 460px;
  }

  .input-group-btnDate label,
  .btnDate,
  .btnTime{
    width: calc(50% - 4px);
  }

  .c2r-powered{
    margin-top: 14px !important;
    transform: scale(.82);
    transform-origin: top center;
  }

  .c2r-powered a{
    margin-top: 2px !important;
    padding: 0 !important;
  }

  .c2r-powered img{
    width: 110px;
  }

  .c2r-nav-actions{
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin: 12px -12px -12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(17,19,20,.35), rgba(8,10,11,.98) 35%);
    border-top: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(10px);
  }

  .grecaptcha-badge{
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .c2r-embed .grecaptcha-badge{
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .c2r-recaptcha-disclosure{
    margin: 10px 8px 8px;
    font-size: .62rem;
    color: rgba(248,250,252,.38);
  }

  .c2r-nav-actions br{
    display: none;
  }

  #prevBtn{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }

  #nextBtn{
    flex: 0 0 100%;
    max-width: 100%;
  }
}
