/* booking-flow.css */

/* Hide/Show logic for Steps */
.step-hidden { display: none !important; }
.step-active { display: block; animation: cf7FadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

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

/* Base Styling for CF7 step wraps */
fieldset {
    border: none;
    border-radius: 12px;
    padding: 35px;
    margin: 0 auto 40px auto;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    max-width: 550px; /* Center and constrain width to look premium */
}

fieldset h4 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #90306c;
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    font-family: inherit;
}

fieldset label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: inline-block;
}

/* Beautiful Inputs */
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
    outline: none;
    border-color: #90306c;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(144, 48, 108, 0.1);
}

.wpcf7-list-item { margin-bottom: 15px; display: block; margin-left: 0; }
.wpcf7-list-item-label { font-size: 1rem; color: #475569; margin-left: 10px; cursor: pointer; font-weight: 500;}
input[type="checkbox"] { width: 20px; height: 20px; accent-color: #90306c; cursor: pointer; transform: translateY(4px);}

/* Plum Default Brand Action Button styling replacement */
.next-step-btn, input[type="submit"].wpcf7-submit {
    background: linear-gradient(135deg, #90306c 0%, #681f4d 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 25px;
    display: block;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(144, 48, 108, 0.25);
}

.next-step-btn:hover, input[type="submit"].wpcf7-submit:hover {
    box-shadow: 0 6px 16px rgba(144, 48, 108, 0.4);
    transform: translateY(-2px);
}

.next-step-btn:active, input[type="submit"].wpcf7-submit:active {
    transform: translateY(0);
}

/* Display Containers */
#booking-summary {
    background: #f8fafc;
    border-left: 5px solid #90306c;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

#booking-summary p {
    margin: 8px 0;
    color: #334155;
    font-size: 1.05rem;
}

#final-price-wrapper {
    margin: 24px 0;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #90306c;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#final-price-wrapper::before {
    content: "Total Amount";
    font-size: 1.2rem;
    color: #475569;
    font-weight: 600;
}

/* Coupon Button & States */
#apply-coupon-btn {
    background: #e2e8f0;
    color: #475569;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 20px;
    transition: all 0.2s;
    width: 100%;
}

#apply-coupon-btn:hover { background: #cbd5e1; }

.coupon-success {
    background: #10b981 !important; /* Green success */
    color: white !important;
}

/* Identity Document Upload */
.plum-docs-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 16px;
    background: #f8fafc;
    transition: border-color 0.2s, background-color 0.2s;
}

.plum-docs-upload-area:hover {
    border-color: #90306c;
    background: #fdf4f9;
}

.plum-docs-upload-area.plum-docs-has-files {
    border-color: #16a34a;
    background: #f0fdf4;
}

.plum-docs-upload-area.plum-docs-error {
    border-color: #ef4444;
    background: #fef2f2;
}

#plum-docs-input {
    display: none;
}

.plum-docs-icon {
    font-size: 2rem;
    color: #90306c;
    margin-bottom: 8px;
    line-height: 1;
}

.plum-docs-label {
    margin: 0 0 4px;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.97rem;
}

.plum-docs-hint {
    margin: 0 0 4px;
    font-size: 0.85rem;
    color: #64748b;
}

.plum-docs-pan-note {
    margin: 2px 0 8px;
    font-size: 0.82rem;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    padding: 5px 10px;
    display: inline-block;
}

.plum-docs-formats {
    margin: 0 0 10px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.plum-docs-filelist {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    text-align: left;
}

.plum-docs-filelist li {
    font-size: 0.82rem;
    color: #16a34a;
    padding: 3px 0;
    border-top: 1px solid #dcfce7;
}

/* Terms checkbox */
.plum-legal-consent {
    margin: 4px 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s, background-color 0.2s;
}

.plum-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.plum-terms-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #90306c;
    cursor: pointer;
}

.plum-terms-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

/* Input Validations */
.cf7-validation-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
    animation: shake 0.4s ease-in-out;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* CF7 native UI overrides to prevent redundant error span spamming */
span.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #ecfdf5;
    border: 2px solid #10b981;
    color: #065f46;
    border-radius: 8px;
    padding: 18px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 20px;
}

/* Force Visibility for MotoPress Prices (Unhide theme/plugin defaults if suppressed) */
.mphb-regular-price, 
.mphb-price, 
.mphb-currency-price,
.mphb-price-period, 
.mphb-price-title {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #90306c !important; /* Use Plum brand color */
    font-weight: 700 !important;
}

.mphb-regular-price strong, 
.mphb-price-title {
    color: #334155 !important;
    margin-right: 5px;
}

/* CF7 response area cleanup */
.wpcf7-response-output {
    margin: 20px 0 !important;
}

/* =========================================================
   MODAL
   ========================================================= */
.plum-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.plum-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}

.plum-modal-container {
    background: #ffffff;
    border-radius: 16px;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.plum-modal-backdrop.is-open .plum-modal-container {
    transform: translateY(0) scale(1);
}

.plum-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

.plum-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.plum-modal-close {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.plum-modal-close:hover { background: #e2e8f0; color: #1e293b; }

.plum-modal-body {
    padding: 24px 28px 32px;
}

.plum-modal-body h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #90306c;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plum-modal-body h4 + ul { margin-bottom: 28px; }

.plum-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plum-modal-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plum-modal-body ul li:last-child { border-bottom: none; }

.plum-modal-body ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plum-modal-body p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================================================
   LEGAL CONSENT TEXT (replaces checkboxes)
   ========================================================= */
.plum-legal-consent {
    font-size: 0.9rem;
    color: #64748b;
    margin: 18px 0 20px;
    line-height: 1.65;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #90306c;
}

a.booking-terms-link {
    color: #90306c;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

a.booking-terms-link:hover { color: #681f4d; }

/* =========================================================
   PAYMENT INFO BLOCK (above submit button)
   ========================================================= */
.plum-payment-info-block {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 18px;
    margin: 22px 0 0;
}

.plum-payment-icon { font-size: 1.4rem; flex-shrink: 0; }

.plum-payment-info-block strong {
    display: block;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.plum-payment-info-block p {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
}

/* =========================================================
   TOAST NOTIFICATION
   ========================================================= */
.plum-toast {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    background: #065f46;
    color: white;
    padding: 16px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 999999;
    box-shadow: 0 10px 30px -5px rgba(6, 95, 70, 0.45);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    max-width: 400px;
    width: max-content;
    pointer-events: none;
}

.plum-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 480px) {
    .plum-toast {
        max-width: calc(100vw - 32px);
        width: calc(100vw - 32px);
    }
}

.plum-toast-icon {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.plum-toast-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plum-toast-content strong { font-size: 0.92rem; font-weight: 700; }
.plum-toast-content span { font-size: 0.8rem; opacity: 0.85; }

/* =========================================================
   PROCESSING STATE (auto-submit return)
   ========================================================= */
.plum-processing {
    pointer-events: none;
    position: relative;
}

.plum-processing::after {
    content: 'Finalizing your booking\2026';
    display: block;
    text-align: center;
    color: #90306c;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 14px 0 0;
    animation: plumPulse 1.4s ease-in-out infinite;
}

@keyframes plumPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* =========================================================
   MODAL — SECTION LABELS (House Rules / Getting charged)
   ========================================================= */
.plum-modal-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #90306c;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin: 0 0 18px;
}

/* =========================================================
   MODAL — RULE CATEGORIES (Checking in / During stay / etc.)
   ========================================================= */
.plum-rule-category {
    margin-bottom: 22px;
}

.plum-rule-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.plum-rule-category-header span:last-child {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

.plum-rule-icon {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Rule list — override the global ::before checkmark */
.plum-rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plum-rule-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
}

.plum-rule-list li:last-child { border-bottom: none; }

.plum-rule-list li::before {
    content: '–';
    color: #94a3b8;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =========================================================
   MODAL — SHOW MORE BUTTON
   ========================================================= */
.plum-show-more-btn {
    background: none;
    border: none;
    padding: 8px 0 0;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.plum-show-more-btn:hover { color: #90306c; }

.plum-show-more-arrow {
    font-size: 1rem;
    line-height: 1;
}

/* =========================================================
   MODAL — SECTION DIVIDER
   ========================================================= */
.plum-modal-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 24px 0;
}

/* =========================================================
   MODAL — DAMAGE SECTION
   ========================================================= */
.plum-damage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.plum-damage-item:last-child { border-bottom: none; }

.plum-damage-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.plum-damage-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.plum-damage-text p {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}

/* =========================================================
   BOOKING TERMS STEP (Step 1.5)
   ========================================================= */
.plum-terms-step {
    max-width: 550px;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.plum-terms-step-header {
    background: linear-gradient(135deg, #90306c 0%, #681f4d 100%);
    padding: 28px 32px 22px;
    text-align: center;
}

.plum-terms-step-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.plum-terms-step-title-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.plum-terms-step-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff !important;
    border: none;
    padding: 0;
}

.plum-terms-step-subtitle {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.plum-terms-step-body {
    background: #f1f5f9;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual term cards */
.plum-terms-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.07);
}

.plum-terms-card-header {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.93rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.plum-terms-card-header span:first-child {
    font-size: 1.15rem;
    line-height: 1;
}

/* List items inside cards */
.plum-terms-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plum-terms-card-list li {
    font-size: 0.89rem;
    color: #475569;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: none !important;
    padding: 0 !important;
}

.plum-terms-card-list li::before {
    display: none !important;
}

.plum-terms-li-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
    line-height: 1.5;
}

/* Damage rows inside card */
.plum-terms-damage-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plum-terms-damage-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plum-terms-damage-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.plum-terms-damage-row strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.plum-terms-damage-row p {
    margin: 0;
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.55;
}

/* Consent area */
.plum-terms-consent {
    background: #ffffff;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    transition: background 0.2s;
}

.plum-terms-consent.plum-terms-consent-error {
    background: #fef2f2;
    outline: 2px solid #ef4444;
    animation: shake 0.4s ease-in-out;
}

.plum-terms-consent-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
}

.plum-terms-agree-cb {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    accent-color: #90306c;
    cursor: pointer;
}

/* Agree button — flush bottom of the step card */
.plum-terms-agree-btn {
    border-radius: 0 0 12px 12px !important;
    margin-top: 0 !important;
    box-shadow: none !important;
}

.plum-terms-agree-btn:hover {
    box-shadow: 0 4px 12px rgba(144, 48, 108, 0.3) !important;
}

/* =========================================================
   DOCUMENT UPLOAD — GUIDED WIZARD MODAL
   ========================================================= */

/* Overlay */
.plum-doc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 16px;
}

.plum-doc-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* Modal card */
.plum-doc-modal {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.plum-doc-modal-overlay.is-open .plum-doc-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.plum-doc-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    line-height: 1;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

.plum-doc-modal-close:hover { background: #e2e8f0; color: #1e293b; }

/* Progress bar */
.plum-doc-modal-progress-bar {
    height: 4px;
    background: #f1f5f9;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.plum-doc-modal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #90306c, #c05a99);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

/* Modal body padding */
#plum-doc-modal-body {
    padding: 28px 28px 32px;
}

/* Step header */
.plum-doc-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.plum-doc-guest-badge {
    background: linear-gradient(135deg, #90306c, #c05a99);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.plum-doc-step-counter {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

/* Step title */
.plum-doc-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* PAN reminder inside modal */
.plum-doc-pan-reminder {
    font-size: 0.82rem;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 7px 12px;
    margin: 0 0 20px;
}

/* Nationality grid */
.plum-doc-nat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 6px;
}

.plum-doc-nat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    text-align: center;
}

.plum-doc-nat-btn:hover {
    border-color: #90306c;
    background: #fdf4f9;
    transform: translateY(-2px);
}

.plum-doc-nat-btn:active { transform: translateY(0); }

.plum-doc-nat-flag {
    font-size: 2rem;
    line-height: 1;
}

.plum-doc-nat-btn strong {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 700;
}

.plum-doc-nat-btn span {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.3;
}

/* Step description */
.plum-doc-step-desc {
    font-size: 0.88rem;
    color: #475569;
    margin: 0 0 16px;
    line-height: 1.55;
}

/* Dropzone */
.plum-doc-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.plum-doc-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.plum-doc-dropzone:hover,
.plum-doc-dropzone.has-file {
    border-color: #90306c;
    background: #fdf4f9;
}

.plum-doc-dz-icon {
    font-size: 2.2rem;
    color: #90306c;
    line-height: 1;
    margin-bottom: 8px;
}

.plum-doc-dz-hint {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin: 0 0 4px;
}

.plum-doc-dz-formats {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0 0 6px;
}

.plum-doc-dz-selected {
    font-size: 0.85rem;
    font-weight: 600;
    color: #16a34a;
    margin: 6px 0 0;
    min-height: 1em;
}

/* Action buttons row */
.plum-doc-step-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.plum-doc-next-btn {
    background: #90306c;
    color: #ffffff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s, transform 0.15s;
}

.plum-doc-next-btn:hover:not(:disabled) {
    background: #681f4d;
    transform: translateY(-1px);
}

.plum-doc-next-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.plum-doc-skip-btn {
    background: none;
    border: 1px solid #cbd5e1;
    color: #64748b;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.plum-doc-skip-btn:hover {
    border-color: #94a3b8;
    color: #334155;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .plum-doc-modal {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
        margin-top: auto;
    }

    .plum-doc-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .plum-doc-nat-grid {
        grid-template-columns: 1fr;
    }

    #plum-doc-modal-body {
        padding: 22px 20px 28px;
    }
}

/* =========================================================
   Refund / Cancellation Policy Card
   ========================================================= */
.plum-refund-policy-card {
    background: #fffaf5;
    border: 1px solid #f0d9c8 !important;
}
.plum-refund-timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}
.plum-refund-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    opacity: 0.45;
    font-size: 0.88rem;
}
.plum-refund-row.plum-refund-active {
    opacity: 1;
    background: #fff3e8;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(144,48,108,0.08);
}
.plum-refund-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 26px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.plum-refund-full    { background: #2e7d32; }
.plum-refund-partial { background: #e65100; }
.plum-refund-none    { background: #c62828; }
.plum-refund-status {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #555;
    border-top: 1px solid #f0d9c8;
    padding-top: 10px;
    line-height: 1.5;
}
.plum-refund-status .plum-refund-full    { color: #2e7d32; }
.plum-refund-status .plum-refund-partial { color: #e65100; }
.plum-refund-status .plum-refund-none    { color: #c62828; }

/* Last Minute Deal badge */
.plum-lastminute-badge {
    background: linear-gradient(135deg, #90306c, #e65100);
    color: #fff;
    border-radius: 8px;
    padding: 9px 14px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}
