:root {
    --santa-red: #e53935;
    --santa-red-dark: #b71c1c;
    --santa-green: #2e7d32;
    --santa-gold: #ffca28;
    --snow: #f6f7fb;
    --deep-blue: #061729;
    --card-bg: #ffffff;
    --shadow-soft: 0 18px 45px rgba(3, 8, 23, 0.15);
    --shadow-light: 0 12px 25px rgba(0, 0, 0, 0.06);
}

body {
    background: radial-gradient(circle at top, #fff4f4 0, #f6f7fb 40%, #eaf1ff 100%);
}
.speaker-detail {
    position: relative;
    padding: 30px 40px 30px 40px !important;
}
/* MAIN CONTAINER */
.auto-container {
    position: static;
    max-width: 1180px !important;
    padding: 0 32px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .speaker-detail {
        padding: 10px 30px 20px !important;
    }
    .auto-container {
        position: static;
        max-width: 1180px !important;
        padding: 0 32px;
        margin: 0 auto;
    }
    .auto-container {
        padding: 0 16px;
    }
}

/* HERO */
.page-title.mom {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.page-title.mom::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.6) 0, transparent 55%),
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.45) 0, transparent 60%),
        linear-gradient(135deg, rgba(6, 23, 41, 0.85), rgba(115, 11, 15, 0.85));
    mix-blend-mode: multiply;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
    color: #ffffff;
}

.hero-copy {
    max-width: 540px;
    text-align: left;
}
.page-title.mom::before {
    background: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--santa-gold);
}

.hero-title {
    font-size: clamp(32px, 4.1vw, 46px);
    line-height: 1.1;
    margin: 14px 0 10px;
    font-weight: 800;
}

.hero-title span.accent {
    background: linear-gradient(135deg, #ffeb3b, #ff9800);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 15px;
    opacity: .95;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-pill i {
    font-size: 12px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.hero-primary-btn {
    border-radius: 999px;
    padding: 11px 22px;
    border: none;
    background: linear-gradient(135deg, var(--santa-red), var(--santa-red-dark));
    color: #fff;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(179, 0, 0, 0.55);
}

.hero-primary-btn i {
    font-size: 14px;
}

.hero-secondary-text {
    font-size: 11px;
    opacity: .85;
}

.hero-media-card {
    position: relative;
    border-radius: 26px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.25) 0, transparent 58%), rgba(15, 28, 61, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hero-media-title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-media-title img {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    object-fit: cover;
}

.hero-media-tag {
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(3, 169, 244, 0.16);
    border: 1px solid rgba(3, 169, 244, 0.45);
}

.hero-audio {
    border-radius: 16px;
    background: rgba(2, 10, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 10px;
}

.hero-badges {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    font-size: 10px;
    opacity: .9;
}

@media (max-width: 992px) {
    .page-title.mom {
        padding: 40px 0 32px;
    }
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }
    .hero-copy {
        max-width: 100%;
    }
    .hero-media-card {
        order: -1;
    }
}

@media (max-width: 576px) {
    .speaker-detail {
        padding: 10px 30px 20px !important;
    }
    .hero-primary-btn {
        width: 100%;
        justify-content: center;
    }
    .hero-media-card {
        padding: 16px;
    }
}

/* MAIN FORM SHELL */
.santa-form-shell {
    position: relative;
    margin-top: -45px;
    z-index: 2;
    padding-bottom: 80px;
}

.santa-form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    padding: 64px 48px 48px; /* BIG padding so nothing hugs edges */
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.santa-form-card .row + .row {
    margin-top: 28px;
}

@media (max-width: 768px) {
    .speaker-detail {
        padding: 10px 30px 20px !important;
    }
    .santa-form-card {
        padding: 32px 20px 32px;
    }
}

/* HOW IT WORKS ROW */
.info-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 48px; /* big gap before Child Information */
}

.info-card {
    border-radius: 18px;
    background: #fff9f7;
    border: 1px solid rgba(244, 196, 186, 0.9);
    padding: 14px 16px;
    font-size: 12px;
    color: #586076;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(229, 57, 53, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--santa-red);
    flex-shrink: 0;
    font-size: 12px;
}

.info-card strong {
    display: block;
    font-size: 12px;
    color: var(--deep-blue);
    margin-bottom: 2px;
}

@media (max-width: 992px) {
    .speaker-detail {
        padding: 10px 30px 20px !important;
    }
    .info-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .speaker-detail {
        padding: 10px 30px 20px !important;
    }
    .info-row {
        grid-template-columns: 1fr;
    }
}

/* CHILD SECTION + ACCORDION */
.image-column {
    padding-left: 6px;
    padding-right: 6px;
}

.child-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 4px 0 10px;
}

.child-section-subtitle {
    font-size: 13px;
    color: #586076;
    margin-bottom: 26px;
    max-width: 820px;
}

.accordion-wrapper {
    margin: 28px auto 0;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9) 0, transparent 52%), #fff7f7;
    border-radius: 24px;
    border: 1px solid rgba(244, 196, 186, 0.85);
    box-shadow: var(--shadow-light);
}

.child-accordion {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 245, 0.98));
    border-radius: 18px;
    border: 1px solid rgba(241, 208, 196, 0.9);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
    margin-bottom: 22px;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.child-accordion:last-child {
    margin-bottom: 0;
}

.child-accordion.open {
    border-color: rgba(230, 57, 53, 0.6);
    box-shadow: 0 16px 40px rgba(148, 24, 9, 0.15);
    transform: translateY(-2px);
}

.accordianChilds {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: linear-gradient(125deg, #e53935, #b71c1c);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    gap: 14px;
    position: relative;
}

.accordion-label::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: .9;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    background: rgba(0, 0, 0, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

input:checked + .accordion-label::after {
    transform: rotate(180deg);
    opacity: 1;
    background: rgba(0, 0, 0, 0.28);
}

.child-label-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.child-number-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.child-number-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffe082;
}

.child-name-preview {
    font-size: 11px;
    opacity: 0.9;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.child-name-preview[data-empty="true"] {
    opacity: 0.75;
    font-style: italic;
}

.child-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-child-add,
.btn-child-remove {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-child-add i,
.btn-child-remove i {
    font-size: 11px;
}

.btn-child-add:hover,
.btn-child-remove:hover {
    background: #ffffff;
    color: #b71c1c;
}

.btn-child-remove.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.accordion-content {
    max-height: 0;
    padding: 0 22px;
    background: #ffffff;
    color: #042f4a;
    transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.25s ease;
    opacity: 0;
}

input:checked ~ .accordion-content {
    max-height: 1300px;
    padding: 20px 22px 24px;
    opacity: 1;
}

.container.child-info {
    background: #ffffff;
    padding: 0;
}

.container.child-info .row {
    row-gap: 20px; /* bigger vertical gap between fields */
}

.container.child-info label {
    color: #3b3b3b !important;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 4px;
}

.container.child-info .form-control,
.container.child-info select {
    width: 100%;
    border: 1px solid #dde2ef;
    font-size: 14px;
    padding: 2px 10px;
    height: 52px !important;
    background-color: #fdfdff;
}

.container.child-info .form-control:focus,
.container.child-info select:focus {
    border-color: var(--santa-red);
    box-shadow: 0 0 0 0.12rem rgba(229, 57, 53, 0.25);
}

/* MOBILE STACKING */
@media (max-width: 768px) {
    .speaker-detail {
        padding: 10px 30px 20px !important;
    }
    .accordion-label {
        flex-direction: column;
        align-items: flex-start;
    }
    .child-header-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .container.child-info .row > [class^="col-"],
    .container.child-info .row > [class*=" col-"] {
        margin-bottom: 4px;
    }
    section.page-title.mom {
        background-position: 50% center !important;
    }
    form#elfBookingForm {
        padding: 14px 12px 13px 15px !important;
    }
}

/* ADD TO CART BUTTON */
.add-to-cart-wrapper {
    margin-top: 26px;
    text-align: right;
}

#ELfBooking {
    border-radius: 999px;
    padding: 11px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, var(--santa-green), #1b5e20);
    border: none;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(1, 87, 33, 0.5);
}

#ELfBooking:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .add-to-cart-wrapper {
        text-align: center;
    }
    #ELfBooking {
        width: 100%;
    }
}

/* ALERTS */
.alert {
    border-radius: 999px;
    font-size: 13px;
}
.page-title.mom{
    display: block !important;
}
section.page-title.mom {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 38% center;
}
