@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap');

.wpbk-package-booking, .wpbk-package-booking * {
    font-family: 'Outfit', Arial, sans-serif !important;
}

.wpbk-package-booking {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 20px 20px 25px 20px;
    margin: 0px 0px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.wpbk-heading {
    background: #222;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
    padding: 18px 0;
    text-align: center;
    letter-spacing: 1px;
}

.wpbk-packages {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.wpbk-package-option label {
    margin-left: 5px;
    font-weight: 500;
}

.wpbk-qtys {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 0 8px;
}

.wpbk-qty-input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 4px;
}

.wpbk-qtys div {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.wpbk-qtys label {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
    margin-top: 8px;
}

.wpbk-qty-btn {
    background: #fff;
    border: 1.5px solid #2196f3;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2196f3;
    cursor: pointer;
    margin: 0;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpbk-qty-btn:hover {
    background: #e3f2fd;
    color: #0d47a1;
}

.wpbk-qty-input-group {
    display: flex;
    flex-direction: row !important;
    gap: 1px !important;
}

.wpbk-qty-input-group button {
    border: 1px solid #ff8800;
    color: #ff8800;
}

.wpbk-qty-input-group button:hover {
    background-color: #ff8800 !important;
    color: #fff !important;
}

.wpbk-qty-input-group input[type="number"] {
    height: 32px;
    text-align: center;
    font-size: 1rem;
    border: 1.5px solid #bdbdbd;
    border-radius: 6px;
    margin: 0 1px;
    background: #fff;
}

.wpbk-date {
    display: flex;
    justify-content: center;
    margin: 18px 0 18px 0;
}

#wpbk_date {
    background: #ff8800;
    color: #fff !important;
    border: none;
    border-radius: 7px;
    font-size: .9rem;
    font-weight: 600;
    padding: 12px 12px;
    cursor: pointer;
    width: auto;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(255,136,0,0.08);
    transition: background 0.2s;
}
#wpbk_date:focus, #wpbk_date:hover {
    background: #ff9900;
}

#wpbk_date::placeholder {
    color: #fff !important;
    opacity: 1;
}

.wpbk-summary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1976d2;
    text-align: center;
    margin-bottom: 18px;
}

#wpbk_book_now {
    background: #1976d2;
    color: #fff;
    padding: 13px 0;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 90%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(25,118,210,0.08);
    transition: background 0.2s;
}
#wpbk_book_now:hover {
    background: #0d47a1;
}

/* Improved center alignment and equal width for date and time fields */
.wpbk-date-time-row {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
  justify-content: center;
  align-items: center;
}
.wpbk-date-time-row > .wpbk-date,
.wpbk-date-time-row > .wpbk-time {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: normal;
}
.wpbk-date-time-row input[type="text"],
.wpbk-date-time-row input[type="time"] {
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 600px) {
  .wpbk-date-time-row {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .wpbk-date-time-row > .wpbk-date,
  .wpbk-date-time-row > .wpbk-time {
    align-items: stretch;
  }
  .wpbk-date-time-row input[type="text"],
  .wpbk-date-time-row input[type="time"] {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
    .wpbk-package-booking {
        padding: 10px 5px 10px 5px;
    }
    .wpbk-heading {
        font-size: 1.1rem;
        padding: 12px 0;
    }
    .wpbk-qtys {
        flex-direction: row !important;
        gap: 2px;
        padding: 0 1px;
    }
    .wpbk-qtys div {
        min-width: 0;
        flex: 1 1 0;
        padding: 0;
    }
    .wpbk-qty-input-group {
        gap: 1px !important;
        width: 100%;
        justify-content: stretch;
    }
    .wpbk-qty-input-group button {
        border: 1px solid #ff8800;
        color: #ff8800;
    }
    .wpbk-qty-input-group input[type="number"] {
        flex: 1 1 0;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        font-size: 0.9rem;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    .wpbk-qty-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 1rem;
        padding: 0;
        flex: 0 0 24px;
    }
    .wpbk-packages {
        gap: 8px;
    }
    #wpbk_book_now {
        width: 100%;
    }
}

@media (max-width: 375px)
{
    .wpbk-qty-input-group {
        gap: 1px !important;
    }
}

/* Plus/Minus buttons (if you add them in HTML/JS) */
.wpbk-package-option {
    border: 2px solid #2196f3;
    border-radius: 8px;
    background: #f7fbff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(33,150,243,0.06);
    position: relative;
}
.wpbk-package-option input[type="radio"] {
    accent-color: #2196f3;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
.wpbk-package-option label {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1a237e;
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 24px;
}

/* Example icons for adults/children (use Unicode or FontAwesome if available) */
.wpbk-package-option .wpbk-pax-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.wpbk-package-option .wpbk-pax {
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.wpbk-package-option .wpbk-pax .icon {
    font-size: 1.1em;
    margin-right: 2px;
}

.wpbk-whatsapp-btn {
    background: #25d366;
    color: #fff !important;
    padding: 13px 0;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 90%;
    max-width: 160px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(37,211,102,0.08);
    transition: background 0.2s;
    text-decoration: none;
    margin-left: 0;
}
.wpbk-whatsapp-btn:hover {
    background: #128c7e;
    color: #fff !important;
}

/* Hide arrows in number input for Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin: 0; 
}

/* Hide arrows in number input for Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Hide manual text entry for date input, keep datepicker icon */
.wpbk-date-input-wrapper input[type="text"] {
  color: transparent;
  caret-color: transparent;
  text-align: center;
}
.wpbk-date-input-wrapper input[type="text"]:focus,
.wpbk-date-input-wrapper input[type="text"]:not(:placeholder-shown),
.wpbk-date-input-wrapper input[type="text"][value]:not([value=""]) {
  color: #222 !important;
  caret-color: auto;
}

.wpbk-individual-prices-row {
    font-size: 0.95em;
    color: #555;
    margin-top: 2px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.wpbk-qty-btn,
.wpbk-qty-input-group button {
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
}

#wpbk-modal {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpbk-modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 32px 24px 24px 24px;
    max-width: 90vw;
    width: 340px;
    text-align: center;
    position: relative;
}
.wpbk-modal-icon {
    font-size: 3.2rem;
    color: #ff9900;
    margin-bottom: 18px;
}
.wpbk-modal-message {
    font-size: 1.35rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 24px;
}
.wpbk-modal-ok {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 32px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(25,118,210,0.08);
    transition: background 0.2s;
}
.wpbk-modal-ok:hover {
    background: #0d47a1;
}
