/* Virtual Events — modern registration form */
.fmc-booking-section {
    background: #fff;
    border-top: 1px solid #efe7da;
    padding: 80px 28px 100px;
}

.fmc-booking-embedded {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 0 16px;
    box-sizing: border-box;
}

.fmc-booking-embedded .fmc-booking-inner {
    max-width: none;
    margin: 0;
}

.fmc-booking-embedded .fmc-booking-intro {
    margin-bottom: 28px;
}

.fmc-booking-embedded .fmc-booking-card {
    box-shadow: 0 18px 44px -34px rgba(16, 57, 72, .45);
}

.fmc-booking-inner {
    max-width: 720px;
    margin: 0 auto;
}

.fmc-booking-intro {
    text-align: center;
    margin-bottom: 40px;
}

.fmc-booking-intro .fmc-eyebrow {
    color: #1C6B7D;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.fmc-booking-intro h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.06;
    margin: 0 0 18px;
    color: #103948;
}

.fmc-booking-intro p {
    font-size: 16px;
    line-height: 1.75;
    color: #55596A;
    margin: 0;
}

.fmc-booking-card {
    text-align: left;
    background: linear-gradient(165deg, #FAF4EA 0%, #fff 55%);
    border: 1px solid #efe7da;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 24px 50px -38px rgba(16, 57, 72, .5);
}

.fmc-form-section-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #1C6B7D;
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(28, 107, 125, .15);
}

.fmc-form-section-title:first-child {
    margin-top: 0;
}

.fmc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .fmc-form-row {
        grid-template-columns: 1fr;
    }

    .fmc-booking-section {
        padding: 48px 16px 64px;
    }

    .fmc-booking-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
}

.fmc-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fmc-form-field .lbl {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #103948;
}

.fmc-form-field .fld,
.fmc-booking-card .fld {
    width: 100%;
    border: 1.5px solid rgba(16, 57, 72, .12);
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 15px;
    color: #103948;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.fmc-form-field .fld:focus,
.fmc-booking-card .fld:focus {
    outline: none;
    border-color: #1C6B7D;
    box-shadow: 0 0 0 3px rgba(28, 107, 125, .12);
}

.fmc-form-field textarea.fld {
    resize: vertical;
    min-height: 88px;
}

.fmc-form-field--full {
    grid-column: 1 / -1;
}

.fmc-form-conditional {
    display: none;
    margin-top: 12px;
}

.fmc-form-conditional.is-visible {
    display: block;
}

.fmc-cst-banner {
    background: #E9EFEC;
    border: 1px solid rgba(28, 107, 125, .25);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: #103948;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.fmc-form-hint {
    font-size: 12.5px;
    color: #6E7180;
    line-height: 1.5;
    margin: 10px 0 0;
}

.fmc-organizer-type-pick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .fmc-organizer-type-pick {
        grid-template-columns: 1fr;
    }
}

.fmc-organizer-type-pick label {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.fmc-organizer-type-pick input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fmc-organizer-type-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 14px;
    border: 2px solid rgba(16, 57, 72, .12);
    border-radius: 14px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.fmc-organizer-type-card strong {
    font-size: 14px;
    color: #103948;
}

.fmc-organizer-type-card span {
    font-size: 12px;
    color: #6E7180;
    line-height: 1.4;
}

.fmc-organizer-type-pick input:checked + .fmc-organizer-type-card {
    border-color: #1C6B7D;
    box-shadow: 0 10px 24px -14px rgba(28, 107, 125, .45);
    background: linear-gradient(160deg, #fff 0%, #E9EFEC 100%);
}

.fmc-business-section {
    border: 1.5px dashed rgba(28, 107, 125, .35);
    border-radius: 16px;
    padding: 18px;
    margin-top: 20px;
    background: rgba(233, 239, 236, .35);
}

.fmc-business-section[hidden] {
    display: none;
}

.fmc-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13.5px;
    color: #103948;
    line-height: 1.5;
    margin: 0;
}

.fmc-check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: #1C6B7D;
}

.fmc-cap-pick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.fmc-cap-pick label {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.fmc-cap-pick input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fmc-cap-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 9px 18px;
    border: 2px solid rgba(16, 57, 72, .14);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: #103948;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
button.fmc-cap-chip {
    font: inherit;
}
.fmc-cap-pick input:checked + .fmc-cap-chip,
.fmc-qty-presets .fmc-cap-chip.is-active,
button.fmc-cap-chip.is-active {
    border-color: #1C6B7D;
    background: #1C6B7D;
    color: #fff;
}
.fmc-package-pick label {
    position: relative;
}
.fmc-package-card {
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.fmc-package-card:hover {
    box-shadow: 0 4px 14px rgba(16, 57, 72, 0.08);
}

.fmc-product-pick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}

@media (max-width: 560px) {
    .fmc-product-pick {
        grid-template-columns: 1fr;
    }
}

.fmc-product-pick label {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.fmc-product-pick input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fmc-product-pick-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 16px;
    border: 2px solid rgba(16, 57, 72, .12);
    border-radius: 16px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    min-height: 100%;
}

.fmc-product-pick input:checked + .fmc-product-pick-card {
    border-color: #1C6B7D;
    box-shadow: 0 12px 28px -14px rgba(28, 107, 125, .45);
    background: linear-gradient(160deg, #fff 0%, #E9EFEC 100%);
}

.fmc-product-pick-card strong {
    font-size: 15px;
    color: #103948;
    line-height: 1.3;
}

.fmc-product-pick-card span {
    font-size: 13px;
    color: #6E7180;
    line-height: 1.45;
}

.fmc-product-pick-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1C6B7D;
    background: #E9EFEC;
    padding: 4px 10px;
    border-radius: 999px;
}

.fmc-booking-submit {
    width: 100%;
    margin-top: 28px;
    background: #1C6B7D;
    color: #fff;
    border: none;
    padding: 17px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 24px -10px rgba(28, 107, 125, .4);
}

.fmc-booking-submit:disabled {
    opacity: .65;
    cursor: wait;
}

.fmc-poster-page {
    background: #FAF4EA;
    min-height: 80vh;
    padding: 40px 20px 80px;
}

.fmc-poster-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.fmc-poster-page-header {
    text-align: center;
    margin-bottom: 32px;
}

.fmc-poster-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #103948;
    margin: 0 0 10px;
}

.fmc-poster-page-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.fmc-poster-page-actions .btnp {
    background: #1C6B7D;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fmc-poster-page-actions .btnp--ghost {
    background: #fff;
    color: #103948;
    border: 1.5px solid rgba(16, 57, 72, .2);
}

.fmc-product-size-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 22px;
    border-radius: 14px;
    border: 2px solid rgba(28, 107, 125, .25);
    background: linear-gradient(135deg, #E9EFEC 0%, #fff 100%);
    font-size: 15px;
    font-weight: 600;
    color: #103948;
    line-height: 1.35;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px -16px rgba(16, 57, 72, .35);
}

.fmc-product-size-badge .fmc-size-dim {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #1C6B7D;
    background: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(28, 107, 125, .2);
}

.fmc-product-size-badge .fmc-size-desc {
    font-weight: 500;
    color: #55596A;
    font-size: 14px;
}

.fmc-print-size-label.fmc-print-size-label--hero {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid rgba(28, 107, 125, .2);
    color: #1C6B7D;
    margin-top: 14px;
    display: inline-block;
    letter-spacing: .1em;
}

.fmc-template-card-img--custom {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #E9EFEC, #FAF4EA) !important;
    font-size: 32px;
    color: #1C6B7D;
}

.fmc-custom-template-panel {
    margin-top: 16px;
    padding: 18px;
    border: 1.5px dashed rgba(28, 107, 125, .35);
    border-radius: 14px;
    background: rgba(233, 239, 236, .4);
}

.fmc-custom-template-panel.is-hidden {
    display: none;
}

@media print {
    .fmc-poster-page-actions,
    .no-print {
        display: none !important;
    }

    #fmc-print-sheet,
    #fmc-print-sheet * {
        visibility: visible !important;
    }
}
