/* =========================
   GLOBAL – COOKIE BANNER
   ========================= */
.cookie-banner{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 10000;
  box-sizing: border-box;
}

.cookie-banner[hidden]{
  display: none !important;
}

.cookie-box{
  width: 100%;
  max-width: 420px;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  animation: cookieFadeIn 0.28s ease;
  box-sizing: border-box;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

@keyframes cookieFadeIn{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

.cookie-heading{
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cookie-text{
  margin: 0 0 18px 0;
  color: #444;
  line-height: 1.5;
  font-size: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cookie-options{
  display: grid;
  gap: 14px;
  margin: 12px 0 20px 0;
}

.cookie-option{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #222;
}

.cookie-option input[type="checkbox"]{
  margin-top: 3px;
  transform: scale(1.15);
  cursor: pointer;
}

.cookie-option-title{
  font-weight: 800;
}

.cookie-buttons{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cookie-btn{
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.2s ease, opacity 0.2s ease;
  box-sizing: border-box;
}

.cookie-btn.primary{ background: var(--brand); color: #111; }
.cookie-btn.secondary{ background: #f1f1f1; color: #111; }

.cookie-btn:hover{ transform: translateY(-1px); }
.cookie-btn.primary:hover{ background: var(--brand-hover); }
.cookie-btn.secondary:hover{ background: #e2e2e2; }

.cookie-hint{
  margin-top: 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cookie-hint a{
  color: #2E6F57;
  text-decoration: underline;
}

.cookie-hint a:hover{ opacity: 0.85; }

/* =========================
   SUCCESS POPUP
   ========================= */
.success-popup{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 9999;
  box-sizing: border-box;
}

.success-popup-box{
  width: calc(100vw - 24px);
  max-width: 380px;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  background: #fff;
  padding: 18px 14px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  animation: popupFade .25s ease;
  box-sizing: border-box;
  margin: 0 auto;
}

.success-icon{
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

.success-popup-box h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.success-popup-box p{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.booking-id{
  margin: 10px 0 0;
  font-size: 14px;
  color: #444;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.success-btn{
  display: block;
  width: 100%;
  margin: 18px 0 0;
  background: #ffcc00;
  border: none;
  padding: 13px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-sizing: border-box;
}

.success-btn:hover{
  background: #f0c200;
}

@keyframes popupFade{
  from{
    opacity: 0;
    transform: scale(.92);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 601px){
  .cookie-box{
    max-width: 820px;
    padding: 28px;
  }

  .cookie-buttons{
    display: flex;
    flex-wrap: wrap;
  }

  .cookie-btn{
    width: auto;
    font-size: 14px;
    padding: 11px 16px;
  }

  .cookie-heading{
    font-size: 20px;
  }

  .cookie-text{
    font-size: 15px;
    line-height: 1.6;
  }

  .success-popup-box{
    max-width: 420px;
    padding: 28px 22px;
  }

  .success-icon{
    width: 72px;
    height: 72px;
    font-size: 36px;
    margin-bottom: 16px;
  }

  .success-popup-box h3{
    font-size: 22px;
  }

  .success-popup-box p{
    font-size: 15px;
    line-height: 1.55;
  }

  .booking-id{
    font-size: 15px;
    margin-top: 12px;
  }

  .success-btn{
    margin-top: 20px;
    padding: 14px 18px;
    font-size: 16px;
  }
}

@media (max-width: 600px){
  .cookie-box{
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 16px 12px;
    border-radius: 14px;
  }

  .cookie-heading{
    font-size: 17px;
    line-height: 1.25;
  }

  .cookie-text{
    font-size: 14px;
    line-height: 1.45;
  }

  .cookie-buttons{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-btn{
    width: 100%;
  }

  .success-popup-box{
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 16px 12px;
    border-radius: 14px;
  }

  .success-popup-box h3{
    font-size: 17px;
    line-height: 1.25;
  }

  .success-popup-box p,
  .booking-id{
    font-size: 14px;
    line-height: 1.45;
  }
}
.contact-hours-disclosure,
.booking-hours-disclosure {
  width: 100%;
  margin-top: 10px;
  color: inherit;
}

.contact-hours-disclosure summary,
.booking-hours-disclosure summary {
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
}

.contact-hours-content {
  display: grid;
  gap: 4px;
  margin-top: 9px;
  line-height: 1.45;
}

.contact-hours-content small {
  display: block;
  margin-top: 4px;
  font-size: .8rem;
  line-height: 1.5;
  opacity: .86;
}

.booking-hours-disclosure {
  box-sizing: border-box;
  margin: 14px 0 4px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 29, 52, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  color: #071d34;
}

.legal-hours-disclosure {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}
