/* ================================================================
   Tour Cards (Slides) v2 — Frontend CSS
   Dark card theme. Portrait 4:5 slideshow. Booking popup.
   All classes prefixed bmts2- (cards) and tcsp2- (popup)
   ================================================================ */

/* ── CSS Variables from PHP (injected via footer_config) ── */
:root { --bmts2-pri: #f97316; }

.bmts2-wrap,
.bmts2-wrap * { box-sizing: border-box; }
.bmts2-wrap { width: 100%; font-family: inherit; }

/* ────────────────────────────────────────────────────────────
   GRID
──────────────────────────────────────────────────────────── */
.bmts2-grid { display: grid; gap: 26px; }
.bmts2-cols-1 { grid-template-columns: 1fr; }
.bmts2-cols-2 { grid-template-columns: repeat(2,1fr); }
.bmts2-cols-3 { grid-template-columns: repeat(3,1fr); }
.bmts2-cols-4 { grid-template-columns: repeat(4,1fr); }

@media (max-width: 900px) {
    .bmts2-cols-3,
    .bmts2-cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
    .bmts2-cols-2,
    .bmts2-cols-3,
    .bmts2-cols-4 { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────
   CARD
──────────────────────────────────────────────────────────── */
.bmts2-card {
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
    transition: transform .22s ease, box-shadow .22s ease;
    position: relative;
}
.bmts2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,.65);
}

/* ────────────────────────────────────────────────────────────
   SLIDESHOW — 4:5 portrait ratio
──────────────────────────────────────────────────────────── */
.bmts2-slider {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 ratio */
    background: #111;
    overflow: hidden;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
}
.bmts2-nophoto { background: linear-gradient(145deg,#1a1a2e,#2a1a2e); }

.bmts2-track {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
}
.bmts2-slide {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0d0d0d;
    opacity: 0;
    transition: opacity .42s ease;
}
.bmts2-slide.is-active { opacity: 1; z-index: 1; }
.bmts2-nophoto-slide   { background: linear-gradient(145deg,#1a1a2e,#2a1a2e); opacity: 1; }

.bmts2-grad {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.72) 100%);
}

/* ── Badge ── */
.bmts2-badge {
    position: absolute; top: 10px; left: 10px; z-index: 5;
    font-size: 10px; font-weight: 800; letter-spacing: .7px;
    text-transform: uppercase; padding: 4px 11px; border-radius: 20px; line-height: 1.4;
}
.bmts2-badge-or { background: #F5A623; color: #0F0F0F; }
.bmts2-badge-re { background: #DC2626; color: #fff; }
.bmts2-badge-gr { background: #059669; color: #fff; }
.bmts2-badge-tl { background: #0D9488; color: #fff; }
.bmts2-badge-bl { background: #2563EB; color: #fff; }
.bmts2-badge-dk { background: #0F0F0F; color: #F5A623; border: 1px solid #F5A623; }

/* ── Ribbon ── */
.bmts2-ribbon {
    position: absolute; top: 0; right: 0; z-index: 5;
    width: 90px; height: 90px; overflow: hidden; pointer-events: none;
}
.bmts2-ribbon span {
    position: absolute; display: block; width: 125px;
    background: var(--rb, #1A1A1A); color: var(--rt, #F5A623);
    font-size: 9px; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; text-align: center; line-height: 22px;
    top: 21px; right: -32px; transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

/* ── Arrows ── */
.bmts2-arr {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,.62); border: 1.5px solid rgba(255,255,255,.22);
    color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0;
    transition: background .16s, opacity .18s;
    opacity: 0; pointer-events: none;
    backdrop-filter: blur(4px);
}
.bmts2-arr-l { left: 10px; }
.bmts2-arr-r { right: 10px; }
.bmts2-card:hover .bmts2-arr { opacity: 1; pointer-events: all; }
@media (hover: none) { .bmts2-arr { opacity: .8 !important; pointer-events: all !important; } }

/* ── Dots ── */
.bmts2-dots {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%); z-index: 5;
    display: flex; gap: 5px; align-items: center;
}
.bmts2-dot {
    width: 7px; height: 7px; border-radius: 4px;
    background: rgba(255,255,255,.38); border: none; padding: 0;
    cursor: pointer; transition: background .2s, width .2s;
}
.bmts2-dot.is-active { background: var(--bmts2-pri); width: 20px; }

/* ── Counter ── */
.bmts2-ctr {
    position: absolute; top: 10px; right: 10px; z-index: 5;
    background: rgba(0,0,0,.62); backdrop-filter: blur(4px);
    color: rgba(255,255,255,.88); font-size: 11px; font-weight: 700;
    padding: 3px 9px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.14);
}
.bmts2-curidx { color: var(--bmts2-pri); }

/* ── Duration / Date chips on card ── */
.bmts2-chips {
    position: absolute; left: 10px; z-index: 5;
    display: flex; gap: 6px; flex-wrap: wrap;
    bottom: 10px;
}
.bmts2-slider:has(.bmts2-dots) .bmts2-chips { bottom: 36px; }
.bmts2-chip {
    background: rgba(0,0,0,.72); backdrop-filter: blur(5px);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.14);
    display: flex; align-items: center; gap: 4px;
}
.bmts2-chip-hl { background: var(--bmts2-pri); color: #000; border-color: transparent; }
.bmts2-chipdot { width: 5px; height: 5px; border-radius: 50%; background: var(--bmts2-pri); flex-shrink: 0; }
.bmts2-chip-hl .bmts2-chipdot { background: #000; }

/* ────────────────────────────────────────────────────────────
   CARD INFO
──────────────────────────────────────────────────────────── */
.bmts2-info {
    padding: 16px 18px 18px;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1; background: #1e1e1e;
}
.bmts2-tagline {
    font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--bmts2-pri); font-weight: 700; margin: 0;
}
.bmts2-title {
    font-size: 22px; font-weight: 800; color: #f4f4f4;
    line-height: 1.15; margin: 0;
}
.bmts2-desc { font-size: 13px; color: #999; line-height: 1.6; margin: 0; }

/* ── Highlights ── */
.bmts2-hl-label {
    font-size: 9px !important; font-weight: 800 !important; color: #666 !important;
    text-transform: uppercase !important; letter-spacing: .8px !important;
    display: block !important; margin-bottom: 5px !important;
}
.bmts2-hl-list {
    list-style: none !important; margin: 0 !important; padding: 0 !important;
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 5px 14px !important;
}
.bmts2-hl-list li {
    display: flex !important; align-items: flex-start !important; gap: 6px !important;
    font-size: 13px !important; font-weight: 500 !important; color: #e0e0e0 !important;
    list-style: none !important; padding: 0 !important; margin: 0 !important;
}
.bmts2-hl-list li svg { flex-shrink: 0 !important; margin-top: 2px !important; stroke: var(--bmts2-pri) !important; }

/* ── Hotels ── */
.bmts2-hotels { border-top: 1px dashed rgba(255,255,255,.1); padding-top: 8px; }
.bmts2-hotels-lbl {
    font-size: 9px !important; font-weight: 800 !important; color: #666 !important;
    text-transform: uppercase !important; letter-spacing: .8px !important;
    display: block !important; margin-bottom: 5px !important;
}
.bmts2-hotels ul {
    list-style: none !important; margin: 0 !important; padding: 0 !important;
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 3px 10px !important;
}
.bmts2-hotels ul li {
    display: flex !important; align-items: center !important; gap: 5px !important;
    font-size: 12px !important; font-weight: 600 !important; color: #bbb !important;
    list-style: none !important; padding: 0 !important; margin: 0 !important;
}
.bmts2-hdot { width: 5px; height: 5px; border-radius: 50%; background: var(--bmts2-pri); flex-shrink: 0; }

/* ── Price Box ── */
.bmts2-price-box {
    background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; padding: 11px 13px;
}
.bmts2-pfrom-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 9px; }
.bmts2-pfrom-lbl { font-size: 10px; color: #777; text-transform: uppercase; letter-spacing: .7px; font-weight: 700; }
.bmts2-pfrom-num { font-size: 24px; font-weight: 900; color: var(--bmts2-pri); line-height: 1; }
.bmts2-tbl-wrap  { overflow-x: auto; }
.bmts2-tbl { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 240px; }
.bmts2-tbl thead tr { background: #111; }
.bmts2-tbl thead th {
    color: #ccc; padding: 7px 9px; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px; text-align: left; white-space: nowrap;
}
.bmts2-tbl tbody td { padding: 7px 9px; border-bottom: 1px solid rgba(255,255,255,.05); color: #ddd; font-size: 12px; }
.bmts2-tbl tbody tr:last-child td { border-bottom: none; }
.bmts2-tbl tbody tr:hover td { background: rgba(255,255,255,.03); }
.bmts2-pkg-n { font-weight: 700; color: #f4f4f4; }
.bmts2-tip {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    background: rgba(255,255,255,.12); cursor: help; margin-left: 3px;
    vertical-align: middle;
}
.bmts2-na { color: #444; }

/* ── Footnotes ── */
.bmts2-footnotes {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    padding: 8px 0 0;
    border-top: 1px dashed rgba(255,255,255,.08);
    font-style: italic;
}

/* ── Standalone [bmts2_book] button ── */
.bmts2-book-wrap { display: inline-block; }
.bmts2-standalone-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 32px !important;
    background: var(--bmts2-pri) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    transition: filter .15s, transform .12s !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.bmts2-standalone-btn:hover { filter: brightness(1.1) !important; }
.bmts2-standalone-btn:active { transform: scale(.97) !important; }

/* ── Buttons ── */
.bmts2-btns { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
.bmts2-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 18px; border-radius: 50px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: background .15s, color .15s, border-color .15s;
    font-family: inherit; text-decoration: none; line-height: 1; white-space: nowrap;
    border: none;
}
.bmts2-btn-ol {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.25) !important;
    color: rgba(255,255,255,.75);
    flex: 1;
}
.bmts2-btn-ol:hover { border-color: var(--bmts2-pri) !important; color: var(--bmts2-pri); }
.bmts2-btn-pk {
    background: var(--bmts2-pri);
    color: #000;
}
.bmts2-btn-pk:hover { filter: brightness(1.1); }


/* ════════════════════════════════════════════════════════════
   BOOKING POPUP
   All classes prefixed tcsp2- to avoid any conflicts
════════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.tcsp2-overlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    background: rgba(0,0,0,.82) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}
.tcsp2-overlay.tcsp2-open {
    display: flex !important;
}

/* ── Modal box ── */
.tcsp2-modal {
    background: #1a1a1a;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.85);
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    animation: tcsp2SlideIn .24s cubic-bezier(.34,1.4,.64,1);
    position: relative;
}
.tcsp2-modal::-webkit-scrollbar { width: 4px; }
.tcsp2-modal::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

@keyframes tcsp2SlideIn {
    from { opacity: 0; transform: translateY(28px) scale(.96); }
    to   { opacity: 1; transform: none; }
}
@keyframes tcsp2Shake {
    0%,100% { transform: translateX(0); }
    20%     { transform: translateX(-9px); }
    40%     { transform: translateX(9px); }
    60%     { transform: translateX(-6px); }
    80%     { transform: translateX(6px); }
}
.tcsp2-modal.tcsp2-shake { animation: tcsp2Shake .28s ease; }

/* ── Header ── */
.tcsp2-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: sticky;
    top: 0;
    z-index: 10;
}
.tcsp2-header-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    flex-shrink: 0;
    background: var(--bmts2-pri) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
}
.tcsp2-header-icon svg {
    width: 24px !important;
    height: 24px !important;
}
.tcsp2-header-text { flex: 1; min-width: 0; }
.tcsp2-header-title {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.1;
}
.tcsp2-header-tour {
    font-size: 14px;
    font-weight: 700;
    color: var(--bmts2-pri);
    margin: 0 0 2px;
    line-height: 1.3;
}
.tcsp2-header-meta {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* ── FIX #6: Close button — plain X character, no SVG ── */
.tcsp2-close {
    flex-shrink: 0;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255,255,255,.65) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    font-family: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: background .15s, color .15s;
}
.tcsp2-close:hover {
    background: rgba(255,255,255,.22) !important;
    color: #fff !important;
}

/* ── Summary chips ── */
.tcsp2-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 12px 20px;
    background: #141414;
    border-bottom: 1px solid rgba(255,255,255,.06);
    min-height: 46px;
    align-items: center;
}
.tcsp2-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    white-space: nowrap;
}
.tcsp2-chip-price {
    background: var(--bmts2-pri);
    color: #000;
    font-weight: 800;
}

/* ── Sections (Accommodation / Sharing) ── */
.tcsp2-section {
    padding: 14px 20px 4px;
}
.tcsp2-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin: 0 0 10px;
}

/* ── Pills ── */
.tcsp2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tcsp2-pill {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.22);
    background: transparent;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s, background .15s, color .15s;
    line-height: 1;
    white-space: nowrap;
}
.tcsp2-pill:hover {
    border-color: var(--bmts2-pri);
    color: var(--bmts2-pri);
}
.tcsp2-pill.tcsp2-pill-active {
    background: var(--bmts2-pri) !important;
    border-color: var(--bmts2-pri) !important;
    color: #000 !important;
    font-weight: 800 !important;
}

/* ── Total price bar ── */
.tcsp2-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 20px;
    padding: 14px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
}
.tcsp2-price-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.tcsp2-price-value {
    font-size: 26px;
    font-weight: 900;
    color: var(--bmts2-pri);
    line-height: 1;
}

/* ── Divider ── */
.tcsp2-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}
.tcsp2-divider::before,
.tcsp2-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.1);
}

/* ── Form fields grid ── */
.tcsp2-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    padding: 0 20px;
}
.tcsp2-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* FIX #1 — full-width field spans both columns */
.tcsp2-field-full { grid-column: 1 / -1; }

.tcsp2-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    line-height: 1;
}
.tcsp2-req {
    color: var(--bmts2-pri);
    margin-left: 2px;
}

/* ── Inputs — explicit dark bg, full white text ── */
.tcsp2-input {
    background: #262626 !important;
    border: 1.5px solid rgba(255,255,255,.14) !important;
    border-radius: 8px !important;
    padding: 11px 13px !important;
    color: #f0f0f0 !important;
    font-size: 13px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: border-color .15s, background .15s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    line-height: 1.3 !important;
    display: block !important;
}
.tcsp2-input:focus {
    border-color: var(--bmts2-pri) !important;
    background: #2e2e2e !important;
    box-shadow: 0 0 0 3px rgba(249,115,22,.12) !important;
}
.tcsp2-input::placeholder { color: rgba(255,255,255,.28) !important; }
.tcsp2-input.tcsp2-err    { border-color: #ef4444 !important; background: #2a1414 !important; }
.tcsp2-input.tcsp2-err:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.18) !important; }

.tcsp2-textarea { min-height: 88px !important; resize: vertical !important; }

.tcsp2-select-wrap { position: relative; display: block; }
.tcsp2-select { padding-right: 34px !important; cursor: pointer !important; }
.tcsp2-select-chevron {
    position: absolute; right: 11px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255,255,255,.4);
    z-index: 1;
}
/* Select option text — white on dark */
.tcsp2-select option,
.tcsp2-modal select option {
    background: #1e1e1e !important;
    color: #ffffff !important;
}
.tcsp2-modal select {
    color: #f0f0f0 !important;
}

/* ── T&C ── */
.tcsp2-tnc { padding: 12px 20px 4px; }
.tcsp2-tnc-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
    user-select: none;
}
.tcsp2-tnc-cb {
    width: 16px; height: 16px; min-width: 16px;
    margin-top: 2px; cursor: pointer;
    accent-color: var(--bmts2-pri);
}
.tcsp2-tnc-row a { color: var(--bmts2-pri) !important; font-weight: 700; text-decoration: underline; }

/* ── Footer ── */
.tcsp2-footer { padding: 14px 20px 22px; }

.tcsp2-msg {
    display: none;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.tcsp2-msg.tcsp2-ok  { display:block; background:rgba(34,197,94,.14);  color:#4ade80; border:1px solid rgba(34,197,94,.28); }
.tcsp2-msg.tcsp2-err { display:block; background:rgba(239,68,68,.14);   color:#f87171; border:1px solid rgba(239,68,68,.28); }

.tcsp2-actions { display: flex; gap: 10px; }

.tcsp2-btn-cancel {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: rgba(255,255,255,.7);
    font-family: inherit;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    text-align: center;
}
.tcsp2-btn-cancel:hover { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.3); }

.tcsp2-btn-wa {
    flex: 1;
    padding: 14px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: inherit;
    letter-spacing: .3px;
    transition: background .15s, transform .1s;
    white-space: nowrap;
}
.tcsp2-btn-wa:hover   { background: #1dbd57; }
.tcsp2-btn-wa:active  { transform: scale(.98); }
.tcsp2-btn-wa:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ── Responsive ── */
@media (max-width: 480px) {
    .tcsp2-overlay { align-items: flex-end; padding: 0; }
    .tcsp2-modal {
        border-radius: 16px 16px 0 0;
        max-height: 96vh;
        max-width: 100%;
    }
    .tcsp2-fields { grid-template-columns: 1fr; }
    .tcsp2-field-full { grid-column: 1; }
    .tcsp2-actions { flex-direction: column; }
    .tcsp2-btn-cancel { flex: none; }
    .tcsp2-header-title { font-size: 15px; letter-spacing: 1.2px; }
}
