/* ============================================
   CREEK FRONTEND STYLES
   ============================================ */

.creek-frontend {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    color: #1e293b;
}

.creek-frontend * {
    box-sizing: border-box;
}

.creek-step {
    display: none;
}

.creek-step.active {
    display: block;
}

/* Search Panel */
.creek-search-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
}

/* Choose Panel */
.creek-choose-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.creek-choose-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.creek-choose-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 36px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 180px;
}

.creek-choose-btn:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.creek-choose-icon {
    font-size: 40px;
    line-height: 1;
}

.creek-choose-label {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.creek-hours-display {
    margin-top: 24px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.creek-hours-item {
    font-size: 14px;
    color: #475569;
}

.creek-hours-label {
    font-weight: 700;
    color: #1e293b;
}

.creek-closings-display {
    margin-top: 16px;
    padding: 14px 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    text-align: center;
}

.creek-closings-display-title {
    font-weight: 700;
    color: #991b1b;
    font-size: 15px;
    margin-bottom: 6px;
}

.creek-closing-entry {
    font-size: 14px;
    color: #7f1d1d;
    padding: 2px 0;
}

.creek-event-graphic-display {
    margin-top: 16px;
    text-align: center;
}

.creek-event-graphic-display img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Day Pass */
.creek-daypass-result {
    margin-top: 20px;
}

.creek-daypass-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.creek-daypass-info h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #1e293b;
}

.creek-daypass-event {
    color: #7c3aed;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.creek-daypass-discount {
    color: #16a34a;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    padding: 6px 12px;
    background: #f0fdf4;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
}

.creek-daypass-price {
    font-size: 28px;
    font-weight: 800;
    color: #16a34a;
}

.creek-daypass-note {
    font-size: 12px;
    color: #7c3aed;
    margin-top: 2px;
}

.creek-daypass-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.creek-daypass-option {
    flex: 1;
    min-width: 200px;
}

.creek-daypass-option label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 6px;
}

.creek-daypass-option .creek-help {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 6px 0;
}

.creek-daypass-option select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
}

.creek-daypass-option-full {
    flex: 1 1 100%;
}

.creek-age-add-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.creek-age-add-row select {
    flex: 1;
    min-width: 160px;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
}

.creek-people-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.creek-person-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    color: #1e40af;
    font-weight: 600;
}

.creek-person-tag[data-type="child"] {
    background: #fef9c3;
    border-color: #fde68a;
    color: #92400e;
}

.creek-person-tag[data-type="toddler"] {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.creek-person-remove {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
}

.creek-person-remove:hover {
    opacity: 1;
}

.creek-daypass-breakdown {
    flex-direction: column;
}

.creek-daypass-breakdown h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #1e293b;
}

.creek-daypass-breakdown .creek-checkout-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.creek-daypass-breakdown .creek-checkout-total {
    font-weight: 700;
    font-size: 16px;
    border-top: 2px solid #e2e8f0;
    border-bottom: none;
    margin-top: 4px;
    padding-top: 10px;
}

.creek-policy-banner {
    text-align: center;
    font-size: 15px;
    color: #334155;
    margin-bottom: 8px;
}

.creek-policy-banner a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}

.creek-policy-banner a:hover {
    color: #1d4ed8;
}

.creek-frontend-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    text-align: center;
}

.creek-booking-notice {
    background: #f0f6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #1e40af;
    text-align: center;
}

.creek-date-range {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}

.creek-date-field {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.creek-date-field label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}

.creek-frontend .creek-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
}

.creek-frontend .creek-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.creek-frontend .creek-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.creek-frontend .creek-btn-primary {
    background: #2563eb;
    color: #fff;
}

.creek-frontend .creek-btn-primary:hover {
    background: #1d4ed8;
}

.creek-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
    font-size: 14px;
    color: #475569;
}

.creek-select-sm {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

/* Results */
.creek-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.creek-resource-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.creek-resource-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.creek-resource-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f1f5f9;
    display: block;
}

.creek-resource-photo-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 40px;
}

.creek-resource-info {
    padding: 16px;
}

.creek-resource-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.creek-resource-category {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.creek-resource-capacity {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.creek-resource-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creek-resource-price {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
}

.creek-resource-price small {
    font-size: 12px;
    font-weight: 400;
    color: #94a3b8;
}

.creek-resource-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.creek-details-btn {
    flex: 1;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.creek-details-btn:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.creek-reserve-btn {
    flex: 1;
    padding: 8px 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.creek-reserve-btn:hover {
    background: #1d4ed8;
}

/* Details Modal */
.creek-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.creek-details-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 700px;
    max-width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.creek-details-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.creek-details-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.creek-details-modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    line-height: 1;
}

.creek-details-modal-close:hover {
    color: #475569;
}

.creek-details-modal-body {
    padding: 24px;
}

.creek-details-photo-main {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 12px;
}

.creek-details-photo-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.creek-details-photo-thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.creek-details-photo-thumb:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.creek-details-desc-text {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    padding: 12px 16px;
    margin-top: 8px;
    background: #f8fafc;
    border-left: 3px solid #2563eb;
    border-radius: 4px;
}

.creek-details-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.creek-details-info-item {
    flex: 1;
    min-width: 140px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.creek-details-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}

.creek-details-info-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.creek-details-info-value.creek-details-price {
    color: #16a34a;
}

.creek-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 16px;
}

/* Auth Panel */
.creek-auth-panel {
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.creek-auth-panel h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 24px 0;
    color: #1e293b;
}

.creek-auth-panel .creek-form-group {
    margin-bottom: 16px;
}

.creek-auth-panel .creek-form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}

.creek-login-help {
    background: #f0f6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #1e40af;
}

.creek-login-help p {
    margin: 0;
}

.creek-policy-agree {
    margin-bottom: 16px;
}

.creek-policy-agree .creek-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    line-height: 1.5;
}

.creek-policy-agree .creek-checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.creek-policy-agree a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}

.creek-auth-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #64748b;
}

.creek-auth-switch a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.creek-auth-switch a:hover {
    text-decoration: underline;
}

.creek-auth-back {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
}

.creek-auth-back a {
    color: #64748b;
    text-decoration: none;
}

.creek-auth-back a:hover {
    color: #2563eb;
}

.creek-form-row-inner {
    display: flex;
    gap: 12px;
}

/* Alert */
.creek-alert {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.creek-alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.creek-alert-info {
    background: #f0f6ff;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.creek-alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #86efac;
}

.creek-alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Checkout */
.creek-checkout-panel {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.creek-checkout-panel h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 24px 0;
    color: #1e293b;
}

.creek-checkout-summary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.creek-checkout-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #475569;
}

.creek-checkout-line.creek-checkout-total {
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.creek-checkout-message {
    margin-top: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #334155;
}

.creek-checkout-waiver {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}

.creek-checkout-waiver a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: underline;
}

.creek-checkout-policy {
    margin-top: 12px;
    padding: 10px 0;
}

.creek-checkout-policy .creek-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    line-height: 1.5;
}

.creek-checkout-policy .creek-checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.creek-checkout-policy a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}

.creek-paypal-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #ffc439;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.creek-paypal-btn:hover {
    background: #f0b72f;
}

/* Confirmation */
.creek-confirm-panel {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 36px;
}

.creek-confirm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.creek-confirm-panel h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

#creek-confirm-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

/* Loading spinner */
.creek-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: creekSpin 0.6s linear infinite;
}

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

/* Responsive */
@media (max-width: 600px) {
    .creek-date-range {
        flex-direction: column;
        align-items: stretch;
    }

    .creek-date-field {
        max-width: 100%;
    }

    .creek-results {
        grid-template-columns: 1fr;
    }

    .creek-auth-panel,
    .creek-checkout-panel {
        padding: 24px 18px;
    }

    .creek-form-row-inner {
        flex-direction: column;
    }

    .creek-search-panel {
        padding: 20px;
    }

    .creek-details-modal-content {
        width: 100%;
        max-height: 90vh;
    }

    .creek-details-photo-thumb {
        width: 80px;
        height: 60px;
    }

    .creek-choose-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .creek-choose-btn {
        min-width: 0;
        flex-direction: row;
        padding: 18px 24px;
    }

    .creek-choose-icon {
        font-size: 28px;
    }

    .creek-hours-display {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .creek-daypass-card {
        flex-direction: column;
        text-align: center;
    }

    .creek-daypass-options {
        flex-direction: column;
    }
}

/* Booking Restriction Notice */
.creek-restriction-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-left: 4px solid #f59e0b;
    color: #92400e;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   CHECKOUT HOLD TIMER (v1.16.3)
   ============================================ */

.creek-checkout-timer-wrap {
    text-align: center;
    margin: 0 0 20px;
    padding: 16px 18px;
    background: #fef9ef;
    border: 1px solid #fde68a;
    border-radius: 10px;
}

.creek-checkout-timer-msg {
    margin: 0 0 10px;
    color: #713f12;
    font-size: 14px;
    line-height: 1.5;
}

.creek-checkout-timer {
    display: inline-block;
    font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
    font-size: 28px;
    font-weight: 700;
    color: #b45309;
    background: #fff;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 8px 20px;
    min-width: 110px;
    letter-spacing: 1px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.creek-checkout-timer.creek-checkout-timer-urgent {
    color: #991b1b;
    border-color: #dc2626;
    background: #fef2f2;
    animation: creek-timer-pulse 1s ease-in-out infinite;
}

@keyframes creek-timer-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.creek-checkout-inflight-wrap {
    margin: 0 0 20px;
    padding: 14px 16px;
    background: #ecfdf5;
    border: 1px solid #86efac;
    border-left: 4px solid #16a34a;
    border-radius: 6px;
}

.creek-checkout-inflight-msg {
    margin: 0;
    color: #065f46;
    font-size: 14px;
    line-height: 1.5;
}

.creek-checkout-expired-wrap {
    text-align: center;
    margin: 24px 0;
    padding: 28px 24px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
}

.creek-checkout-expired-msg {
    margin: 0 0 16px;
    color: #7f1d1d;
    font-size: 15px;
    line-height: 1.5;
}

#creek-expired-restart-btn {
    margin-top: 4px;
}

/* =====================================================================
 * v1.17.0 — Checkout "Optional" section (Pet Fee + Day Pass add-on)
 * ===================================================================== */

.creek-checkout-summary-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.creek-checkout-optional {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.creek-checkout-optional-header {
    margin-bottom: 12px;
}

.creek-checkout-optional-title {
    font-size: 17px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 4px;
}

.creek-checkout-optional-sub {
    font-size: 13px;
    color: #047857;
}

/* Pet fee line inside the Optional box — reuse the existing warm color */
.creek-checkout-optional .creek-pet-fee-line {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.creek-pet-fee-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
}

.creek-pet-fee-label input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Day Pass widget inside the Optional box */
.creek-checkout-daypass-widget {
    margin-top: 4px;
}

.creek-checkout-daypass-label {
    display: block;
    font-weight: 600;
    color: #064e3b;
    margin: 10px 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.creek-checkout-daypass-widget .creek-age-add-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.creek-checkout-daypass-widget .creek-age-add-row select {
    flex: 1;
    min-width: 160px;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

.creek-checkout-daypass-widget #creek-checkout-daypass-units {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

.creek-checkout-daypass-widget .creek-people-list {
    margin-top: 10px;
}

.creek-checkout-daypass-action-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.creek-checkout-daypass-action-row .creek-btn {
    flex: 0 0 auto;
}

.creek-checkout-daypass-price {
    flex: 1 1 auto;
    min-width: 160px;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.creek-checkout-daypass-price.creek-checkout-daypass-price-live {
    color: #065f46;
    font-size: 14px;
}

.creek-checkout-daypass-added-notice {
    margin-top: 12px;
    padding: 10px 14px;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 6px;
    color: #065f46;
    font-size: 14px;
    line-height: 1.4;
}

.creek-checkout-daypass-added-notice a {
    color: #b91c1c;
    text-decoration: underline;
    font-weight: 600;
}

.creek-checkout-daypass-added-check {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background: #059669;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 4px;
}

/* Keep the bottom totals block visually grouped the same way the top block is */
.creek-checkout-summary-block .creek-checkout-line:last-child {
    padding-bottom: 0;
}

/* =====================================================================
 * v1.18.0 — Edit Profile panel, password auth, reset, secondary button
 * ===================================================================== */

/* Edit Profile panel — slightly wider than the compact login panel to fit
   the two-column address rows comfortably. */
.creek-auth-panel.creek-profile-panel {
    max-width: 620px;
}

.creek-profile-panel h2 {
    margin-bottom: 16px;
}

.creek-profile-section-title {
    margin: 24px 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

/* Greyed-out first/last name row — explicitly disabled in the markup */
.creek-profile-locked .creek-input[disabled] {
    background: #f1f5f9;
    color: #475569;
    cursor: not-allowed;
}

.creek-profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.creek-profile-actions .creek-btn {
    flex: 1 1 auto;
    min-width: 140px;
}

/* Secondary button (used for Log Out on the Edit Profile screen). Less
   visually prominent than the primary blue action button. */
.creek-btn-secondary {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.creek-btn-secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* "Forgot your password?" link and other switch links inside the auth panel */
.creek-auth-panel .creek-link {
    color: #1e40af;
    text-decoration: underline;
}

.creek-auth-panel .creek-link:hover {
    color: #1e3a8a;
}

/* Temp-password notice — reuse the warning alert styles with tighter
   spacing since it's at the top of the form. */
#creek-profile-temp-notice {
    margin-bottom: 20px;
}

#creek-profile-temp-notice p {
    margin: 0;
    line-height: 1.5;
}
