/* ============================================================
   TREK PAGES — Archive + Single
   ============================================================ */

:root {
    --trek-accent:   #E91E63;
    --trek-dark:     #1a1a2e;
    --trek-card-bg:  #fff;
    --trek-shadow:   0 2px 12px rgba(0,0,0,0.08);
    --trek-radius:   14px;
}

/* ── Shared ─────────────────────────────────────────────────── */
.trek-archive,
.trek-page { max-width: 100%; overflow-x: hidden; }


/* ============================================================
   ARCHIVE — Hero with particles
   ============================================================ */

.trek-hero {
    background: #fff;
    padding: 52px 40px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.trek-hero .particles-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.trek-hero-inner {
    position: relative;
    z-index: 1;
}
.trek-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--trek-accent);
    background: rgba(233,30,99,0.08);
    border: 1px solid rgba(233,30,99,0.2);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.trek-hero-title {
    font-size: clamp(26px, 5vw, 42px) !important;
    font-weight: 800 !important;
    color: #000 !important;
    margin: 0 0 10px !important;
    line-height: 1.15 !important;
}
.trek-hero-sub {
    font-size: 15px;
    color: #555;
    margin: 0 auto !important;
    max-width: 520px;
    line-height: 1.6;
}


/* ── Category filter bar ─────────────────────────────────────── */
.trek-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 32px 0;
    max-width: 1280px;
    margin: 0 auto;
}
.trek-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 24px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s, transform .15s, box-shadow .18s;
    white-space: nowrap;
    font-family: inherit;
}
.trek-filter-btn:hover {
    border-color: var(--trek-accent);
    color: var(--trek-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233,30,99,0.12);
}
.trek-filter-btn.active {
    background: var(--trek-accent);
    border-color: var(--trek-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(233,30,99,0.3);
}
.trek-filter-count {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}
.trek-filter-btn.active .trek-filter-count { background: rgba(255,255,255,0.3); }

/* ── No results state ────────────────────────────────────────── */
.trek-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ── Archive grid ────────────────────────────────────────────── */
.trek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 36px 32px 80px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Archive card ────────────────────────────────────────────── */
.trek-card {
    background: var(--trek-card-bg);
    border-radius: var(--trek-radius);
    overflow: hidden;
    box-shadow: var(--trek-shadow);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
}
.trek-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}
.trek-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f3f3;
    text-decoration: none;
}
.trek-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.trek-card-img-wrap:hover .trek-card-img { transform: scale(1.05); }
.trek-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #f3f3f3;
}
.trek-cat-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--trek-accent);
    color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 10px;
}
.trek-days-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}
.trek-card-body {
    padding: 16px 18px 18px;
    display: flex; flex-direction: column; flex: 1;
}
.trek-card-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    line-height: 1.35 !important;
}
.trek-card-title a { color: var(--trek-dark); text-decoration: none; transition: color .15s; }
.trek-card-title a:hover { color: var(--trek-accent); }

.trek-card-meta {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.trek-meta-chip {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; color: #555;
    background: #f5f5f5;
    padding: 4px 8px; border-radius: 8px;
}
.trek-card-footer { margin-top: auto; }
.trek-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.trek-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600;
    padding: 7px 14px; border-radius: 8px;
    text-decoration: none; transition: opacity .15s;
}
.trek-btn:hover { opacity: .85; }
.trek-btn-call { background: var(--trek-accent); color: #fff; }
.trek-btn-more { background: #f0f0f0; color: var(--trek-dark); }

.trek-empty {
    text-align: center; padding: 80px 20px; color: #888;
}


/* ============================================================
   SINGLE TREK — Hero
   ============================================================ */

.trek-single-hero {
    position: relative;
    height: clamp(320px, 50vw, 520px);
    overflow: hidden;
    background: var(--trek-dark);
}
.trek-single-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .7;
}
.trek-single-hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E91E63, #F44336);
    opacity: .5;
}
.trek-single-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
    display: flex; align-items: flex-end;
    z-index: 1;
}
.trek-single-hero-inner {
    padding: 32px 40px;
    width: 100%; max-width: 900px;
}
.trek-back-link {
    display: inline-block; color: rgba(255,255,255,.75);
    font-size: 13px; text-decoration: none; margin-bottom: 10px;
    transition: color .15s;
}
.trek-back-link:hover { color: #fff; }
.trek-single-hero-title {
    font-size: clamp(22px, 4vw, 36px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 14px !important;
    line-height: 1.2 !important;
}
.trek-hero-chips {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 16px;
}
.trek-hero-chip {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.15);
    color: #fff; font-size: 13px; font-weight: 500;
    padding: 5px 12px; border-radius: 20px;
    backdrop-filter: blur(6px);
}
.trek-hero-chip svg { stroke: #fff; }
.trek-hero-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--trek-accent); color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 10px 22px; border-radius: 24px;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(233,30,99,0.4);
}
.trek-hero-cta:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
button.trek-hero-cta,
button.trek-cta-btn { border: none; cursor: pointer; font-family: inherit; }


/* ── Countdown ───────────────────────────────────────────────── */
.trek-countdown-wrap {
    display: flex; align-items: flex-start; gap: 4px;
}
.trek-flip-unit {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 6px 10px; min-width: 52px;
    border: 1px solid rgba(255,255,255,.25);
}
.tf-num {
    display: block;
    font-size: 22px; font-weight: 800; color: #fff;
    line-height: 1; font-variant-numeric: tabular-nums;
    transform-origin: center center;
}
.tf-lbl {
    font-size: 9px; font-weight: 600; color: rgba(255,255,255,.7);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 2px;
}
.tf-sep {
    font-size: 22px; font-weight: 800; color: rgba(255,255,255,.6);
    padding-top: 6px; align-self: flex-start;
}
.trek-started {
    font-size: 14px; font-weight: 700; color: var(--trek-accent);
    background: rgba(255,255,255,.15);
    padding: 8px 18px; border-radius: 20px;
    backdrop-filter: blur(6px);
}


/* ============================================================
   SINGLE TREK — Content grid
   ============================================================ */

.trek-content { padding: 36px 32px 80px; }
.trek-content-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 280px;
    grid-template-areas: "main sidebar";
    gap: 32px;
    align-items: start;
}
.trek-main  { grid-area: main;    min-width: 0; }
.trek-sidebar { grid-area: sidebar; }

/* Sticky info card */
.trek-info-card {
    background: #fff;
    border-radius: var(--trek-radius);
    box-shadow: var(--trek-shadow);
    padding: 22px 20px;
    position: sticky; top: 80px;
}

.trek-ie-card { margin-top: 14px; position: static; }
.trek-info-heading {
    font-size: 15px !important; font-weight: 700 !important;
    margin: 0 0 14px !important; color: var(--trek-dark) !important;
    padding-bottom: 10px; border-bottom: 1px solid #f0f0f0;
}
.trek-info-row {
    display: flex; justify-content: space-between; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid #f7f7f7;
    font-size: 13px;
}
.tir-label { color: #888; font-weight: 500; }
.tir-value { color: var(--trek-dark); font-weight: 600; text-align: right; }
.trek-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; margin-top: 18px;
    background: var(--trek-accent); color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 12px; border-radius: 10px;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(233,30,99,0.3);
}
.trek-cta-btn:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.trek-cta-note { text-align: center; font-size: 11px; color: #888; margin-top: 8px; }

/* ── Sections ────────────────────────────────────────────────── */
.trek-section {
    background: #fff; border-radius: var(--trek-radius);
    box-shadow: var(--trek-shadow);
    padding: 24px 22px; margin-bottom: 22px;
}
.trek-section-title {
    font-size: 17px !important; font-weight: 700 !important;
    color: var(--trek-dark) !important; margin: 0 0 18px !important;
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 12px; border-bottom: 2px solid rgba(233,30,99,0.12);
}
.trek-section-icon { color: var(--trek-accent); display: flex; }
.trek-description-text { font-size: 15px; line-height: 1.75; color: #444; }
.trek-package-details { font-size: 14px; line-height: 1.7; color: #444; }
.trek-package-details h2,.trek-package-details h3 { color: var(--trek-dark); font-size: 15px; margin: 12px 0 6px; }
.trek-package-details ul,.trek-package-details ol { padding-left: 20px; }
.trek-package-details li { margin-bottom: 4px; }

/* ── Route journey ───────────────────────────────────────────── */
.trek-route-wrap { overflow-x: auto; padding-bottom: 4px; }
.trek-route-list {
    list-style: none; margin: 0; padding: 16px 0 8px;
    display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.trek-route-stop {
    display: flex; align-items: center;
    opacity: 0; /* JS animates in */
}
.trs-node { flex-shrink: 0; display: flex; }
.trs-label {
    font-size: 13px; font-weight: 600; color: var(--trek-dark);
    white-space: nowrap; margin: 0 6px;
}
.trs-line {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--trek-accent), rgba(233,30,99,0.3));
    border-radius: 2px;
    transform-origin: left center; /* JS animates scaleX */
    flex-shrink: 0;
}

/* ── Activities list ─────────────────────────────────────────── */
.trek-activities-list {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}
.trek-activity-item {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px; color: #444; line-height: 1.5;
    opacity: 0; /* JS animates in */
}
.trek-activity-item::before {
    content: "";
    display: block; flex-shrink: 0;
    width: 7px; height: 7px; margin-top: 5px;
    background: var(--trek-accent); border-radius: 50%;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.trek-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.trek-gallery-item {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; border-radius: 10px;
    cursor: pointer;
    transition: transform .25s ease;
    opacity: 0; /* JS animates in */
}
.trek-gallery-item:hover { transform: scale(1.03); }

/* ── Lightbox ────────────────────────────────────────────────── */
.trek-lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center; justify-content: center;
    opacity: 0;
}
.trek-lightbox img {
    max-width: 90vw; max-height: 88vh;
    border-radius: 8px; object-fit: contain;
}
.trek-lb-close {
    position: absolute; top: 20px; right: 24px;
    color: #fff; font-size: 36px; cursor: pointer;
    line-height: 1; opacity: .8; transition: opacity .15s;
}
.trek-lb-close:hover { opacity: 1; }

/* ── Mobile CTA ──────────────────────────────────────────────── */
.trek-mobile-cta { display: none; margin-top: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .trek-content-inner {
        grid-template-columns: 1fr;
        grid-template-areas: "sidebar" "main";
    }
    .trek-info-card { position: static; }
    .trek-mobile-cta { display: block; }
}
@media (max-width: 768px) {
    .trek-hero { padding: 36px 20px 32px; }
    .trek-filter-bar { padding: 16px 16px 0; gap: 6px; }
    .trek-filter-btn { padding: 7px 14px; font-size: 12px; }
    .trek-grid { padding: 24px 16px 80px; gap: 16px; }
    .trek-content { padding: 20px 16px 80px; }
    .trek-single-hero-inner { padding: 24px 20px; }
    .trek-section { padding: 18px 16px; }
    .trek-activities-list { grid-template-columns: 1fr; }
    .trek-route-list { flex-wrap: nowrap; }
}

/* ============================================================
   INCLUSIONS / EXCLUSIONS / CANCELLATION / HOW TO BOOK (tw-*)
   Shared between single-trek and single-trek_event
   ============================================================ */

/* Inclusions + Exclusions side-by-side grid */
.tw-ie-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 !important;
    overflow: hidden;
}
.tw-ie-block {
    padding: 24px 22px;
}
.tw-ie-block + .tw-ie-block {
    border-left: 1px solid rgba(0,0,0,0.07);
}

/* Generic list (inclusions / exclusions / cancellation) */
.tw-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.tw-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    text-transform: none !important;
}
.tw-list li svg { flex-shrink: 0; margin-top: 2px; }

/* Sidebar booking buttons */
.tw-sidebar-upi,
.tw-sidebar-pdf {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    text-transform: none !important;
}
.tw-sidebar-upi {
    background: linear-gradient(45deg, #F44336, #E91E63);
    color: #fff;
}
.tw-sidebar-pdf {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #e0e0e0;
}
.tw-sidebar-upi:hover,
.tw-sidebar-pdf:hover { opacity: 0.85; color: inherit; }

/* How to Book section */
.tw-book-body {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.tw-book-qr {
    flex-shrink: 0;
    text-align: center;
}
.tw-book-qr-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase !important;
    color: #888;
    margin: 0 0 8px;
}
.tw-qr-code-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: block;
}
.tw-book-actions {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tw-book-steps-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: none !important;
}
.tw-book-steps {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tw-book-steps li {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    text-transform: none !important;
}
.tw-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s, transform 0.2s;
    text-transform: none !important;
}
.tw-book-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.tw-book-upi {
    background: linear-gradient(45deg, #F44336, #E91E63);
    color: #fff !important;
}
.tw-book-pdf {
    background: #f5f5f5;
    color: #333 !important;
    border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 640px) {
    .tw-ie-grid { grid-template-columns: 1fr; }
    .tw-ie-block + .tw-ie-block { border-left: none; border-top: 1px solid rgba(0,0,0,0.07); }
}

/* ── Book Now button row ─────────────────────────────────────── */
.tw-booknow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.tw-booknow-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--prigri, linear-gradient(45deg,#F44336,#E91E63));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: none !important;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(244,67,54,0.3);
}
.tw-booknow-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.tw-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid #ddd;
    text-decoration: none;
    text-transform: none !important;
    transition: background 0.2s;
}
.tw-brochure-btn:hover { background: #ebebeb; color: #333; }

/* ── Sidebar Book Now button ─────────────────────────────────── */
.tw-sidebar-upi {
    background: var(--prigri, linear-gradient(45deg,#F44336,#E91E63));
    color: #fff;
    border: none;
    cursor: pointer;
}
.tw-sidebar-upi:hover { opacity: 0.85; color: #fff; }

/* ── Modal overlay ───────────────────────────────────────────── */
.tw-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.tw-modal-overlay.is-open {
    display: flex;
}

/* ── Modal card ──────────────────────────────────────────────── */
.tw-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 32px;
    width: 100%;
    max-width: 420px;
    max-height: 92vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.tw-modal-overlay.is-open .tw-modal {
    transform: translateY(0) scale(1);
}
.tw-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: background 0.2s;
}
.tw-modal-close:hover { background: #ebebeb; color: #111; }
.tw-modal-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase !important;
    color: #E91E63;
    margin: 0 0 6px;
}
.tw-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #21313C;
    margin: 0 0 20px;
    line-height: 1.3;
    text-transform: none !important;
}
.tw-modal-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.tw-modal-qr-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.4px;
    text-transform: uppercase !important;
    margin: 0;
}
.tw-modal-qr-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 8px;
    background: #fff;
}
.tw-modal-or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    color: #bbb;
    font-size: 13px;
}
.tw-modal-or::before,
.tw-modal-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}
.tw-modal-upi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--prigri, linear-gradient(45deg,#F44336,#E91E63));
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(244,67,54,0.28);
    text-transform: none !important;
}
.tw-modal-upi-btn:hover { opacity: 0.88; transform: translateY(-1px); color: #fff !important; }

@keyframes tw-call-ring {
    0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
    60%  { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.tw-modal-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 20px;
    margin-top: 4px;
    border-radius: 10px;
    background: #16a34a;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: none !important;
    animation: tw-call-ring 1.6s ease-out infinite;
}
.tw-modal-call-btn:hover { opacity: 0.88; transform: translateY(-1px); color: #fff !important; }
.tw-modal-note {
    font-size: 12px;
    color: #888;
    margin: 18px 0 0;
    line-height: 1.6;
    text-transform: none !important;
}

@media (max-width: 480px) {
    .tw-modal { padding: 28px 20px 24px; border-radius: 16px; }
    .tw-modal-qr-img { width: 170px; height: 170px; }
    .tw-booknow-btn { width: 100%; justify-content: center; }
}
