#tsme-app-root { display: block; width: 100%; isolation: isolate; }
#tsme-app-root .tsme-v4 *,
#tsme-app-root .tsme-v4 *::before,
#tsme-app-root .tsme-v4 *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: inherit; }

#tsme-app-root .tsme-v4 {
    --yellow: #FEDB32;
    --yellow-soft: #FFF8DC;
    --dark: #111;
    --text: #1a1a1a;
    --text2: #555;
    --text3: #999;
    --border: #eee;
    --bg: #f7f7f8;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 4px 24px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.08);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    font-family: var(--font);
    color: var(--text);
    line-height: 1.55;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;

    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(254,219,50,.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(254,219,50,.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,0,0,.02) 0%, transparent 60%),
        var(--bg);
    min-height: 80vh;
    padding: 0 0 120px;
}

#tsme-app-root .tsme-v4 .m-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 28px 0;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
#tsme-app-root .tsme-v4 .m-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
#tsme-app-root .tsme-v4 .m-right { width: 420px; flex-shrink: 0; position: sticky; top: 28px; display: flex; flex-direction: column; gap: 24px; }

#tsme-app-root .tsme-v4 .m-card {
    background: var(--white);
    border-radius: var(--radius);
    border: none;
    border-left: 4px solid var(--yellow);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}

#tsme-app-root .tsme-v4 .m-hero {
    padding: 44px 40px 40px;
    background: var(--white);
}
#tsme-app-root .tsme-v4 .m-tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--dark);
    background: var(--yellow);
    padding: 5px 16px; border-radius: 50px;
    margin: 0 0 16px;
    font-family: var(--font);
}
#tsme-app-root .tsme-v4 .m-tag-b2b {
    background: var(--dark); color: var(--yellow);
    padding: 3px 8px; border-radius: 4px;
    font-size: 9px; margin-left: 8px; vertical-align: middle;
}
#tsme-app-root .tsme-v4 .m-hero h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700; line-height: 1.1;
    margin: 0; letter-spacing: -.5px;
    color: var(--dark);
    font-family: var(--font);
}
#tsme-app-root .tsme-v4 .m-hero-excerpt {
    margin: 16px 0 0;
    font-size: 15px; line-height: 1.7;
    color: var(--text2);
    font-family: var(--font);
}
#tsme-app-root .tsme-v4 .m-hero-excerpt p { margin: 0 0 12px; }
#tsme-app-root .tsme-v4 .m-hero-excerpt p:last-child { margin-bottom: 0; }
#tsme-app-root .tsme-v4 .m-hero-excerpt strong { color: var(--text); font-weight: 700; }
#tsme-app-root .tsme-v4 .m-hero-excerpt a { color: var(--dark); text-decoration: underline; }
#tsme-app-root .tsme-v4 .m-hero-excerpt a:hover { color: var(--yellow); }
#tsme-app-root .tsme-v4 .m-hero-excerpt ul,
#tsme-app-root .tsme-v4 .m-hero-excerpt ol { margin: 0 0 12px 20px; padding: 0 0 0 16px; }
#tsme-app-root .tsme-v4 .m-hero-excerpt ul { list-style-type: disc; }
#tsme-app-root .tsme-v4 .m-hero-excerpt ol { list-style-type: decimal; }
#tsme-app-root .tsme-v4 .m-hero-excerpt li { display: list-item; margin: 0 0 4px; line-height: 1.7; }

#tsme-app-root .tsme-v4 .m-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
#tsme-app-root .tsme-v4 .m-info-box {
    padding: 24px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}
#tsme-app-root .tsme-v4 .m-info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
#tsme-app-root .tsme-v4 .m-info-label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text3); margin: 0 0 8px;
    font-family: var(--font);
}
#tsme-app-root .tsme-v4 .m-info-value {
    font-size: 20px; font-weight: 700; color: var(--dark);
    font-family: var(--font);
}
#tsme-app-root .tsme-v4 .m-info-value a {
    color: var(--dark); text-decoration: none;
}
#tsme-app-root .tsme-v4 .m-info-value a:hover { color: var(--dark); text-decoration: none; opacity: .7; }

#tsme-app-root .tsme-v4 .m-steps-card {
    background: var(--white);
    position: relative;
    padding: 0;
    border-radius: var(--radius);
    border-left: 4px solid var(--yellow);
    box-shadow: var(--shadow);
}
#tsme-app-root .tsme-v4 .m-steps-tab {
    position: absolute; top: -1px; left: 32px;
    background: var(--dark); color: var(--yellow);
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    padding: 8px 20px;
    border-radius: 0 0 14px 14px;
    font-family: var(--font);
    z-index: 1;
}
#tsme-app-root .tsme-v4 .m-steps {
    padding: 52px 32px 36px;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
}

#tsme-app-root .tsme-v4 .m-step {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 14px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-16px);
}
#tsme-app-root .tsme-v4 .m-step[data-step="1"] { animation: m-step-slide .7s ease-out .6s forwards; }
#tsme-app-root .tsme-v4 .m-step[data-step="2"] { animation: m-step-slide .7s ease-out 2.0s forwards; }
#tsme-app-root .tsme-v4 .m-step[data-step="3"] { animation: m-step-slide .7s ease-out 3.4s forwards; }
@keyframes m-step-slide {
    to { opacity: 1; transform: translateX(0); }
}

#tsme-app-root .tsme-v4 .m-step:not(:last-child) .m-step-connector {
    position: absolute;
    left: 19px; 
    top: 54px; 
    width: 2px;
    bottom: -14px; 
    z-index: 0;
    overflow: hidden;
}
#tsme-app-root .tsme-v4 .m-step-connector-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--border);
}
#tsme-app-root .tsme-v4 .m-step-connector-fill {
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--yellow), var(--dark));
    transition: height 1.2s ease-out;
}
#tsme-app-root .tsme-v4 .m-step.is-active .m-step-connector-fill {
    height: 100%;
}

#tsme-app-root .tsme-v4 .m-step-dot {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    transition: background .5s, border-color .5s;
}
#tsme-app-root .tsme-v4 .m-step-dot span {
    font-size: 14px; font-weight: 700; color: var(--text3);
    font-family: var(--font);
    transition: color .5s;
}

#tsme-app-root .tsme-v4 .m-step.is-active .m-step-dot {
    background: var(--yellow); border-color: var(--yellow);
}
#tsme-app-root .tsme-v4 .m-step.is-active .m-step-dot span {
    color: var(--dark);
}

#tsme-app-root .tsme-v4 .m-step-content { padding-top: 6px; }
#tsme-app-root .tsme-v4 .m-step h4 {
    font-size: 15px; font-weight: 700; color: var(--dark);
    margin: 0 0 4px;
    font-family: var(--font);
}
#tsme-app-root .tsme-v4 .m-step p {
    font-size: 13px; line-height: 1.6; color: var(--text3);
    margin: 0;
    font-family: var(--font);
}

#tsme-app-root .tsme-v4 .m-collapse-card { box-shadow: var(--shadow); border-left: 4px solid var(--yellow); border-radius: var(--radius); }
#tsme-app-root .tsme-v4 .m-collapse-toggle {
    width: 100%; padding: 18px 24px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; background: none; border: none;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    color: var(--text); text-align: left;
    transition: background .15s;
}
#tsme-app-root .tsme-v4 .m-collapse-toggle:hover { background: #fafafa; }
#tsme-app-root .tsme-v4 .m-collapse-arrow {
    color: var(--text3); transition: transform .3s; flex-shrink: 0;
}
#tsme-app-root .tsme-v4 .m-collapse-toggle.open .m-collapse-arrow { transform: rotate(180deg); }
#tsme-app-root .tsme-v4 .m-collapse-body { display: none; }
#tsme-app-root .tsme-v4 .m-collapse-body.expanded {
    display: block; padding: 0 24px 24px;
    font-size: 14px; color: var(--text2); line-height: 1.8;
}
#tsme-app-root .tsme-v4 .m-collapse-body p { margin: 0 0 14px; }
#tsme-app-root .tsme-v4 .m-collapse-body p:last-child { margin-bottom: 0; }
#tsme-app-root .tsme-v4 .m-collapse-body strong { color: var(--text); font-weight: 700; }
#tsme-app-root .tsme-v4 .m-collapse-body ul,
#tsme-app-root .tsme-v4 .m-collapse-body ol { display: block !important; margin: 0 0 14px 20px !important; padding: 0 0 0 16px !important; }
#tsme-app-root .tsme-v4 .m-collapse-body ul { list-style-type: disc !important; }
#tsme-app-root .tsme-v4 .m-collapse-body ol { list-style-type: decimal !important; }
#tsme-app-root .tsme-v4 .m-collapse-body li { display: list-item !important; margin: 0 0 6px !important; line-height: 1.7; }
#tsme-app-root .tsme-v4 .m-collapse-body a { color: var(--dark); text-decoration: underline !important; display: inline !important; cursor: pointer; }
#tsme-app-root .tsme-v4 .m-collapse-body a:hover { color: var(--yellow); }
#tsme-app-root .tsme-v4 .m-collapse-body h2,
#tsme-app-root .tsme-v4 .m-collapse-body h3,
#tsme-app-root .tsme-v4 .m-collapse-body h4 { font-weight: 700; color: var(--text); margin: 18px 0 8px; }
#tsme-app-root .tsme-v4 .m-collapse-body h2 { font-size: 18px; }
#tsme-app-root .tsme-v4 .m-collapse-body h3 { font-size: 16px; }
#tsme-app-root .tsme-v4 .m-collapse-body h4 { font-size: 15px; }
#tsme-app-root .tsme-v4 .m-collapse-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0; }
#tsme-app-root .tsme-v4 .m-collapse-body table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
#tsme-app-root .tsme-v4 .m-collapse-body th,
#tsme-app-root .tsme-v4 .m-collapse-body td { padding: 8px 12px; border: 1px solid var(--border); text-align: left; }
#tsme-app-root .tsme-v4 .m-collapse-body th { background: var(--bg); font-weight: 700; }

#tsme-app-root .tsme-v4 .m-mobile-cta { display: none; }
#tsme-app-root .tsme-v4 .m-form-card {
    background: var(--white);
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-lg);
    overflow: visible;
}
#tsme-app-root .tsme-v4 .m-form-head {
    background: var(--yellow);
    color: var(--dark);
    padding: 16px 28px;
    border-radius: var(--radius) var(--radius) 0 0;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    font-family: var(--font);
    display: flex; align-items: center; gap: 10px;
}
#tsme-app-root .tsme-v4 .m-form-head svg {
    flex-shrink: 0;
}
#tsme-app-root .tsme-v4 .m-form-head-arrow {
    flex-shrink: 0;
    animation: m-arrow-pulse 1.5s ease-in-out infinite;
}
@keyframes m-arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: .5; }
}

#tsme-app-root .tsme-v4 #tsme-progress-bar {
    padding: 10px 28px; background: #f0fdf4;
    border-bottom: 1px solid #dcfce7;
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; color: #16a34a;
}
#tsme-app-root .tsme-v4 .tsme-progress-fill {
    height: 4px; background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 2px; flex: 1; max-width: 80px; transition: width .3s;
}

#tsme-app-root .tsme-v4 #tsme-rooms-list-header {
    padding: 10px 28px; background: #f0fdf4;
    border-bottom: 1px solid #dcfce7;
    display: flex; justify-content: space-between; align-items: center;
}
#tsme-app-root .tsme-v4 #tsme-rooms-list-header h4 {
    margin: 0; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; color: #16a34a;
}
#tsme-app-root .tsme-v4 #tsme-clear-all-btn {
    background: none; border: none; color: #dc2626;
    font-size: 11px; font-family: var(--font); cursor: pointer;
}
#tsme-app-root .tsme-v4 .tsme-room-success-item {
    padding: 10px 28px; border-bottom: 1px solid #f5f5f5;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
}
#tsme-app-root .tsme-v4 .tsme-room-number-badge {
    background: #dcfce7; color: #166534;
    font-size: 10px; font-weight: 700; padding: 2px 7px;
    border-radius: 6px; margin-right: 8px;
}
#tsme-app-root .tsme-v4 .tsme-room-remove {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #ccc; cursor: pointer;
    font-size: 14px; flex-shrink: 0; background: none;
    border: none; font-family: var(--font); transition: all .15s;
}
#tsme-app-root .tsme-v4 .tsme-room-remove:hover { background: #fef2f2; color: #ef4444; }

#tsme-app-root .tsme-v4 #tsme-csv-import-bar { padding: 10px 28px; text-align: right; }
#tsme-app-root .tsme-v4 #tsme-next-room-prompt {
    background: var(--yellow-soft); color: #6d4c00;
    padding: 14px 28px; font-size: 13px;
    border-left: 4px solid var(--yellow);
}

#tsme-app-root .tsme-v4 .tsme-form-body { padding: 28px; overflow: visible; }

#tsme-app-root .tsme-v4 .tsme-grid { display: grid !important; grid-template-columns: minmax(0,1fr) minmax(0,1fr); row-gap: 10px; column-gap: 18px; position: relative; margin-right: 48px !important; }
#tsme-app-root .tsme-v4 .tsme-col-full { grid-column: 1 / -1; margin-bottom: 16px !important; }
#tsme-app-root .tsme-v4 .tsme-col-half { grid-column: span 1; margin-bottom: 16px !important; }
#tsme-app-root .tsme-v4 .nice-select { display: none !important; }

#tsme-app-root .tsme-v4 .m-form-dot {
    position: absolute;
    right: -34px; width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    z-index: 2;
    transition: background .4s, border-color .4s, box-shadow .4s;
    display: flex; align-items: center; justify-content: center;
}
#tsme-app-root .tsme-v4 .m-form-dot.is-filled {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(254,219,50,.18);
}
#tsme-app-root .tsme-v4 .m-form-dot svg {
    opacity: 0; transition: opacity .3s;
    width: 12px; height: 12px;
}
#tsme-app-root .tsme-v4 .m-form-dot.is-filled svg { opacity: 1; }
#tsme-app-root .tsme-v4 .m-form-line {
    position: absolute;
    right: -25px; width: 2px;
    background: var(--border);
    z-index: 1;
    transition: background .4s;
}
#tsme-app-root .tsme-v4 .m-form-line.is-filled {
    background: var(--yellow);
}

#tsme-app-root .tsme-v4 .tsme-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; color: var(--text3);
    margin: 0 0 6px; text-transform: uppercase; letter-spacing: .8px;
    font-family: var(--font);
}

#tsme-app-root .tsme-v4 .tsme-label .tsme-label-icon {
    width: 16px; height: 16px; flex-shrink: 0;
    color: var(--text3); opacity: .7;
}

#tsme-app-root .tsme-v4 select.m-cs-hidden,
#tsme-app-root .tsme-v4 .tsme-select-wrap select.m-cs-hidden,
select.m-cs-hidden {
    display: none;
}

#tsme-app-root .tsme-v4 .nice-select,
#tsme-app-root .nice-select,
.tsme-select-wrap .nice-select {
    display: none;
}
#tsme-app-root .tsme-v4 .m-custom-select {
    position: relative; width: 100%;
}
#tsme-app-root .tsme-v4 .m-cs-display {
    width: 100%; height: 48px; padding: 0 40px 0 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-size: 15px; font-family: var(--font);
    background: #f9f9f9; color: var(--text);
    cursor: pointer;
    display: flex; align-items: center;
    transition: border-color .2s, box-shadow .2s, background .2s;
    position: relative;
}
#tsme-app-root .tsme-v4 .m-cs-display.is-placeholder .m-cs-text { color: #c5c5c5; }
#tsme-app-root .tsme-v4 .m-cs-display:hover { border-color: #ccc; }
#tsme-app-root .tsme-v4 .m-custom-select.is-open .m-cs-display {
    border-color: var(--yellow);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(254,219,50,.18);
}
#tsme-app-root .tsme-v4 .m-cs-arrow {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--text3);
    transition: transform .25s;
    pointer-events: none;
}
#tsme-app-root .tsme-v4 .m-custom-select.is-open .m-cs-arrow {
    transform: translateY(-50%) rotate(180deg);
}
#tsme-app-root .tsme-v4 .m-cs-text {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
#tsme-app-root .tsme-v4 .m-cs-dropdown {
    display: none;
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    z-index: 100; overflow: hidden;
    max-height: 240px; overflow-y: auto;
    animation: m-cs-open .2s ease-out;
}
#tsme-app-root .tsme-v4 .m-custom-select.is-open .m-cs-dropdown { display: block; }
@keyframes m-cs-open {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
#tsme-app-root .tsme-v4 .m-cs-option {
    padding: 12px 16px;
    font-size: 15px; font-family: var(--font);
    color: var(--text); cursor: pointer;
    transition: background .12s;
}
#tsme-app-root .tsme-v4 .m-cs-option:hover { background: #f5f5f5; }
#tsme-app-root .tsme-v4 .m-cs-option.selected {
    background: var(--yellow-soft); font-weight: 600;
}
#tsme-app-root .tsme-v4 .m-cs-option.placeholder { color: #c5c5c5; }
#tsme-app-root .tsme-v4 .m-cs-option + .m-cs-option { border-top: 1px solid #f5f5f5; }

#tsme-app-root .tsme-v4 .m-cs-dropdown::-webkit-scrollbar { width: 6px; }
#tsme-app-root .tsme-v4 .m-cs-dropdown::-webkit-scrollbar-thumb {
    background: #ddd; border-radius: 3px;
}

#tsme-app-root .tsme-v4 input[type="text"],
#tsme-app-root .tsme-v4 input[type="number"],
#tsme-app-root .tsme-v4 input[type="date"],
#tsme-app-root .tsme-v4 input[type="email"],
#tsme-app-root .tsme-v4 input[type="tel"],
#tsme-app-root .tsme-v4 .tsme-input,
#tsme-app-root .tsme-v4 select,
#tsme-app-root .tsme-v4 .tsme-select-wrap select {
    width: 100%; height: 48px; padding: 0 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-size: 15px; font-family: var(--font);
    background: #f9f9f9; color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    line-height: normal;
}
#tsme-app-root .tsme-v4 select,
#tsme-app-root .tsme-v4 .tsme-select-wrap select,
#tsme-app-root .tsme-v4 select.tsme-input {
    cursor: pointer;
    padding-right: 40px;
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}
#tsme-app-root .tsme-v4 .tsme-select-wrap {
    position: relative;
}
#tsme-app-root .tsme-v4 input:focus,
#tsme-app-root .tsme-v4 select:focus,
#tsme-app-root .tsme-v4 .tsme-input:focus {
    border-color: var(--yellow);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(254,219,50,.18);
}
#tsme-app-root .tsme-v4 input::placeholder { color: #c5c5c5; }

#tsme-app-root .tsme-v4 #tsme-validation-msg {
    background: #fef2f2; color: #991b1b;
    border: 1px solid #fecaca; padding: 12px 16px;
    border-radius: 14px; margin: 0 0 14px; font-size: 13px; font-weight: 500;
}

#tsme-app-root .tsme-v4 #tsme-ajax-summary {
    margin: 24px 0 0; padding: 20px 24px;
    background: linear-gradient(135deg, #fffef5, #fff8dc);
    border-radius: 16px; text-align: right;
    border: 1.5px solid rgba(254,219,50,.3);
}
#tsme-app-root .tsme-v4 #tsme-ajax-price {
    font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: -.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#tsme-app-root .tsme-v4 .m-price-placeholder {
    display: block;
    font-size: 13px; font-weight: 400; color: var(--text3); letter-spacing: 0;
    font-family: var(--font); margin-top: 4px;
}
#tsme-app-root .tsme-v4 .tsme-total-label {
    font-size: 11px; color: var(--text3); display: block; margin-top: 2px;
    text-transform: uppercase; letter-spacing: .5px;
}
#tsme-app-root .tsme-v4 .tsme-info-msg {
    background: #eff6ff; color: #1e40af; border: 1px solid #dbeafe;
    padding: 10px 14px; border-radius: 12px;
    font-size: 12px; margin: 0 0 10px; text-align: left;
}
#tsme-app-root .tsme-v4 #tsme-ajax-messages {
    margin: 12px 0 0;
}
#tsme-app-root .tsme-v4 #tsme-ajax-messages:empty { display: none; }

#tsme-app-root .tsme-v4 .tsme-form-footer {
    padding: 20px 28px; border-top: 1px solid #f5f5f5;
    display: flex; gap: 12px;
}

#tsme-app-root .tsme-v4 .m-btn {
    height: 48px; border: none; border-radius: 50px;
    font-size: 13px; font-weight: 700; font-family: var(--font);
    cursor: pointer; display: inline-flex; align-items: center;
    justify-content: center; gap: 6px;
    padding: 0 28px; text-decoration: none; flex: 1;
    white-space: nowrap; line-height: 1;
    transition: all .2s;
}
#tsme-app-root .tsme-v4 .m-btn.tsme-disabled { opacity: .25; cursor: not-allowed; }
#tsme-app-root .tsme-v4 .m-btn-yellow {
    background: var(--yellow); color: var(--dark);
    box-shadow: 0 4px 16px rgba(254,219,50,.35);
}
#tsme-app-root .tsme-v4 .m-btn-yellow:hover:not(.tsme-disabled) {
    background: #fdd410; transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254,219,50,.4);
}
#tsme-app-root .tsme-v4 .m-btn-dark {
    background: var(--dark); color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
#tsme-app-root .tsme-v4 .m-btn-dark:hover:not(.tsme-disabled) {
    background: #222; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
#tsme-app-root .tsme-v4 .m-btn-outline {
    background: var(--white); border: 1.5px solid #e0e0e0; color: var(--text);
}
#tsme-app-root .tsme-v4 .m-btn-outline:hover:not(.tsme-disabled) {
    border-color: var(--dark); color: var(--dark);
}
#tsme-app-root .tsme-v4 .m-btn-ghost {
    background: transparent; border: 1.5px solid #e0e0e0;
    color: var(--text2); font-size: 12px;
}
#tsme-app-root .tsme-v4 .m-btn-ghost:hover { border-color: var(--dark); color: var(--dark); }
#tsme-app-root .tsme-v4 .m-btn-sm { height: 38px; padding: 0 18px; font-size: 11px; }
#tsme-app-root .tsme-v4 .m-btn-full { width: 100%; flex: none; }

#tsme-app-root .tsme-v4 .tsme-btn-primary,
#tsme-app-root .tsme-v4 .btn-primary {
    background: var(--yellow); color: var(--dark); border: none; border-radius: 50px; font-weight: 700;
}
#tsme-app-root .tsme-v4 .tsme-btn-outline,
#tsme-app-root .tsme-v4 .btn-outline {
    background: var(--white); border: 1.5px solid #e0e0e0; color: var(--text); border-radius: 50px;
}

#tsme-app-root .tsme-v4 .tsme-event-date-text {
    padding: 14px 16px; border-radius: 14px;
    font-size: 15px; color: var(--text); background: #fafafa; border: 1.5px solid var(--border);
}
#tsme-app-root .tsme-v4 .tsme-event-comment {
    margin: 8px 0 0; font-size: 13px; color: var(--text3); font-style: italic;
}

#tsme-app-root .tsme-v4 .m-info-slot {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
}

#tsme-success-modal .tsme-modal-overlay,
#tsme-abandon-modal .tsme-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,.4); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99990;
}
#tsme-success-modal .tsme-modal-content,
#tsme-abandon-modal .tsme-modal-content {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: #fff; width: 90%; max-width: 400px;
    padding: 44px 32px 32px; border-radius: 28px;
    text-align: center; box-shadow: 0 25px 60px rgba(0,0,0,.15);
    z-index: 99991;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#tsme-success-modal .tsme-modal-content *,
#tsme-abandon-modal .tsme-modal-content * {
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#tsme-success-modal .tsme-modal-icon,
#tsme-abandon-modal .tsme-modal-icon { margin-bottom: 20px; }
#tsme-success-modal h3, #tsme-abandon-modal h3 { font-size: 22px; font-weight: 700; color: #111; margin: 0 0 8px; }
#tsme-success-modal p, #tsme-abandon-modal p { color: #888; font-size: 14px; margin: 0 0 28px; }
#tsme-success-modal .tsme-modal-actions,
#tsme-abandon-modal .tsme-modal-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; }
#tsme-success-modal .tsme-modal-actions .m-btn,
#tsme-abandon-modal .tsme-modal-actions .m-btn {
    height: 52px; min-height: 52px; border: none; border-radius: 50px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 0 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all .2s; line-height: 1; text-decoration: none;
}
#tsme-success-modal .tsme-modal-actions .m-btn-dark,
#tsme-abandon-modal .tsme-modal-actions .m-btn-dark {
    background: #111; color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
#tsme-success-modal .tsme-modal-actions .m-btn-dark:hover,
#tsme-abandon-modal .tsme-modal-actions .m-btn-dark:hover { background: #222; transform: translateY(-1px); }
#tsme-success-modal .tsme-modal-actions .m-btn-outline,
#tsme-abandon-modal .tsme-modal-actions .m-btn-outline {
    background: #fff; border: 1.5px solid #e0e0e0; color: #1a1a1a;
}
#tsme-success-modal .tsme-modal-actions .m-btn-outline:hover,
#tsme-abandon-modal .tsme-modal-actions .m-btn-outline:hover { border-color: #111; }

#tsme-loading-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,.85); backdrop-filter: blur(4px); z-index: 99999;
}
#tsme-loading-overlay .tsme-spinner {
    position: absolute; top: 50%; left: 50%; margin: -20px 0 0 -20px;
    width: 40px; height: 40px;
    border: 3px solid #eee; border-top-color: #FEDB32;
    border-radius: 50%; animation: m-spin .7s linear infinite;
}
@keyframes m-spin { to { transform: rotate(360deg); } }

#tsme-csv-modal .tsme-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,.4); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99990;
}
#tsme-csv-modal .tsme-csv-modal-content {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: #fff; width: 95%; max-width: 720px;
    padding: 32px; border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    max-height: 90vh; overflow-y: auto;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1a1a1a; line-height: 1.5; z-index: 99991;
}
#tsme-csv-modal .tsme-csv-close {
    position: absolute; top: 16px; right: 16px;
    background: #f5f5f5; border: none; width: 36px; height: 36px;
    border-radius: 50%; font-size: 20px; cursor: pointer; color: #666;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
#tsme-csv-modal .tsme-csv-close:hover { background: #eee; }
#tsme-csv-modal .tsme-csv-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
#tsme-csv-modal .tsme-csv-left h3 { font-size: 18px; font-weight: 700; margin: 0 0 16px; }
#tsme-csv-modal .tsme-csv-dropzone {
    border: 2px dashed #ddd; border-radius: 20px;
    padding: 32px; text-align: center; cursor: pointer;
    transition: border-color .2s, background .2s;
}
#tsme-csv-modal .tsme-csv-dropzone:hover { border-color: #bbb; }
#tsme-csv-modal .tsme-csv-dropzone.dragover { border-color: #FEDB32; background: #fffef5; }
#tsme-csv-modal .tsme-csv-dropzone p { font-size: 13px; color: #999; margin: 8px 0; }
#tsme-csv-modal .tsme-csv-filename { font-size: 12px; color: #999; margin-top: 8px; }
#tsme-csv-modal .tsme-csv-right { font-size: 13px; color: #555; }
#tsme-csv-modal .tsme-csv-right h4 { font-size: 14px; font-weight: 700; margin: 0 0 10px; color: #1a1a1a; }
#tsme-csv-modal .tsme-csv-right p { margin: 0 0 6px; }
#tsme-csv-modal .tsme-csv-right ol { padding-left: 18px; margin: 8px 0; }
#tsme-csv-modal .tsme-csv-right li { margin-bottom: 3px; }
#tsme-csv-modal #tsme-csv-available-objects { background: #f9f9f9; padding: 10px; border-radius: 12px; margin: 10px 0; font-size: 11px; }
#tsme-csv-modal #tsme-csv-summary { padding: 10px; border-radius: 12px; margin: 12px 0 8px; font-weight: 600; font-size: 13px; }
#tsme-csv-modal #tsme-csv-summary.success { background: #f0fdf4; color: #16a34a; }
#tsme-csv-modal #tsme-csv-summary.has-errors { background: #fef9c3; color: #854d0e; }
#tsme-csv-modal #tsme-csv-summary.all-errors { background: #fef2f2; color: #991b1b; }
#tsme-csv-modal #tsme-csv-errors { max-height: 180px; overflow-y: auto; font-size: 12px; }
#tsme-csv-modal .tsme-csv-error-line {
    background: #fef2f2; color: #991b1b; padding: 5px 10px;
    border-radius: 8px; margin-bottom: 4px; border-left: 3px solid #ef4444;
}
#tsme-csv-modal #tsme-csv-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
#tsme-csv-modal .m-btn {
    height: 48px; min-height: 48px; border: none; border-radius: 50px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 0 24px; width: 100%; line-height: 1;
    transition: all .2s; text-decoration: none;
}
#tsme-csv-modal .m-btn-dark { background: #111; color: #fff; }
#tsme-csv-modal .m-btn-outline { background: #fff; border: 1.5px solid #e0e0e0; color: #1a1a1a; }
#tsme-csv-modal .m-btn-sm { height: 38px; padding: 0 16px; font-size: 11px; }

#tsme-app-root .tsme-v4 select option,
#tsme-app-root .tsme-v4 .tsme-select-wrap select option {
    padding: 12px 16px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--white);
    color: var(--text);
    min-height: 40px;
}

#tsme-app-root .tsme-v4 .tsme-woo-messages:empty { display: none; }
#tsme-app-root .tsme-v4 .tsme-woo-messages .row,
#tsme-app-root .tsme-v4 .tsme-woo-messages .col-lg-12,
#tsme-app-root .tsme-v4 .tsme-woo-messages .main-content-area {
    margin: 0; padding: 0; width: 100%; flex: none; max-width: none; min-height: 0;
}
#tsme-app-root .tsme-v4 .woocommerce-notices-wrapper { padding: 0; margin: 0; }

@media (max-width: 1060px) {
    #tsme-app-root .tsme-v4 .m-right { width: 380px; }
}
@media (max-width: 860px) {
    #tsme-app-root .tsme-v4 .m-grid {
        flex-direction: column; padding: 20px 16px 0; gap: 20px;
    }
    #tsme-app-root .tsme-v4 .m-left {
        display: flex; flex-direction: column; gap: 20px;
    }
    #tsme-app-root .tsme-v4 .m-right { width: 100%; position: static; order: 4; }

    #tsme-app-root .tsme-v4 .m-left { order: 1; }
    #tsme-app-root .tsme-v4 .m-steps-card { order: 5; }
    #tsme-app-root .tsme-v4 .m-collapse-card { order: 6; }
}
@media (max-width: 600px) {
    #tsme-app-root .tsme-v4 .m-hero { padding: 28px 20px; }
    #tsme-app-root .tsme-v4 .m-hero h1 { font-size: 24px; }
    #tsme-app-root .tsme-v4 .m-info-row { grid-template-columns: 1fr; }
    #tsme-app-root .tsme-v4 .m-steps { padding: 52px 24px 28px; }
    #tsme-app-root .tsme-v4 .tsme-grid { grid-template-columns: minmax(0,1fr); }
    #tsme-app-root .tsme-v4 .tsme-col-full { grid-column: 1 / -1; }
    #tsme-app-root .tsme-v4 .tsme-form-footer {
        flex-direction: column-reverse; gap: 10px;
    }
    #tsme-app-root .tsme-v4 .tsme-form-footer .m-btn {
        width: 100%; flex: none;
    }
    #tsme-app-root .tsme-v4 input[type="text"],
    #tsme-app-root .tsme-v4 input[type="number"],
    #tsme-app-root .tsme-v4 input[type="date"],
    #tsme-app-root .tsme-v4 input[type="email"],
    #tsme-app-root .tsme-v4 input[type="tel"],
    #tsme-app-root .tsme-v4 select,
    #tsme-app-root .tsme-v4 textarea,
    #tsme-app-root .tsme-v4 .m-cs-display {
        font-size: 16px !important;
    }
    #tsme-csv-modal .tsme-csv-layout { grid-template-columns: 1fr; }
}

.m-sticky-cta {
    display: block;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid #FEDB32;
    box-shadow: 0 -4px 24px rgba(0,0,0,.1);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    z-index: 9990;
    transform: translateY(100%);
    transition: transform .3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.m-sticky-cta.is-visible { transform: translateY(0); }
.m-sticky-cta .m-sticky-cta-inner {
    display: flex; align-items: stretch;
    min-height: 60px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none; -webkit-user-select: none;
}
.m-sticky-cta .m-sticky-left {
    flex: 3; min-width: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 10px 20px;
    font-size: 15px; font-weight: 700; color: #111;
    line-height: 1.3;
}
.m-sticky-cta .m-sticky-btn {
    flex: 2;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #111; color: #FEDB32;
    font-size: 15px; font-weight: 700; letter-spacing: .3px;
    border: none; cursor: pointer;
    text-decoration: none; white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: background .2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.m-sticky-cta .m-sticky-btn:hover { background: #222; }
.m-sticky-cta .m-sticky-btn svg { flex-shrink: 0; }

@keyframes m-skeleton-pulse {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}
#tsme-app-root .tsme-v4 .m-price-skeleton {
    display: inline-block;
    width: 120px; height: 22px;
    background: var(--border);
    border-radius: 8px;
    animation: m-skeleton-pulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes m-dot-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.35); }
    100% { transform: scale(1); }
}
#tsme-app-root .tsme-v4 .m-form-dot.is-pop {
    animation: m-dot-pop .35s ease-out;
}
