/* ============================================================
   Cher's LLC — Promo App
   Design system copied from register.chersllc.com for a 1:1 look.
   ============================================================ */

:root {
    --primary: #5b7fc7;
    --primary-light: #93b4e8;
    --primary-dark: #3b5998;
    --accent: #7ba3d8;
    --success: #22c55e;
    --danger: #ef4444;
    --bg-light: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.95);
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(147, 180, 232, 0.4);
    --input-border: #cbd5e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Global mobile safety: media never overflows, long words wrap, no horizontal page scroll */
html { -webkit-text-size-adjust: 100%; }
img, svg, video { max-width: 100%; height: auto; }
.card, .info-box, p, h1, h2, h3, h4, label, span, td, th, li { overflow-wrap: break-word; word-wrap: break-word; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-50 150 Q200 50 400 200 Q600 350 800 200 Q1000 50 1200 200 Q1400 350 1500 250' fill='none' stroke='%2393b4e8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M-100 350 Q100 250 300 400 Q500 550 700 400 Q900 250 1100 400 Q1300 550 1500 450' fill='none' stroke='%2393b4e8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M0 550 Q200 450 400 600 Q600 750 800 600 Q1000 450 1200 600 Q1400 750 1500 650' fill='none' stroke='%2393b4e8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M-80 750 Q150 650 350 800 Q550 950 750 800 Q950 650 1150 800 Q1350 950 1500 850' fill='none' stroke='%2393b4e8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M100 50 Q350 150 500 50 Q700 -50 900 50 Q1100 150 1300 50 Q1450 -30 1500 30' fill='none' stroke='%2393b4e8' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M-50 500 Q150 400 350 500 Q550 600 750 500 Q950 400 1150 500 Q1350 600 1500 520' fill='none' stroke='%2393b4e8' stroke-width='2' stroke-linecap='round' opacity='0.6'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    color: var(--text);
}

.container { max-width: 700px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }

.header { text-align: center; color: var(--text); padding: 30px 0; }
.header img { height: 60px; margin-bottom: 10px; }
.header h1 {
    font-size: 2rem; font-weight: 600; font-style: italic; margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.header p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 20px; border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(147, 180, 232, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 40px; margin-bottom: 20px;
}

.section-title {
    font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px; opacity: 0.9;
}

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 400; margin-bottom: 8px; color: var(--text); font-size: 14px; }
.form-group label .required { color: var(--danger); }

.form-control {
    width: 100%; padding: 12px 0; border: none;
    border-bottom: 1px solid var(--input-border); border-radius: 0;
    font-size: 15px; font-family: inherit; transition: all 0.3s;
    background: transparent; color: var(--text);
}
.form-control:focus { outline: none; border-bottom-color: var(--primary); box-shadow: none; }
.form-control::placeholder { color: var(--text-muted); }
.form-control.invalid { border-bottom-color: var(--danger); }

select.form-control {
    cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b7fc7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 0.2rem center; background-size: 1em; padding-right: 24px;
}
select.form-control option { background: #ffffff; color: var(--text); }

textarea.form-control {
    resize: vertical; min-height: 80px; border: 1px solid var(--input-border);
    border-radius: 10px; padding: 12px; background: rgba(255, 255, 255, 0.5);
}
textarea.form-control:focus { border-color: var(--primary); }

.row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

.radio-group, .checkbox-group { display: flex; gap: 15px; flex-wrap: wrap; }
.radio-item, .checkbox-item {
    display: flex; align-items: center; gap: 10px; padding: 12px 18px;
    background: rgba(147, 180, 232, 0.12); border-radius: 12px; cursor: pointer;
    border: 1px solid rgba(147, 180, 232, 0.3); transition: all 0.3s;
}
.radio-item:hover, .checkbox-item:hover { background: rgba(147, 180, 232, 0.22); border-color: var(--primary); }
.radio-item input, .checkbox-item input { width: 18px; height: 18px; accent-color: var(--primary); }
.radio-item span, .checkbox-item span { font-size: 14px; font-weight: 400; color: var(--text); }
.radio-item.selected, .checkbox-item.selected { background: rgba(147, 180, 232, 0.22); border-color: var(--primary); }

.sponsor-section {
    background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px; padding: 20px; margin-top: 15px;
}

.file-upload {
    position: relative; border: 2px dashed var(--input-border); border-radius: 12px;
    padding: 30px; text-align: center; transition: all 0.3s; cursor: pointer;
    background: rgba(147, 180, 232, 0.05);
}
.file-upload:hover, .file-upload.drag { border-color: var(--primary); background: rgba(147, 180, 232, 0.12); }
.file-upload input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; }
.file-upload-icon { font-size: 36px; margin-bottom: 10px; }
.file-upload-text { font-size: 14px; color: var(--text-muted); }
.file-name { margin-top: 10px; font-weight: 500; color: var(--success); }

.terms-box {
    background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 12px; padding: 18px; margin: 25px 0;
}
.terms-box label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; color: var(--text); font-size: 14px; }
.terms-box input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--success); }
.terms-box a { color: var(--primary); }

.conditional-field { display: none; margin-top: 10px; }
.conditional-field.show { display: block; }

.btn {
    display: inline-block; padding: 16px 30px; font-size: 15px; font-weight: 500;
    font-family: inherit; border: none; border-radius: 12px; cursor: pointer;
    transition: all 0.3s; text-decoration: none; text-align: center;
}
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; width: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(91, 127, 199, 0.4); }
.btn-primary:disabled { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline { background: transparent; border: 1px solid var(--input-border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #128C7E; box-shadow: 0 0 30px rgba(37, 211, 102, 0.4); }

.alert { padding: 15px 20px; border-radius: 12px; margin-bottom: 20px; }
.alert-danger { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #dc2626; }
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #16a34a; }

.success-icon {
    width: 80px; height: 80px; background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; color: white; font-size: 40px; box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}

.info-box {
    background: rgba(147, 180, 232, 0.1); border: 1px solid rgba(147, 180, 232, 0.25);
    border-radius: 14px; padding: 20px; margin: 25px 0; text-align: left;
}
.info-box h4 { color: var(--primary-dark); margin-bottom: 10px; }
.info-box .detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(147,180,232,0.2); }
.info-box .detail-row:last-child { border-bottom: none; }
.info-box .detail-row .v { font-weight: 600; }

.footer { text-align: center; color: var(--text-muted); padding: 30px 20px; font-size: 12px; }

/* ---- Payment options (from register) ---- */
.payment-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.payment-option {
    border: 2px solid var(--border); border-radius: 12px; padding: 15px; cursor: pointer;
    transition: all 0.3s ease; text-align: center; background: rgba(255, 255, 255, 0.7); position: relative;
}
.payment-option:hover { border-color: var(--primary); background: rgba(147, 180, 232, 0.1); }
.payment-option.selected { border-color: var(--primary); background: rgba(147, 180, 232, 0.15); box-shadow: 0 4px 15px rgba(91, 127, 199, 0.2); }
.payment-option .emoji { font-size: 30px; margin-bottom: 10px; }
.payment-option span.label { font-weight: 600; display: block; color: var(--text); }
#payCard:hover { border-color: #f59e0b; background: rgba(245, 158, 11, 0.08); }
.coming-soon-badge {
    position: absolute; top: 6px; right: 8px; background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
    letter-spacing: 0.5px; display: inline-block; animation: badgePulse 2.5s ease-in-out infinite; line-height: 1.4;
}
@keyframes badgePulse { 0%,100% { opacity: 0.85; transform: scale(1);} 50% { opacity: 1; transform: scale(1.05);} }

.pay-panel { display: none; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.pay-panel.show { display: block; }
.pay-wave { background: #e0e7ff; border: 1px solid #c7d2fe; }
.pay-bank { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); border: 1px solid #fbbf24; }
.pay-card { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); border: 1px solid #fbbf24; }

/* ============ PROMO GALLERY ============ */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 24px; }
.promo-card {
    background: var(--bg-card); backdrop-filter: blur(20px); border-radius: 20px;
    border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(147, 180, 232, 0.15);
    overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(91, 127, 199, 0.25); }
.promo-banner { height: 160px; position: relative; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); display: grid; place-items: center; }
.promo-banner img { width: 100%; height: 100%; object-fit: cover; }
.promo-banner .lang-watermark { font-size: 56px; font-weight: 700; color: rgba(255,255,255,0.22); }
.lang-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.lang-en { background: #dbeafe; color: #1e40af; }
.lang-de { background: #fef3c7; color: #92400e; }
.discount-badge { position: absolute; top: 12px; right: 12px; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.promo-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.promo-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 14px; }
.promo-bullets { list-style: none; margin-bottom: 18px; }
.promo-bullets li { display: flex; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.promo-bullets li::before { content: "✓"; color: var(--primary); font-weight: 700; }
.promo-price { margin: auto 0 16px; }
.promo-price .old { color: var(--text-muted); text-decoration: line-through; font-size: 14px; margin-right: 8px; }
.promo-price .new { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); }

/* ============ ADMIN ============ */
.admin-topbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff; border-radius: 16px; padding: 18px 24px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.admin-topbar .brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.admin-topbar img { height: 36px; background: #fff; border-radius: 8px; padding: 3px; }
.admin-topbar a { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; }
.stat .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.stat .value { font-size: 1.8rem; font-weight: 700; color: var(--primary-dark); margin-top: 4px; }
.tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn { background: none; border: none; border-bottom: 2px solid transparent; padding: 12px 18px; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; margin-bottom: -2px; }
.tab-btn.active { color: var(--primary-dark); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th { text-align: left; padding: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
table.data td { padding: 12px; border-bottom: 1px solid rgba(147,180,232,0.15); }
table.data tr:hover td { background: rgba(147, 180, 232, 0.06); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pill { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pill-paid { background: rgba(34,197,94,0.15); color: #16a34a; }
.pill-pending { background: rgba(245,158,11,0.15); color: #d97706; }
.pill-yes { background: rgba(34,197,94,0.15); color: #16a34a; }
.pill-no { background: rgba(100,116,139,0.12); color: #64748b; }

/* Accommodation request workflow statuses (also applied to the status <select>) */
.pill-new       { background: rgba(245,158,11,0.15); color: #d97706; }
.pill-searching { background: rgba(99,102,241,0.15); color: #4f46e5; }
.pill-matched   { background: rgba(37,99,235,0.15);  color: #2563eb; }
.pill-confirmed { background: rgba(34,197,94,0.15);  color: #16a34a; }
.pill-closed    { background: rgba(100,116,139,0.14); color: #475569; }

.toggle { position: relative; display: inline-block; width: 46px; height: 26px; cursor: pointer; }
.toggle input { display: none; }
.toggle .track { position: absolute; inset: 0; background: #cbd5e1; border-radius: 20px; transition: 0.3s; }
.toggle .thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.toggle input:checked + .track { background: var(--success); }
.toggle input:checked + .track + .thumb { transform: translateX(20px); }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(30,41,59,0.5); backdrop-filter: blur(3px); z-index: 100; padding: 20px; overflow-y: auto; }
.modal-overlay.show { display: flex; align-items: flex-start; justify-content: center; }
.modal { background: #fff; border-radius: 20px; padding: 32px; max-width: 560px; width: 100%; margin: 40px auto; }
.modal h3 { margin-bottom: 20px; color: var(--primary-dark); }

.status-select { padding: 5px 8px; border-radius: 8px; border: 1px solid var(--input-border); font-family: inherit; font-size: 12px; font-weight: 600; cursor: pointer; }

.whatsapp-box { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.3); border-radius: 12px; padding: 18px; margin-top: 16px; }
.whatsapp-box pre { white-space: pre-wrap; font-family: inherit; font-size: 14px; color: var(--text); background: #fff; border-radius: 8px; padding: 14px; margin-top: 12px; }

/* ---- Loading overlay + spinner ---- */
.loading-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
    flex-direction: column; align-items: center; justify-content: center;
}
.loading-overlay.show { display: flex; }
.spinner {
    width: 54px; height: 54px; border: 4px solid rgba(91,127,199,0.25);
    border-top-color: var(--primary); border-radius: 50%; animation: spin 0.9s linear infinite;
}
.loading-text { margin-top: 18px; font-weight: 500; color: var(--primary-dark); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== RESPONSIVE ===================== */

/* Tablets */
@media (max-width: 768px) {
    .header h1 { font-size: 1.6rem; }
    .card { padding: 28px; }
    .modal { padding: 24px; }
    .admin-topbar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 18px; }
    table.data { font-size: 13px; }
    table.data th, table.data td { padding: 10px 8px; }
}

/* Phones */
@media (max-width: 600px) {
    body { padding: 12px; }
    .card { padding: 20px; border-radius: 16px; }
    .container, .container-wide { max-width: 100%; }

    .header { padding: 18px 0; }
    .header img { height: 48px; }
    .header h1 { font-size: 1.4rem; }
    .header p { font-size: 0.9rem; }
    .section-title { font-size: 0.95rem; }

    /* Inputs at 16px stop iOS auto-zoom on focus */
    .form-control, .input, select.form-control, textarea.form-control { font-size: 16px; }
    .form-group { margin-bottom: 20px; }
    .row { gap: 14px; }

    /* Promotions & payments stack */
    .promo-grid { grid-template-columns: 1fr; gap: 18px; }
    .promo-banner { height: 140px; }
    .promo-body { padding: 20px; }
    .payment-options { grid-template-columns: 1fr; gap: 12px; }
    .payment-option { display: flex; align-items: center; gap: 12px; text-align: left; padding: 14px; }
    .payment-option .emoji { font-size: 24px; margin: 0; }

    /* Buttons: keep large tap targets, full width for primary actions */
    .btn { padding: 15px 22px; }
    .btn-whatsapp, .pay-panel .btn { width: 100%; }

    /* Admin */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat { padding: 14px; }
    .stat .value { font-size: 1.45rem; }
    .tabs { gap: 2px; }
    .tab-btn { padding: 10px 12px; font-size: 13px; }
    table.data { font-size: 12.5px; }
    table.data th, table.data td { padding: 9px 7px; }

    /* Modals fill the screen comfortably */
    .modal-overlay { padding: 10px; }
    .modal { padding: 18px; margin: 14px auto; border-radius: 16px; }

    .info-box { padding: 16px; margin: 18px 0; }
    .footer { padding: 22px 12px; }
}

/* Small phones */
@media (max-width: 380px) {
    .header h1 { font-size: 1.25rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .card { padding: 16px; }
    .promo-price .new { font-size: 1.4rem; }
}

/* ===== Promo registration deadline / countdown ===== */
.promo-deadline { margin: 16px 0; border-radius: 16px; }
.promo-deadline.live {
    display: flex; flex-direction: column; gap: 12px; align-items: center;
    padding: 18px 14px 16px; text-align: center;
    background: linear-gradient(150deg, #eef3fd 0%, #e4ecfb 100%);
    border: 1px solid rgba(91,127,199,0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
/* Heading row with a soft pulsing "live" dot */
.promo-deadline .cd-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--primary-dark);
}
.promo-deadline .cd-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
    box-shadow: 0 0 0 0 rgba(91,127,199,0.55); animation: cd-pulse 1.6s infinite;
}
@keyframes cd-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(91,127,199,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(91,127,199,0); }
    100% { box-shadow: 0 0 0 0 rgba(91,127,199,0); }
}
/* The four time blocks */
.promo-deadline .cd-timer { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.promo-deadline .cd-seg {
    position: relative; display: inline-flex; flex-direction: column; align-items: center;
    min-width: 56px; padding: 11px 8px 9px; border-radius: 13px; line-height: 1;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(59,89,152,0.30), inset 0 1px 0 rgba(255,255,255,0.22);
}
.promo-deadline .cd-seg b {
    font-size: 1.55rem; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.promo-deadline .cd-seg i {
    font-size: 9.5px; font-style: normal; font-weight: 600; letter-spacing: .07em;
    text-transform: uppercase; opacity: .82; margin-top: 6px;
}
.promo-deadline .cd-date {
    font-size: 12.5px; color: var(--text-muted); padding-top: 2px;
    border-top: 1px solid rgba(91,127,199,0.15); width: 100%; margin-top: 2px; padding-top: 10px;
}
.promo-deadline.ended {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 16px; text-align: center; font-weight: 600; font-size: 13.5px;
    background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.28);
    color: var(--danger); border-radius: 14px;
}

/* Disabled "claim" control for ended promos */
.btn-disabled, a.btn-disabled {
    background: #e2e8f0 !important; color: #94a3b8 !important; cursor: not-allowed;
    box-shadow: none !important; transform: none !important; text-align: center;
    display: inline-block; pointer-events: none;
}

@media (max-width: 380px) {
    .promo-deadline .cd-seg { min-width: 50px; padding: 9px 6px 8px; }
    .promo-deadline .cd-seg b { font-size: 1.35rem; }
}

/* ============ ACCOMMODATION LANDING ============ */
.how-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 18px;
}
.how-step {
    background: rgba(147, 180, 232, 0.08); border: 1px solid var(--border);
    border-radius: 16px; padding: 22px 18px; text-align: center;
}
.how-step .how-num {
    width: 40px; height: 40px; margin: 0 auto 12px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff; font-weight: 700; display: grid; place-items: center; font-size: 1.1rem;
}
.how-step h4 { color: var(--primary-dark); font-size: 1rem; margin-bottom: 6px; }
.how-step p { color: var(--text-muted); font-size: 13.5px; }

.type-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); gap: 14px;
}
.type-card {
    display: flex; align-items: center; gap: 14px; padding: 16px 18px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
    transition: all 0.3s;
}
.type-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,127,199,0.16); }
.type-card .type-icon { font-size: 28px; line-height: 1; }
.type-card .type-label { font-size: 14px; font-weight: 500; color: var(--text); }

/* ============ LEGAL / SERVICE AGREEMENT ============ */
.legal h3 { color: var(--primary-dark); font-size: 1.05rem; margin: 22px 0 8px; }
.legal p { color: var(--text); font-size: 14px; line-height: 1.65; margin-bottom: 10px; }
.legal ul { margin: 6px 0 12px; padding-left: 20px; }
.legal ul li { color: var(--text); font-size: 14px; line-height: 1.6; margin-bottom: 7px; }
.legal ul ul { margin-top: 6px; }
.legal a { color: var(--primary); }
