/* ══════════════════════════════════════════════
   Zoro Booking – Frontend Styles
   ══════════════════════════════════════════════ */

/* ── Toast Notifications ── */
.zb-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #1a1a1a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #c9942a;
    max-width: 90%;
    text-align: center;
    pointer-events: none;
}

.zb-toast-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Buttons ── */
.zb-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.zb-btn-primary {
    background: #ae4005;
    color: #dfb475;
}

.zb-btn-primary:hover {
    background: #943605;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(174, 64, 5, 0.3);
}

.zb-btn-outline {
    background: transparent;
    color: #ae4005;
    border: 2px solid #ae4005;
}

.zb-btn-outline:hover {
    background: #ae4005;
    color: #dfb475;
}

.zb-btn-danger {
    background: #ae4005;
    color: #dfb475;
}

.zb-btn-danger:hover {
    background: #943605;
}

.zb-btn-full {
    display: block;
    width: 100%;
}

.zb-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── Modal Base ── */
.zb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zb-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.zb-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zbSlideUp 0.3s ease;
}

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

.zb-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.zb-modal-close:hover {
    color: #333;
}

.zb-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px;
    text-align: center;
}

/* ══════════════════════════════════════════════
   Themed Modal (Wood Texture / Pirate Style)
   ══════════════════════════════════════════════ */
.zb-modal-themed {
    background: linear-gradient(180deg, #3d2410, #5a3518, #3d2410);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #c9942a;
    border-radius: 12px;
    padding: 0;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.zb-close-themed {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(139, 105, 20, 0.8);
    border: 2px solid #c9942a;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.zb-close-themed:hover {
    background: rgba(201, 148, 42, 0.9);
    color: #fff;
}

.zb-modal-themed-header {
    padding: 45px 30px 15px;
    text-align: center;
}

.zb-title-themed {
    color: #d4a44a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* ── Themed Form ── */
.zb-form-themed {
    padding: 50px 30px 30px;
}

.zb-form-group-themed {
    margin-bottom: 16px;
}

.zb-form-group-themed input[type="date"],
.zb-form-group-themed select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #c9942a;
    border-radius: 6px;
    font-size: 16px;
    background: #fff !important;
    color: #222 !important;
    font-weight: 600;
}

.zb-form-group-themed select {
    appearance: none;
    -webkit-appearance: none;
}

.zb-form-group-themed input[type="date"]::placeholder,
.zb-form-group-themed select option {
    color: #666;
}

.zb-form-group-themed input[type="date"]:focus,
.zb-form-group-themed select:focus {
    border-color: #dba830;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 164, 74, 0.3);
}

.zb-form-group-themed select option {
    background: #fff;
    color: #222;
}

/* Guests static info */
.zb-guests-static {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #c9942a;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}

/* Time slots themed */
.zb-time-slots-themed .zb-time-slot {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #c9942a;
    color: #d4a44a;
    font-weight: 600;
}

.zb-time-slots-themed .zb-time-slot:hover:not(.zb-time-unavailable) {
    background: rgba(201, 148, 42, 0.3);
    border-color: #dba830;
}

.zb-time-slots-themed .zb-time-slot.zb-time-selected {
    background: linear-gradient(135deg, #8B6914, #C9942A);
    border-color: #dba830;
    color: #fff;
}

.zb-time-slots-themed .zb-time-slot.zb-time-unavailable {
    opacity: 0.3;
    border-color: #5a3518;
    color: #7a5a3a;
}

.zb-time-slots-themed .zb-time-placeholder,
.zb-time-slots-themed .zb-time-loading,
.zb-time-slots-themed .zb-time-error {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	text-align:center;
}

/* Submit button themed — matches "Check Availability" orange */
.zb-btn-submit-themed {
    display: inline-block;
    padding: 14px 32px;
    background: #ae4005;
    color: #dfb475;
    font-size: 18px;
    font-weight: 800;
    border: 2px solid #ae4005;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(174, 64, 5, 0.4);
    transition: all 0.3s ease;
	border: 1px solid;
}

.zb-btn-submit-themed:hover {
    background: #943605;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(174, 64, 5, 0.5);
}

/* ── Image-Based Popup Modals ── */
.zb-modal-image-popup {
    padding: 0;
    max-width: 680px;
    overflow: hidden;
    background: #1a1008;
}

.zb-modal-image-popup .zb-modal-close {
    top: 10px;
    right: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    z-index: 10;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.zb-modal-image-popup .zb-modal-close:hover {
    color: #fff;
}

.zb-popup-image-wrap {
    width: 100%;
    line-height: 0;
}

.zb-popup-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Fallback (no image uploaded) */
.zb-popup-fallback {
    padding: 50px 30px 30px;
    text-align: center;
}

.zb-popup-fallback-hooray {
    background: linear-gradient(135deg, #2d1810, #4a2c17, #2d1810);
}

.zb-popup-fallback-unavailable {
    background: linear-gradient(135deg, #1a1008, #2d1810, #1a1008);
}

.zb-popup-fallback .zb-success-icon,
.zb-popup-fallback .zb-error-icon {
    font-size: 64px;
    margin-bottom: 10px;
}

.zb-popup-fallback .zb-modal-title {
    color: #d4a44a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    margin: 0 0 8px;
}

.zb-popup-fallback .zb-success-message,
.zb-popup-fallback .zb-error-message {
    color: #c9a96e;
    font-size: 18px;
    margin: 0;
}

/* Hooray detail text below image */
.zb-hooray-detail {
    text-align: center;
    font-size: 14px;
    color: #c9a96e;
    padding: 10px 20px 0;
    margin: 0;
}

.zb-tryagain-detail {
    text-align: center;
    font-size: 14px;
    color: #c9a96e;
    padding: 12px 20px 5px;
    margin: 0;
}

/* ── Hooray Bottom Bar (Live Viewers + Secure Button) ── */
.zb-hooray-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.zb-live-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: rgba(26, 82, 118, 0.25);
    border: 1px solid rgba(212, 164, 74, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: #c9a96e;
}

.zb-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    animation: zbBlink 1.5s ease infinite;
    flex-shrink: 0;
}

@keyframes zbBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.zb-live-viewers strong {
    color: #d4a44a;
}

.zb-btn-secure {
    background: #ae4005;
    color: #dfb475;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 10px;
    border: 2px solid #ae4005;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(174, 64, 5, 0.4);
    white-space: nowrap;
}

.zb-btn-secure:hover {
    background: #943605;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(174, 64, 5, 0.5);
}

/* Change Time link below */
.zb-hooray-actions {
    padding: 0 20px 16px;
    justify-content: center;
}

.zb-hooray-actions .zb-btn-outline {
    color: #c9a96e;
    border-color: rgba(201, 169, 110, 0.3);
    font-size: 13px;
    padding: 8px 20px;
}

.zb-hooray-actions .zb-btn-outline:hover {
    background: rgba(201, 169, 110, 0.15);
    color: #d4a44a;
}

/* ── Unavailable modal actions ── */
.zb-modal-error .zb-modal-actions {
    padding: 10px 20px 20px;
    display: flex;
    justify-content: center;
}

.zb-modal-error .zb-btn-try-another,
.zb-modal-error .zb-btn-try-another-cards {
    background: #ae4005;
    border: 2px solid #ae4005;
    color: #dfb475;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 30px;
}

.zb-modal-error .zb-btn-try-another:hover,
.zb-modal-error .zb-btn-try-another-cards:hover {
    background: #943605;
}

/* ── Legacy fallback (non-image modals) ── */
.zb-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.zb-modal-actions .zb-btn {
    flex: 1;
    max-width: 200px;
}

/* ── Form Styles ── */
.zb-form-group {
    margin-bottom: 20px;
}

.zb-form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    font-size: 14px;
}

.zb-form-group input[type="date"],
.zb-form-group select {
    width: 100%;
    padding: 3px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #fff;
}

.zb-form-group input[type="date"]:focus,
.zb-form-group select:focus {
    border-color: #1a5276;
    outline: none;
}

/* ── Charter Info (in modal) ── */
.zb-charter-info {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.zb-charter-info h3 {
    margin: 0 0 5px;
    color: #1a5276;
}

.zb-charter-meta {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* ── Time Slots Grid ── */
.zb-time-slots {
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.zb-time-slot {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: #333;
}

.zb-time-slot:hover:not(.zb-time-unavailable) {
    border-color: #1a5276;
    background: #f0f7ff;
}

.zb-time-slot.zb-time-selected {
    border-color: #1a5276;
    background: #1a5276;
    color: #fff;
}

.zb-time-slot.zb-time-unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.zb-time-placeholder,
.zb-time-loading,
.zb-time-error {
    color: #999;
    font-size: 14px;
    width: 100%;
}

/* ══════════════════════════════════════════════
   Charter Cards Grid ([zb_charter_cards])
   ══════════════════════════════════════════════ */
.zb-cards-section {
    padding: 60px 20px;
    text-align: center;
}

.zb-cards-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    color: #d4a44a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 40px;
}

.zb-cards-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.zb-cards-cols-1 { grid-template-columns: 1fr; }
.zb-cards-cols-2 { grid-template-columns: repeat(2, 1fr); }
.zb-cards-cols-3 { grid-template-columns: repeat(3, 1fr); }
.zb-cards-cols-4 { grid-template-columns: repeat(4, 1fr); }

.zb-charter-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.zb-charter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 105, 20, 0.4);
}

.zb-card-img {
    width: 100%;
    height: 330px !important;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.zb-charter-card:hover .zb-card-img {
    transform: scale(1.03);
}

.zb-card-image-placeholder {
    background: linear-gradient(135deg, #2d1810, #4a2c17);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    line-height: 1.4;
}

.zb-card-placeholder-text {
    color: #c9a96e;
    font-size: 24px;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

/* ══════════════════════════════════════════════
   Themed Pre-Checkout Page
   ══════════════════════════════════════════════ */
.zb-themed-checkout {
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
}

.zb-themed-loading {
    padding: 80px 20px;
    text-align: center;
    color: #c9a96e;
}

.zb-spinner-themed {
    border-color: rgba(201, 169, 110, 0.2);
    border-top-color: #d4a44a;
}

.zb-themed-status {
    text-align: center;
    padding: 60px 20px;
    color: #c9a96e;
}

.zb-themed-status h2 {
    color: #d4a44a;
    font-family: Georgia, 'Times New Roman', serif;
}

/* ── Checkout Hero Section ── */
.zb-co-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

.zb-co-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.zb-co-hero > * {
    position: relative;
    z-index: 1;
}

/* ── Timer ── */
.zb-co-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #8B6914;
    border-radius: 12px;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zb-co-timer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B6914, #C9942A);
    border-radius: 50%;
    border: 3px solid #d4a44a;
    position: relative;
}

.zb-co-timer-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 18px;
    background: #fff;
    transform-origin: bottom;
    transform: translate(-50%, -100%) rotate(30deg);
}

.zb-co-timer-digits {
    display: flex;
    gap: 20px;
}

.zb-co-timer-block {
    text-align: center;
}

.zb-co-timer-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #d4a44a;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.zb-co-timer-label {
    font-size: 12px;
    color: #c9a96e;
    text-transform: capitalize;
}

.zb-timer-warning .zb-co-timer-num {
    color: #e74c3c;
    animation: zbPulse 1s ease infinite;
}

/* ── Summary Box ── */
.zb-co-summary-box {
    background-color: rgba(0, 0, 0, 0.8);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #c9942a;
    border-radius: 12px;
    padding: 40px 40px 20px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(201, 148, 42, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.zb-co-summary-date {
    color: #f0e6d0;
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
}

.zb-co-summary-details {
    color: #e0d0b0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
}

.zb-co-summary-upgrades {
    color: #c9942a;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    margin-top: 6px;
	margin-right: 100px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
}

.zb-co-price-tag {
    float: right;
    display: inline-block;
    background: #ffffff00;
    padding: 0px 60px;
    color: #d4a44a;
    font-size: 30px;
    font-weight: 800;
    font-family: Georgia, 'Times New Roman', serif;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.4);

}

/* ── Timer & Summary with custom background images ── */
.zb-co-timer-has-bg {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 16px 90px;
    border: none;
    justify-content: center;
}

.zb-co-timer-has-bg .zb-co-timer-icon {
    display: none;
}

.zb-co-timer-has-bg .zb-co-timer-num {
    font-size:24px;
}

.zb-co-timer-has-bg .zb-co-timer-label {
    font-size: 14px;
}

.zb-co-timer-has-bg .zb-co-timer-digits {
    gap: 40px;
}

.zb-co-summary-has-bg {
    background-color: transparent !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 30px 50px 20x !important;
}

/* ── Navigation Arrows ── */
.zb-co-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 700px;
    gap: 350px;
}

.zb-co-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 14px 40px;
    font-size: 20px;
    font-weight: 800;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: #dfb475;
    background: #ae4005;
    border: 2px solid #ae4005;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(174, 64, 5, 0.5), inset 0 1px 0 rgba(174, 64, 5, 0.2);
}

/* Left arrow shape */
.zb-co-nav-btn.zb-co-nav-prev {
    border-radius: 6px 8px 8px 6px;
    padding-left: 50px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    border-left: none;
}

/* Right arrow shape */
.zb-co-nav-btn.zb-co-nav-next {
    border-radius: 8px 6px 6px 8px;
    padding-right: 50px;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    border-right: none;
}

.zb-co-nav-btn:hover {
    background: #943605;
    color: #dfb475;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(174, 64, 5, 0.6), inset 0 1px 0 rgba(174, 64, 5, 0.3);
}

.zb-co-nav-btn.zb-co-nav-prev::before {
    content: none;
}

.zb-co-nav-btn.zb-co-nav-next::after {
    content: none;
}

/* ── Image-based Nav Buttons ── */
.zb-co-nav-img-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none !important;
    outline: none;
    box-shadow: none !important;
}

.zb-co-nav-img-btn:hover,
.zb-co-nav-img-btn:focus,
.zb-co-nav-img-btn:active {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transform: scale(1.08);
    filter: brightness(1.15);
}

.zb-co-nav-img {
    height: 45px;
    width: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 600px) {
    .zb-co-nav-img {
        height: 30px;
    }

	.zb-card-img {
		height: 260px !important;
	}
    .zb-co-nav {
        gap: 8px;
    }
}

@media (min-width: 451px) and (max-width: 600px) {
	.zb-card-img {
		height: 300px !important;
	}
}

@media (min-width: 300px) and (max-width: 450px) {
	.zb-card-img {
		height: 220px !important;
	}
}



@media (min-width: 601px) and (max-width: 900px) {
    .zb-co-nav-img {
        height: 36px;
    }
		.zb-card-img {
		height: 200px !important;
	}
	.zb-promo-inline {
		bottom: 50%;
    }
}

/* ══════════════════════════════════════════════
   Premium Upgrades Section (Checkout)
   ══════════════════════════════════════════════ */
.zb-co-upgrades-section {
    background: transparent;
    padding: 60px 20px;
    text-align: center;
}

/* Free Hour Promo (inline in upgrades section) */
.zb-promo-inline {
    display: block;
    margin: 30px auto 0;
    max-width: 600px;
    width: 90%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
}

.zb-promo-inline img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.zb-promo-inline img:hover {
    transform: scale(1.02);
}

.zb-co-upgrades-title {
    color: #d4a44a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.zb-co-upgrades-subtitle {
    color: #f0e6d0;
    font-size: 16px;
    margin: 0 0 5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.zb-co-upgrades-avail {
    color: #fff;
    font-size: 14px;
    margin: 0 0 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.zb-co-upgrades-heading {
    color: #d4a44a;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.zb-co-upgrades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Upgrade Card (Image-based) ── */
.zb-co-upgrade-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.zb-co-upgrade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.3);
}

.zb-co-upgrade-selected {
    outline: 3px solid #27ae60;
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.3);
}

.zb-co-upgrade-soldout {
    opacity: 0.85;
}

.zb-co-upgrade-img-wrap {
    width: 100%;
    position: relative;
    line-height: 0;
    cursor: pointer;
}

.zb-co-upgrade-soldout .zb-co-upgrade-img-wrap {
    cursor: not-allowed;
}

.zb-co-upgrade-img {
    width: 100%;
    height: 525px !important;
    display: block;
}

.zb-co-upgrade-img-placeholder {
    background: linear-gradient(135deg, #2d1810, #4a2c17);
    height: 200px;
}

.zb-co-soldout-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 48px;
    font-weight: 800;
    color: #d4a44a;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    white-space: nowrap;
    pointer-events: none;
}

.zb-co-upgrade-body {
    position: absolute;
    bottom: 0%;
    left: 6%;
    right: 6%;
    padding: 12px 18px 8px;
    text-align: left;
    background: transparent;
    z-index: 2;
	height: 130px !important;
	    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.zb-co-upgrade-name {
    color: #f0e6d0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.zb-co-upgrade-features {
    list-style: disc;
    margin: 0 0 2px;
    padding-left: 12px;
    color: #f0e6d0;
    font-size: 12px;
    line-height: 1.3;
    font-family: Georgia, 'Times New Roman', serif;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.zb-co-upgrade-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zb-co-upgrade-price {
    color: #d4a44a;
    font-size: 22px;
    font-weight: 800;
    font-family: Georgia, 'Times New Roman', serif;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    flex-shrink: 0;
}

.zb-co-upgrade-btn {
    flex: 1;
    padding: 3px 3px;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    background: #ae4005;
    color: #dfb475;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.zb-co-upgrade-btn:hover:not(:disabled) {
    background: #943605;
    color: #dfb475;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.zb-co-upgrade-btn-remove {
    background: #ae4005;
    color: #dfb475;
}

.zb-co-upgrade-btn-remove:hover:not(:disabled) {
    background: #943605;
    color: #dfb475;
}

.zb-co-upgrade-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ══════════════════════════════════════════════
   Legacy Pre-Checkout (kept for backward compat)
   ══════════════════════════════════════════════ */

.zb-checkout-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

/* ── Loading / Status States ── */
.zb-checkout-loading {
    text-align: center;
    padding: 60px 20px;
    background: transparent;
}

.zb-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #1a5276;
    border-radius: 50%;
    animation: zbSpin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes zbSpin {
    to { transform: rotate(360deg); }
}

.zb-success-icon-large,
.zb-error-icon-large {
    font-size: 64px;
    text-align: center;
    margin-bottom: 15px;
}

.zb-success-icon-img {
    display: block;
    margin: 0 auto 10px;
    max-width: 200px !important;
    height: auto;
}
#zb-checkout-success > p{
	background: #000;
}
.zb-success-title-img {
    display: block;
    margin: 0 auto 15px;
    max-width: 500px !important;
    height: auto;
}

.zb-checkout-success,
.zb-checkout-cancelled,
.zb-checkout-expired {
    text-align: center;
    padding: 40px 20px;
}

.zb-checkout-success h2 { color: #27ae60; }
.zb-checkout-cancelled h2 { color: #e67e22; }
.zb-checkout-expired h2 {
    color: #dfb475;
    font-family: "Open Sans", Sans-serif;
    font-size: 38px;
    font-weight: 800;
    -webkit-text-stroke-width: 2px;
    stroke-width: 3px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
}
/* ── Hold Timer (legacy) ── */
.zb-hold-timer {
    background: #f0f7ff;
    border: 2px solid #1a5276;
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    color: #1a5276;
    margin-bottom: 25px;
}

.zb-hold-timer.zb-timer-warning {
    background: #fff3cd;
    border-color: #e67e22;
    color: #e67e22;
    animation: zbPulse 1s ease infinite;
}

@keyframes zbPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.zb-timer-icon {
    margin-right: 8px;
}

/* ── Sections ── */
.zb-section {
    margin-bottom: 30px;
}

.zb-section h2 {
    font-size: 22px;
    color: #2c3e50;
    margin: 0 0 5px;
    font-weight: 700;
}

.zb-section-subtitle {
    color: #888;
    font-size: 14px;
    margin: 0 0 15px;
}

/* ── Summary Card ── */
.zb-summary-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8e8e8;
}

.zb-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.zb-summary-row:last-child {
    border-bottom: none;
}

.zb-label {
    font-weight: 600;
    color: #555;
}

.zb-value {
    color: #2c3e50;
    font-weight: 500;
}

.zb-summary-price .zb-value {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

/* ── Upgrade Cards (legacy) ── */
.zb-upgrades-grid {
    display: grid;
    gap: 15px;
}

.zb-upgrade-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.zb-upgrade-card:hover {
    border-color: #1a5276;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.zb-upgrade-card.zb-upgrade-selected {
    border-color: #27ae60;
    background: #f0faf5;
}

.zb-upgrade-info {
    flex: 1;
    margin-right: 15px;
}

.zb-upgrade-name {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 5px;
}

.zb-upgrade-desc {
    font-size: 14px;
    color: #777;
    margin: 0 0 8px;
    line-height: 1.4;
}

.zb-upgrade-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a5276;
    margin: 0;
}

.zb-upgrade-card .zb-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
}

/* ── Subtotal ── */
.zb-subtotal-card {
    background: #fff;
    border: 2px solid #2c3e50;
    border-radius: 12px;
    padding: 20px;
}

.zb-subtotal-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

.zb-subtotal-divider {
    height: 2px;
    background: #2c3e50;
    margin: 10px 0;
}

.zb-subtotal-total {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.zb-subtotal-total span:last-child {
    color: #27ae60;
}

/* ── Checkout Button ── */
.zb-btn-checkout {
    font-size: 18px;
    padding: 16px;
    border-radius: 12px;
}

/* ── Confirmation Page ── */
.zb-confirmation-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
}

.zb-confirmation-header {
    text-align: center;
    margin-bottom: 30px;
}

.zb-booking-ref {
    font-size: 18px;
    color: #1a5276;
    font-weight: 600;
}

/* ══════════════════════════════════════════════
   Liability Disclaimer Popup
   ══════════════════════════════════════════════ */

.zb-disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zb-disclaimer-popup {
    position: relative;
    background: linear-gradient(180deg, #3d1a0a, #2a1005, #1a0a02);
    border: 3px solid #c9942a;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(201, 148, 42, 0.3);
}

.zb-disclaimer-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #c9942a;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

.zb-disclaimer-close:hover {
    color: #fff;
}

.zb-disclaimer-scroll {
    overflow-y: auto;
    padding: 24px;
    -webkit-overflow-scrolling: touch;
}

.zb-disclaimer-image {
    margin: 0 0 20px;
    text-align: center;
}

.zb-disclaimer-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #c9942a;
}

.zb-disclaimer-form {
    padding: 0;
}

.zb-disclaimer-form-title {
    color: #c9942a;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.zb-disclaimer-field {
    margin-bottom: 14px;
}

.zb-disclaimer-field label {
    display: block;
    color: #f0e6d0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.zb-disclaimer-field .zb-required {
    color: #e74c3c;
}

.zb-disclaimer-field input[type="text"],
.zb-disclaimer-field input[type="email"],
.zb-disclaimer-field input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #6b4c2a;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #2a1005;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.zb-disclaimer-field input:focus {
    outline: none;
    border-color: #c9942a;
    box-shadow: 0 0 0 3px rgba(201, 148, 42, 0.25);
}

.zb-disclaimer-agree {
    margin: 18px 0;
    padding: 14px;
    background: rgba(201, 148, 42, 0.1);
    border: 1px solid rgba(201, 148, 42, 0.3);
    border-radius: 8px;
}

.zb-disclaimer-agree label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #f0e6d0;
    font-size: 13px;
    line-height: 1.5;
}

.zb-disclaimer-agree input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #c9942a;
}

.zb-disclaimer-submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #ae4005;
    color: #dfb475;
    border: 2px solid #ae4005;
}

.zb-disclaimer-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */

/* ── Tablet (601px–900px) ── */
@media (max-width: 900px) {
    .zb-co-upgrades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zb-cards-cols-3,
    .zb-cards-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .zb-co-hero {
        min-height: 400px;
        padding: 30px 15px;
    }

    .zb-co-timer {
        padding: 12px 20px;
        gap: 12px;
    }

    .zb-co-timer-icon {
        width: 45px;
        height: 45px;
    }

    .zb-co-timer-num {
        font-size: 30px;
    }

    .zb-co-timer-has-bg {
        padding: 22px 140px;
    }

    .zb-co-timer-has-bg .zb-co-timer-num {
        font-size: 38px;
    }

    .zb-co-timer-has-bg .zb-co-timer-digits {
        gap: 30px;
    }

    .zb-co-summary-box {
        padding: 20px 25px;
    }

    .zb-co-summary-date {
        font-size: 22px;
    }

    .zb-co-summary-details {
        font-size: 16px;
    }

    .zb-co-summary-upgrades {
        font-size: 14px;
    }

    .zb-co-price-tag {
        font-size: 34px;
        padding: 8px 35px;
    }

    .zb-co-summary-has-bg {
        padding: 20px 30px 15px;
    }

    .zb-co-nav-btn {
        padding: 12px 35px;
        font-size: 17px;
    }

    .zb-co-nav-btn.zb-co-nav-prev {
        padding-left: 42px;
    }

    .zb-co-nav-btn.zb-co-nav-next {
        padding-right: 42px;
    }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
    /* Modals */
    .zb-modal-content {
        padding: 25px;
        width: 95%;
    }

    .zb-modal-image-popup {
        padding: 0;
        width: 95%;
    }

    .zb-modal-themed {
        width: 95%;
    }

    .zb-modal-themed-header {
        padding: 35px 20px 10px;
    }

    .zb-title-themed {
        font-size: 22px;
    }

    .zb-form-themed {
        padding: 10px 20px 20px;
    }

    .zb-modal-actions {
        flex-direction: column;
    }

    .zb-modal-actions .zb-btn {
        max-width: 100%;
    }

    /* Hooray popup */
    .zb-hooray-bottom-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .zb-live-viewers {
        justify-content: center;
    }

    .zb-btn-secure {
        font-size: 15px;
        padding: 12px 20px;
    }

    /* Legacy upgrades */
    .zb-upgrade-card {
        flex-direction: column;
        text-align: center;
    }

    .zb-upgrade-info {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .zb-upgrade-card .zb-btn {
        width: 100%;
    }

    /* Charter cards grid */
    .zb-cards-cols-2,
    .zb-cards-cols-3,
    .zb-cards-cols-4 {
        grid-template-columns: 1fr;
    }

    .zb-cards-title {
        font-size: 28px;
    }

    .zb-cards-section {
        padding: 30px 0px;
    }

    .zb-card-image-placeholder {
        height: 200px;
    }

    /* Checkout hero */
    .zb-co-hero {
        min-height: 300px;
        padding: 20px 10px;
    }

    .zb-co-timer {
        padding: 10px 15px;
        gap: 10px;
        margin-bottom: 15px;
    }

    .zb-co-timer-icon {
        width: 35px;
        height: 35px;
    }

    .zb-co-timer-icon::after {
        height: 12px;
    }

    .zb-co-timer-num {
        font-size: 24px;
    }

    .zb-co-timer-label {
        font-size: 10px;
    }

    .zb-co-timer-digits {
        gap: 12px;
    }

    .zb-co-timer-has-bg {
        padding: 18px 90px;
    }

    .zb-co-timer-has-bg .zb-co-timer-num {
        font-size: 30px;
    }

    .zb-co-timer-has-bg .zb-co-timer-label {
        font-size: 12px;
    }

    .zb-co-timer-has-bg .zb-co-timer-digits {
        gap: 20px;
    }

    /* Summary box */
    .zb-co-summary-box {
        padding: 15px;
        margin-bottom: 15px;
    }

    .zb-co-summary-date {
        font-size: 16px;
    }

    .zb-co-summary-details {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .zb-co-summary-upgrades {
        font-size: 12px;
    }

    .zb-co-price-tag {
        font-size: 20px;
        padding: 6px 25px;
    }

    .zb-co-summary-has-bg {
        padding: 15px 20px 12px;
    }

    /* Navigation */
    .zb-co-nav {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .zb-co-nav-btn {
        padding: 10px 28px;
        font-size: 14px;
    }

    .zb-co-nav-btn.zb-co-nav-prev {
        padding-left: 35px;
    }

    .zb-co-nav-btn.zb-co-nav-next {
        padding-right: 35px;
    }

    .zb-co-nav-img-btn {
        display: flex;
        justify-content: center;
    }

    /* Checkout upgrades */
    .zb-co-upgrades-grid {
        grid-template-columns: 1fr;
    }

    .zb-co-upgrades-section {
        padding: 30px 10px;
    }

    .zb-co-upgrades-title {
        font-size: 28px;
    }

    .zb-co-upgrade-body {
        padding: 10px 14px 12px;
    }

    .zb-co-upgrade-name {
        font-size: 18px;
    }

    .zb-co-upgrade-features {
        font-size: 12px;
        margin: 0 0 6px;
    }

    .zb-co-upgrade-price {
        font-size: 22px;
    }

    .zb-co-upgrade-btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    /* Submit button */
    .zb-btn-submit-themed {
        padding: 12px 24px;
        font-size: 16px;
		
    }

    /* Disclaimer popup mobile */
    .zb-disclaimer-overlay {
        padding: 10px;
    }

    .zb-disclaimer-popup {
        max-height: 95vh;
    }

    .zb-disclaimer-scroll {
        padding: 16px;
    }

    .zb-disclaimer-form-title {
        font-size: 17px;
    }

    .zb-disclaimer-submit {
        font-size: 15px;
        padding: 12px 16px;
    }
}

.flatpickr-calendar {
    z-index: 999999 !important;
}

.zb-modal-content {
    overflow: visible !important;
}

#zb-checkout-expired > p{
	background: #000000;
}

#zb-checkout-expired{
	margin-top: -150px;
}

/* ══════════════════════════════════════════════
   FAQ Accordion Section
   ══════════════════════════════════════════════ */

.zb-faq-section {
    position: relative;
    background-color: #1a0e08;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px 60px;
    overflow: hidden;
}

.zb-faq-rope-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: repeating-linear-gradient(
        90deg,
        #8b6914 0px,
        #d4a637 4px,
        #6b4c0a 8px,
        #c9942a 12px,
        #8b6914 16px
    );
    opacity: 0.7;
    z-index: 2;
}

.zb-faq-rope-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

.zb-faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #dfb475;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.zb-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.zb-faq-item {
    width: 100%;
}

.zb-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: rgba(20, 12, 6, 0.85);
    border: 2px solid #c9942a;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    gap: 12px;
}

.zb-faq-question:hover {
    background: rgba(40, 25, 12, 0.95);
    border-color: #dfb475;
    box-shadow: 0 0 15px rgba(201, 148, 42, 0.3);
}

.zb-faq-question[aria-expanded="true"] {
    border-color: #dfb475;
    background: rgba(40, 25, 12, 0.95);
    border-radius: 25px 25px 0 0;
}

.zb-faq-q-text {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
    line-height: 1.3;
}

.zb-faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.zb-faq-icon svg {
    display: block;
}

.zb-faq-icon-v {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.zb-faq-question[aria-expanded="true"] .zb-faq-icon-v {
    opacity: 0;
    transform: scaleY(0);
}

.zb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(20, 12, 6, 0.9);
    border-top: none;
    border-radius: 0 0 25px 25px;
    margin-top: 10px;
}

.zb-faq-answer.zb-faq-open {
    max-height: 500px;
}

.zb-faq-answer-inner {
    padding: 16px 24px 20px;
    color: #dfb475;
    font-size: 14px;
    line-height: 1.7;
}

.zb-faq-answer-inner p {
    margin: 0 0 10px;
    color: #dfb475;
}

.zb-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* ── FAQ Responsive ── */

@media (max-width: 768px) {
    .zb-faq-section {
        padding: 40px 16px 40px;
    }

    .zb-faq-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .zb-faq-title {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 28px;
    }

    .zb-faq-question {
        padding: 12px 16px;
        border-radius: 40px;
    }

    .zb-faq-question[aria-expanded="true"] {
        border-radius: 20px 20px 0 0;
    }

    .zb-faq-answer {
        border-radius: 0 0 20px 20px;
    }

    .zb-faq-q-text {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .zb-faq-answer-inner {
        padding: 12px 16px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zb-faq-q-text {
        font-size: 11px;
    }
}

.zb-faq-rope-border{
	display: none !important;
}