📶 No internet connection — some features unavailable
Step 1 of 3
Welcome to Med-Travel Albania
Let's personalise your recovery. It takes under a minute.
Step 2 of 3
What procedure did you have?
Personalises your advice and flight checker.
Step 3 of 3
When was your procedure?
We'll calculate your recovery day automatically.
Med-Travel Albania
Your Recovery Companion
Tirana
Durrës
Good day — you're on trackDay 1 / 5
Day 1
of Recovery
2
Meds left
Tirana
Recovery Progress
Day 1of 5 days
Today's advice
Today's Medications
Your Status
Help & Support
Upgrade your care
Premium Concierge + City Guide
    AI-powered · One-time payment · Full stay access
    Your Clinic
    Emergency contact & directions
    SELECT YOUR CLINIC
    🚨 Emergency Numbers
    112 works from any phone in Albania
    Flight-ready checker
    24/7 Pharmacies
    Verified open pharmacies
    Recovery Food
    Recovery-friendly food delivery to your door
    FOOD GUIDANCE
    Supë Peshku
    Soft Warm Low-acid
    Pure Patateje
    Soft Bland-safe
    Gjizë me Mjaltë
    Cool Protein
    Kos
    Cool Probiotic
    Tavë Dheu
    Warm Protein
    ⚠️ Avoid during recovery
    Spicy food Hard / crunchy Alcohol Caffeine Very hot foods Straws (dental)
    Medical Translator
    Tap any phrase — it goes full screen to show your carer
    Med-Travel Concierge
    AI · Always available
    Premium Concierge
    £9.99
    one-time · full stay access
      Secure payment · Instant access · Full stay access
      You'll get a notification every day at this time.
      function checkPendingNotifActions() { try { const cap = window.Capacitor; if (!cap || !cap.isNativePlatform || !cap.isNativePlatform()) return; const Preferences = cap.Plugins && cap.Plugins.Preferences; if (!Preferences) return; // Check if any notification action happened while app was closed Preferences.get({ key: 'last_notif_action' }).then(result => { if (!result || !result.value) return; try { const data = JSON.parse(result.value); const ts = data.ts || 0; // Only process if within last 24 hours if (Date.now() - ts > 86400000) return; const medName = data.med; const action = data.action; const med = MEDS.find(m => m.name === medName); if (action === 'MARK_TAKEN' && med) { med.done = true; saveMeds(); renderMeds(); console.log('Pending action applied: TAKEN', medName); } // Clear the pending action Preferences.remove({ key: 'last_notif_action' }); } catch(e) {} }).catch(()=>{}); } catch(e) {} } function setupNotificationListeners() { try { const cap = window.Capacitor; if (!cap || !cap.isNativePlatform || !cap.isNativePlatform()) return; const LN = cap.Plugins && cap.Plugins.LocalNotifications; if (!LN) return; LN.addListener('localNotificationActionPerformed', event => { try { console.log('Action event:', JSON.stringify(event)); const actionId = event.actionId; const notif = event.notification; const extra = notif && notif.extra; if (!extra || !extra.medName) return; const medName = extra.medName; const time = extra.time; const id = extra.id || ((medName.split('').reduce((a,c) => a+c.charCodeAt(0), 0) % 9000) + 1000); const lang = ST.lang || 'en'; if (actionId === 'MARK_TAKEN' || !actionId || actionId === '') { // Mark as done (also handles tapping notification body) console.log('TAKEN:', medName); const med = MEDS.find(m => m.name === medName); if (med) { med.done = true; saveMeds(); } LN.cancel({ notifications:[{ id }] }).catch(()=>{}); // Reschedule for tomorrow same time if (time) { const [h, m] = time.split(':').map(Number); const tom = new Date(); tom.setDate(tom.getDate() + 1); tom.setHours(h, m, 0, 0); const titles = {en:'💊 Med-Travel Albania',it:'💊 Med-Travel Albania',sq:'💊 Med-Travel Albania'}; const bodies = {en:'Time to take: ',it:'Prendere: ',sq:'Merr: '}; LN.schedule({ notifications:[{ id, title:titles[lang]||titles.en, body:(bodies[lang]||bodies.en)+medName, schedule:{at:tom, repeats:false, allowWhileIdle:true}, actionTypeId:'MED_ACTION', extra:{medName,time,id}, autoCancel:true, foreground:false, smallIcon:'ic_launcher', iconColor:'#2e5940' }] }).catch(()=>{}); } } else if (actionId === 'SNOOZE_30') { // Snooze 30 minutes - reschedule in 30 min console.log('SNOOZE:', medName); LN.cancel({ notifications:[{ id }] }).catch(()=>{}); const snoozeAt = new Date(Date.now() + 30 * 60 * 1000); const titles = {en:'💊 Med-Travel Albania',it:'💊 Med-Travel Albania',sq:'💊 Med-Travel Albania'}; const bodies = {en:'Reminder: ',it:'Promemoria: ',sq:'Kujtues: '}; LN.schedule({ notifications:[{ id, title:titles[lang]||titles.en, body:(bodies[lang]||bodies.en)+medName, schedule:{at:snoozeAt, repeats:false, allowWhileIdle:true}, actionTypeId:'MED_ACTION', extra:{medName,time,id}, autoCancel:true, foreground:false, smallIcon:'ic_launcher', iconColor:'#2e5940' }] }).catch(()=>{}); } else if (actionId === 'SKIP_DOSE') { // Skip - cancel today, reschedule for tomorrow console.log('SKIP:', medName); LN.cancel({ notifications:[{ id }] }).catch(()=>{}); if (time) { const [h, m] = time.split(':').map(Number); const tom = new Date(); tom.setDate(tom.getDate() + 1); tom.setHours(h, m, 0, 0); const titles = {en:'💊 Med-Travel Albania',it:'💊 Med-Travel Albania',sq:'💊 Med-Travel Albania'}; const bodies = {en:'Time to take: ',it:'Prendere: ',sq:'Merr: '}; LN.schedule({ notifications:[{ id, title:titles[lang]||titles.en, body:(bodies[lang]||bodies.en)+medName, schedule:{at:tom, repeats:false, allowWhileIdle:true}, actionTypeId:'MED_ACTION', extra:{medName,time,id}, autoCancel:true, foreground:false, smallIcon:'ic_launcher', iconColor:'#2e5940' }] }).catch(()=>{}); } } else { // Tapped notification body itself = same as Confirm const med = MEDS.find(m => m.name === medName); if (med) { med.done = true; saveMeds(); } } if (typeof renderMeds === 'function') renderMeds(); } catch(e) { console.log('Action listener error:', e); } }).catch(()=>{}); // In-app banner when notification arrives while app is open LN.addListener('localNotificationReceived', notification => { try { const extra = notification.extra; if (extra && extra.medName) showMedBanner(extra.medName, extra.time); } catch(e) {} }).catch(()=>{}); } catch(e) { console.log('setupNotificationListeners error:', e); } } :root{--sage:#5a8f6a;--sage-d:#2e5940;--sage-light:#e8f4ec;--sage-mid:#9dc4aa;--blue-pale:#e8f0f8;--blue-mid:#8ab8d8;--blue-accent:#2d7eb0;--amber-light:#fdf0e0;--amber:#b87818;--amber-d:#6a4a10;--card:#ffffff;--surface:#f5f8f5;--border:#e0ebe2;--text:#0f1a14;--muted:#6a7a6e;--font:'Outfit',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;--font-display:'Cormorant Garamond',Georgia,serif} html,body{height:100%;font-family:var(--font);background:var(--surface);color:var(--text);overflow:hidden} .shell{max-width:430px;margin:0 auto;height:100vh;display:flex;flex-direction:column;background:var(--surface);position:relative;overflow:hidden} .onboard{display:flex;flex-direction:column;height:100%;background:var(--surface)} .ob-progress{display:flex;gap:6px;padding:56px 24px 0} .ob-prog-dot{flex:1;height:3px;border-radius:2px;background:var(--sage-light);transition:background .3s} .ob-prog-dot.active{background:var(--sage)}.ob-prog-dot.done{background:var(--sage-mid)} .ob-body{flex:1;padding:28px 24px 16px;display:flex;flex-direction:column;overflow-y:auto} .ob-step{display:none;flex-direction:column;flex:1}.ob-step.active{display:flex} .ob-icon-wrap{width:68px;height:68px;border-radius:22px;background:linear-gradient(145deg,var(--sage-light),#d8eee0);display:flex;align-items:center;justify-content:center;margin-bottom:24px;box-shadow:0 4px 16px rgba(90,143,106,0.15)} .ob-icon-wrap svg{width:32px;height:32px;stroke:var(--sage-d);fill:none;stroke-width:1.5} .ob-step-num{font-size:11px;font-weight:600;color:var(--sage);text-transform:uppercase;letter-spacing:.07em;margin-bottom:6px} .ob-title{font-size:26px;font-weight:600;color:var(--text);margin-bottom:8px;line-height:1.2} .ob-sub{font-size:15px;color:var(--muted);line-height:1.6;margin-bottom:28px} .ob-label{font-size:12px;color:var(--muted);margin-bottom:6px;display:block;font-weight:500} .ob-input{width:100%;padding:14px 16px;border-radius:14px;border:1.5px solid var(--border);background:var(--card);color:var(--text);font-size:16px;font-family:var(--font);outline:none;margin-bottom:16px;transition:border-color .15s} .ob-input:focus{border-color:var(--sage)} .ob-lang-row{display:flex;gap:8px;margin-bottom:20px} .ob-lang-btn{flex:1;padding:12px;border-radius:12px;border:1.5px solid var(--border);background:var(--card);font-size:14px;cursor:pointer;color:var(--muted);text-align:center;transition:all .15s;font-family:var(--font)} .ob-lang-btn.sel{background:var(--sage-light);border-color:var(--sage);color:var(--sage-d);font-weight:600} .ob-city-row{display:flex;gap:8px;margin-bottom:16px} .ob-city-btn{flex:1;padding:14px 10px;border-radius:14px;border:1.5px solid var(--border);background:var(--card);font-size:14px;cursor:pointer;color:var(--muted);text-align:center;transition:all .15s;font-family:var(--font)} .ob-city-btn.sel{background:var(--sage-light);border-color:var(--sage);color:var(--sage-d);font-weight:600} .ob-proc-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:16px} .ob-proc-card{background:var(--card);border:1.5px solid var(--border);border-radius:14px;padding:14px;cursor:pointer;transition:all .15s;text-align:left} .ob-proc-card.sel{background:var(--sage-light);border-color:var(--sage)} .ob-proc-icon{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:10px} .ob-proc-icon svg{width:18px;height:18px;stroke:white;fill:none;stroke-width:1.8} .ob-proc-name{font-size:13px;font-weight:600;color:var(--text)}.ob-proc-sub{font-size:11px;color:var(--muted);margin-top:2px} .ob-day-wrap{display:flex;align-items:center;gap:20px;margin-bottom:8px} .ob-day-btn{width:48px;height:48px;border-radius:50%;border:1.5px solid var(--border);background:var(--card);font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--muted);font-family:var(--font)} .ob-day-num{flex:1;text-align:center;font-size:52px;font-weight:600;color:var(--text);line-height:1} .ob-day-label{font-size:13px;color:var(--muted);text-align:center;margin-bottom:20px} .ob-footer{padding:16px 24px 32px} .ob-next-btn{width:100%;padding:17px;border-radius:16px;border:none;background:linear-gradient(135deg,#3d7a52,#2a5e42);color:white;font-size:16px;font-weight:600;cursor:pointer;font-family:var(--font);margin-bottom:10px;box-shadow:0 6px 20px rgba(46,89,64,0.3);letter-spacing:0.01em} .ob-skip{width:100%;padding:10px;border:none;background:transparent;color:var(--muted);font-size:14px;cursor:pointer;font-family:var(--font)} .app{display:none;flex-direction:column;height:100%}.app.show{display:flex} .hdr{background:linear-gradient(160deg,#3d7a52 0%,#2a5e42 100%);padding:52px 18px 0;flex-shrink:0} .hdr-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:14px} .hdr-brand{display:flex;align-items:center;gap:9px} .hdr-logo{width:34px;height:34px;border-radius:9px;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center} .hdr-logo svg{width:18px;height:18px;fill:white} .hdr-name{color:white;font-size:14px;font-weight:600}.hdr-tagline{color:rgba(255,255,255,.7);font-size:10px} .hdr-lang{display:flex;background:rgba(0,0,0,.15);border-radius:10px;padding:3px;gap:2px} .hdr-lang button{background:transparent;border:none;color:rgba(255,255,255,.7);font-size:11px;font-weight:600;padding:4px 9px;border-radius:7px;cursor:pointer;font-family:var(--font)} .hdr-lang button.active{background:white;color:var(--sage-d)} .hdr-cities{display:flex;gap:8px;margin-bottom:14px} .city-pill{display:flex;align-items:center;gap:6px;padding:7px 13px 7px 9px;border-radius:30px;border:1.5px solid rgba(255,255,255,.25);background:rgba(255,255,255,.12);cursor:pointer;transition:all .18s} .city-pill.active{background:white;border-color:white} .city-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.5)} .city-pill.active .city-dot{background:var(--sage)} .city-pname{font-size:13px;font-weight:600;color:rgba(255,255,255,.85)}.city-pill.active .city-pname{color:var(--sage-d)} .city-wx{font-size:11px;color:rgba(255,255,255,.6);margin-left:1px}.city-pill.active .city-wx{color:var(--sage)} .hdr-strip{background:rgba(0,0,0,.1);margin:0 -18px;padding:10px 18px;display:flex;align-items:center;justify-content:space-between} .hdr-greet{color:rgba(255,255,255,.9);font-size:12px} .hdr-badge{background:rgba(255,255,255,.2);color:white;font-size:11px;font-weight:600;padding:3px 10px;border-radius:20px} .content{flex:1;overflow-y:auto;padding:14px;-webkit-overflow-scrolling:touch} .section{display:none;opacity:0;transform:translateY(8px);transition:opacity .2s ease,transform .2s ease} .section.active{display:block;opacity:1;transform:translateY(0)} .section.entering{display:block} .pg-title{font-size:20px;font-weight:600;color:var(--text);margin-bottom:3px} .pg-sub{font-size:13px;color:var(--muted);margin-bottom:14px} .card{background:var(--card);border-radius:20px;border:1px solid var(--border);padding:16px 18px;margin-bottom:12px;box-shadow:0 2px 12px rgba(15,26,20,0.05)} .card-label{font-size:11px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px} .stat-row{display:flex;gap:8px;margin-bottom:12px} .stat-card{flex:1;background:var(--card);border:1px solid var(--border);border-radius:18px;padding:14px 8px;text-align:center;box-shadow:0 2px 8px rgba(15,26,20,0.05)} .stat-num{font-size:22px;font-weight:700;color:var(--sage-d);letter-spacing:-0.02em}.stat-lbl{font-size:10px;color:var(--muted);margin-top:2px} .prog-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:6px} .prog-day{font-size:24px;font-weight:600;color:var(--text)}.prog-of{font-size:13px;color:var(--muted)} .prog-track{background:var(--sage-light);border-radius:20px;height:8px;margin-bottom:10px;overflow:hidden;width:100%} .prog-fill{background:linear-gradient(90deg,var(--sage-d),var(--sage));border-radius:20px;height:10px;transition:width .6s cubic-bezier(.4,0,.2,1)} .prog-dots{display:flex;gap:6px;margin-bottom:12px} .prog-dot{flex:1;height:3px;border-radius:2px} .prog-dot.done{background:var(--sage)}.prog-dot.now{background:var(--blue-accent)}.prog-dot.future{background:var(--sage-light)} .day-btns{display:flex;gap:5px;margin-bottom:12px;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:4px} .day-btn{flex:0 0 auto;min-width:36px;padding:6px 4px;border-radius:10px;border:1px solid var(--border);background:var(--surface);font-size:11px;cursor:pointer;color:var(--muted);text-align:center;font-family:var(--font);font-weight:500} .day-btn.active{background:var(--sage);color:white;border-color:var(--sage)} .advice-strip{background:linear-gradient(135deg,var(--blue-pale),#f0f5fb);border-radius:14px;padding:14px 16px;border-left:3px solid var(--blue-accent);box-shadow:0 2px 8px rgba(45,126,176,0.08)} .advice-lbl{font-size:10px;font-weight:600;color:var(--blue-accent);margin-bottom:3px;text-transform:uppercase;letter-spacing:.05em} .advice-body{font-size:13px;color:var(--text);line-height:1.55} .med-row{display:flex;align-items:center;gap:12px;padding:10px 0;border-bottom:1px solid var(--border)} .med-row:last-of-type{border-bottom:none} .med-tick{width:26px;height:26px;border-radius:50%;border:2px solid var(--sage-mid);cursor:pointer;flex-shrink:0;display:flex;align-items:center;justify-content:center;transition:all .15s} .med-tick.done{background:var(--sage);border-color:var(--sage)} .med-tick svg{width:12px;height:12px;stroke:white;fill:none;display:none}.med-tick.done svg{display:block} .med-name{font-size:14px;font-weight:500;color:var(--text)}.med-time{font-size:11px;color:var(--muted);margin-top:1px} .add-med-btn{width:100%;margin-top:10px;padding:10px;border-radius:12px;border:1.5px dashed var(--sage-mid);background:transparent;color:var(--sage-d);font-size:13px;cursor:pointer;font-family:var(--font)} .pill-row{display:flex;flex-wrap:wrap;gap:8px} .pill{background:var(--sage-light);color:var(--sage-d);border-radius:20px;padding:6px 14px;font-size:12px;font-weight:500;border:1px solid var(--sage-mid);cursor:pointer;transition:all .15s;-webkit-tap-highlight-color:transparent} .pill.pill-off{background:var(--surface);color:var(--muted);border-color:var(--border);opacity:0.5;text-decoration:line-through} .prem-card{border-radius:18px;padding:18px;margin-bottom:12px;background:linear-gradient(145deg,#1e4d30 0%,#1a3d5c 100%)} .prem-eyebrow{font-size:10px;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:.07em;margin-bottom:4px;font-weight:600} .prem-title{font-size:16px;font-weight:600;color:white;margin-bottom:6px} .prem-perks{list-style:none;margin-bottom:14px} .prem-perks li{font-size:12px;color:rgba(255,255,255,.85);padding:2px 0 2px 15px;position:relative;line-height:1.45} .prem-perks li::before{content:'✓';position:absolute;left:0;color:rgba(255,255,255,.6)} .prem-btn{width:100%;background:white;color:#1e4d30;border:none;border-radius:14px;padding:15px;font-size:15px;font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;font-family:var(--font);letter-spacing:0.01em;box-shadow:0 4px 16px rgba(0,0,0,0.15);transition:opacity 0.15s} .prem-note{font-size:10px;color:rgba(255,255,255,.5);text-align:center;margin-top:8px} .clinic-hero{background:linear-gradient(145deg,var(--sage-light),#d8eee0);border-radius:20px;padding:18px;margin-bottom:12px;border:1px solid var(--sage-mid);box-shadow:0 4px 16px rgba(90,143,106,0.1)} .clinic-icon{width:46px;height:46px;background:var(--sage);border-radius:13px;display:flex;align-items:center;justify-content:center;margin-bottom:12px} .clinic-icon svg{width:24px;height:24px;stroke:white;fill:none;stroke-width:1.8} .clinic-name{font-size:16px;font-weight:600;color:var(--text);margin-bottom:2px} .clinic-addr{font-size:12px;color:var(--muted);margin-bottom:4px;line-height:1.4} .clinic-hours{font-size:11px;color:var(--sage-d);font-weight:500;margin-bottom:14px} .clinic-btns{display:flex;gap:8px} .c-btn{flex:1;padding:11px 6px;border-radius:12px;border:none;font-size:12px;font-weight:600;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:5px;font-family:var(--font)} .c-btn svg{width:14px;height:14px} .c-btn-call{background:var(--sage);color:white}.c-btn-call svg{stroke:white;fill:none;stroke-width:2} .c-btn-wa{background:#25d366;color:white}.c-btn-wa svg{fill:white} .c-btn-map{background:var(--blue-pale);color:var(--blue-accent);border:1px solid var(--blue-mid)}.c-btn-map svg{stroke:var(--blue-accent);fill:none;stroke-width:1.8} .flight-sel{width:100%;padding:11px 14px;border-radius:12px;border:1px solid var(--border);background:var(--card);color:var(--text);font-size:14px;margin-bottom:10px;font-family:var(--font)} .flight-btn{width:100%;padding:13px;border-radius:12px;border:none;background:var(--blue-accent);color:white;font-size:14px;font-weight:600;cursor:pointer;font-family:var(--font)} .flight-res{border-radius:14px;padding:14px;margin-top:10px} .flight-res.ok{background:var(--sage-light);border-left:3px solid var(--sage)} .flight-res.wait{background:var(--amber-light);border-left:3px solid var(--amber)} .flight-res.no{background:#fdeaea;border-left:3px solid #d94f4f} .flight-res-title{font-size:14px;font-weight:600;color:var(--text);margin-bottom:3px} .flight-res-body{font-size:12px;color:var(--muted);line-height:1.5} .list-item{border-bottom:1px solid var(--border);padding:12px 0} .list-item:last-child{border-bottom:none;padding-bottom:0} .list-row{display:flex;justify-content:space-between;align-items:flex-start;gap:8px} .list-name{font-size:14px;font-weight:600;color:var(--text)} .list-detail{font-size:12px;color:var(--muted);margin-top:2px;line-height:1.4} .list-hours{font-size:11px;color:var(--sage-d);font-weight:500;margin-top:3px} .tag-row{display:flex;gap:5px;flex-wrap:wrap;margin-top:7px} .tag{font-size:10px;padding:3px 9px;border-radius:20px;font-weight:500} .tag-blue{background:var(--blue-pale);color:var(--blue-accent)} .badge{font-size:10px;padding:3px 9px;border-radius:20px;white-space:nowrap;flex-shrink:0;margin-top:1px;font-weight:600} .badge-247{background:var(--blue-pale);color:var(--blue-accent)}.badge-open{background:var(--sage-light);color:var(--sage-d)} .sm-btn{font-size:12px;padding:6px 12px;border-radius:10px;cursor:pointer;margin-top:8px;font-family:var(--font);font-weight:500} .sm-btn-sage{border:1px solid var(--sage-mid);background:var(--sage-light);color:var(--sage-d)} .sm-btn-blue{border:1px solid var(--blue-mid);background:var(--blue-pale);color:var(--blue-accent)} .trans-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px} .trans-card{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:12px 13px;cursor:pointer;transition:background .15s} .trans-card.tapped{background:var(--sage-light);border-color:var(--sage-mid)} .trans-en{font-size:11px;color:var(--muted);margin-bottom:5px} .trans-al{font-size:13px;font-weight:600;color:var(--text);line-height:1.4} .trans-it{font-size:10px;color:var(--muted);margin-top:3px;font-style:italic} .trans-hint{font-size:10px;color:var(--sage-d);margin-top:4px;display:none;font-weight:500} .trans-card.tapped .trans-hint{display:block} .bnav{display:flex;justify-content:center;padding:10px 16px calc(28px + env(safe-area-inset-bottom));flex-shrink:0;background:transparent;border:none;position:relative} .bnav::before{content:'';position:absolute;bottom:calc(20px + env(safe-area-inset-bottom));left:20px;right:20px;height:64px;background:rgba(15,26,20,0.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-radius:32px;box-shadow:0 8px 32px rgba(15,26,20,0.25)} .bnav-btn{flex:1;display:flex;flex-direction:column;align-items:center;gap:2px;padding:8px 4px;border:none;background:transparent;cursor:pointer;border-radius:20px;font-family:var(--font);position:relative;z-index:1;transition:transform .15s;-webkit-tap-highlight-color:transparent} .bnav-btn:active{transform:scale(0.9)} .bnav-icon{width:32px;height:28px;border-radius:12px;display:flex;align-items:center;justify-content:center;transition:all .2s} .bnav-btn.active .bnav-icon{background:rgba(255,255,255,0.18);border-radius:16px} .bnav-icon svg{width:19px;height:19px;stroke:rgba(255,255,255,0.5);fill:none;stroke-width:1.8} .bnav-btn.active .bnav-icon svg{stroke:white} .bnav-lbl{font-size:10px;color:rgba(255,255,255,0.5);font-weight:500}.bnav-btn.active .bnav-lbl{color:white;font-weight:600}.bnav-btn.active .bnav-lbl{color:var(--sage-d);font-weight:600} .pay-gate{display:flex;flex-direction:column;align-items:center;justify-content:center;flex:1;padding:24px;text-align:center;overflow-y:auto} .pay-gate-icon{width:68px;height:68px;border-radius:20px;background:var(--sage-light);display:flex;align-items:center;justify-content:center;margin:0 auto 16px} .pay-gate-icon svg{width:34px;height:34px;stroke:var(--sage-d);fill:none;stroke-width:1.5} .pay-gate-title{font-size:20px;font-weight:600;color:var(--text);margin-bottom:6px} .pay-gate-price{font-size:48px;font-weight:700;color:var(--sage-d);margin-bottom:2px;font-family:var(--font-display);letter-spacing:-0.02em} .pay-gate-period{font-size:13px;color:var(--muted);margin-bottom:20px} .pay-gate-perks{list-style:none;margin-bottom:22px;text-align:left;width:100%} .pay-gate-perks li{font-size:13px;color:var(--text);padding:6px 0 6px 20px;position:relative;border-bottom:1px solid var(--border)} .pay-gate-perks li:last-child{border-bottom:none} .pay-gate-perks li::before{content:'✓';position:absolute;left:0;color:var(--sage);font-weight:600} .pay-stripe-btn{width:100%;background:linear-gradient(135deg,#2e5940,#1e4d30);color:white;border:none;border-radius:16px;padding:17px;font-size:16px;font-weight:600;cursor:pointer;font-family:var(--font);margin-bottom:10px;box-shadow:0 6px 24px rgba(46,89,64,0.35);letter-spacing:0.01em;transition:opacity 0.15s} .pay-already{width:100%;background:transparent;border:1px solid var(--border);border-radius:12px;padding:11px;font-size:13px;color:var(--muted);cursor:pointer;font-family:var(--font)} .pay-note{font-size:11px;color:var(--muted);margin-top:10px} .chat-wrap{display:none;position:absolute;inset:0;z-index:50;flex-direction:column;background:var(--surface)} .chat-wrap.open{display:flex} .chat-hdr{background:linear-gradient(160deg,#3d7a52 0%,#2a5e42 100%);padding:52px 18px 14px;display:flex;align-items:center;gap:12px;flex-shrink:0} .chat-av{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;flex-shrink:0} .chat-av svg{width:20px;height:20px;stroke:white;fill:none;stroke-width:1.8} .chat-hdr-name{color:white;font-size:15px;font-weight:600}.chat-hdr-status{color:rgba(255,255,255,.75);font-size:11px} .chat-close{background:rgba(255,255,255,.18);border:none;color:white;border-radius:10px;padding:7px 14px;font-size:13px;cursor:pointer;margin-left:auto;font-family:var(--font);font-weight:500} .chat-msgs{flex:1;overflow-y:auto;padding:16px;display:block;-webkit-overflow-scrolling:touch} .msg{max-width:80%;padding:11px 14px;border-radius:16px;font-size:14px;line-height:1.5;margin-bottom:10px} .msg.ai{background:var(--card);color:var(--text);border:1px solid var(--border);align-self:flex-start;border-bottom-left-radius:4px} .msg.user{background:var(--sage);color:white;align-self:flex-end;border-bottom-right-radius:4px} .typing{display:flex;gap:5px;padding:13px 16px;background:var(--card);border:1px solid var(--border);border-radius:16px;border-bottom-left-radius:4px;align-self:flex-start} .typing span{width:7px;height:7px;border-radius:50%;background:var(--sage-mid);animation:bounce 1.2s infinite} .typing span:nth-child(2){animation-delay:.2s}.typing span:nth-child(3){animation-delay:.4s} @keyframes bounce{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-5px)}} .chat-chips{padding:0 16px 8px;display:flex;gap:6px;flex-wrap:wrap} .chip{font-size:12px;padding:6px 12px;border-radius:20px;border:1px solid var(--sage-mid);background:var(--sage-light);color:var(--sage-d);cursor:pointer;font-family:var(--font);font-weight:500} .chat-inp-row{padding:12px 16px 28px;background:var(--card);border-top:1px solid var(--border);display:flex;gap:10px;align-items:flex-end;flex-shrink:0} .chat-inp{flex:1;border:1px solid var(--border);border-radius:14px;padding:11px 14px;font-size:14px;font-family:var(--font);resize:none;background:var(--surface);color:var(--text);outline:none;max-height:80px} .chat-send{background:var(--sage);border:none;border-radius:12px;width:40px;height:40px;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0} .chat-send svg{width:16px;height:16px;fill:white} .guide-card{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:13px 15px;margin-bottom:9px;align-self:flex-start;max-width:88%} .guide-card-name{font-size:14px;font-weight:600;color:var(--text);margin-bottom:3px;display:flex;align-items:center;gap:6px} .guide-badge-sp{font-size:9px;padding:2px 7px;border-radius:20px;background:var(--sage-light);color:var(--sage-d);font-weight:600} .guide-card-desc{font-size:12px;color:var(--muted);line-height:1.4;margin-bottom:7px} .guide-card-tags{display:flex;gap:5px;flex-wrap:wrap;margin-bottom:9px} .guide-card-tag{font-size:10px;padding:3px 8px;border-radius:20px;background:var(--amber-light);color:var(--amber-d);font-weight:500} .biz-cta{background:var(--amber-light);border-radius:14px;border:1px solid #e8c97a;padding:16px;margin-bottom:9px} .biz-cta-title{font-size:14px;font-weight:600;color:var(--amber-d);margin-bottom:4px} .biz-cta-desc{font-size:12px;color:var(--amber-d);line-height:1.5;margin-bottom:12px;opacity:.85} .biz-cta-btn{background:var(--amber);color:white;border:none;border-radius:10px;padding:10px 16px;font-size:13px;font-weight:600;cursor:pointer;width:100%;font-family:var(--font)} .notif-bar{background:#eaf1f8;border-radius:14px;padding:12px 14px;margin-bottom:12px;border:1px solid var(--blue-mid);display:flex;align-items:center;justify-content:space-between;gap:10px} .notif-bar.denied{background:#fdeaea;border-color:#f5b8b8} .notif-bar-text{font-size:12px;color:var(--text);line-height:1.4} .notif-bar-btn{background:var(--blue-accent);color:white;border:none;border-radius:10px;padding:7px 14px;font-size:12px;font-weight:600;cursor:pointer;white-space:nowrap;font-family:var(--font)} .notif-bar.denied .notif-bar-btn{background:#d94f4f} .med-alarm-row{display:flex;align-items:center;gap:8px;margin-top:6px} .med-alarm-time{font-size:12px;color:var(--blue-accent);background:var(--blue-pale);border:1px solid var(--blue-mid);border-radius:8px;padding:3px 10px;font-weight:500} .med-alarm-set{font-size:11px;color:var(--sage-d);background:var(--sage-light);border:1px solid var(--sage-mid);border-radius:8px;padding:3px 10px;cursor:pointer;font-family:var(--font);font-weight:500} .med-alarm-clear{font-size:11px;color:#d94f4f;background:#fdeaea;border:1px solid #f5b8b8;border-radius:8px;padding:3px 10px;cursor:pointer;font-family:var(--font)} .notif-modal{display:none;position:absolute;inset:0;z-index:100;background:rgba(0,0,0,.5);align-items:flex-end} .notif-modal.open{display:flex} .notif-sheet{background:var(--card);border-radius:20px 20px 0 0;padding:24px;width:100%} .notif-sheet-title{font-size:16px;font-weight:600;color:var(--text);margin-bottom:4px} .notif-sheet-sub{font-size:13px;color:var(--muted);margin-bottom:20px} .notif-time-inp{width:100%;padding:14px 16px;border-radius:14px;border:1.5px solid var(--border);background:var(--surface);color:var(--text);font-size:18px;font-family:var(--font);outline:none;margin-bottom:16px;text-align:center} .notif-time-inp:focus{border-color:var(--sage)} .notif-confirm{width:100%;padding:14px;border-radius:14px;border:none;background:var(--sage);color:white;font-size:15px;font-weight:600;cursor:pointer;font-family:var(--font);margin-bottom:10px} .notif-cancel{width:100%;padding:10px;border:none;background:transparent;color:var(--muted);font-size:14px;cursor:pointer;font-family:var(--font)} .offline-bar{position:fixed;top:0;left:0;right:0;z-index:200;background:#d94f4f;color:white;text-align:center;padding:8px 16px;font-size:12px;font-weight:500;transform:translateY(-100%);transition:transform .3s} .offline-bar.show{transform:translateY(0)} .iab-app-banner{display:none;background:linear-gradient(135deg,#0f1a14,#1e3020);color:white;padding:14px 18px;border-radius:0 0 16px 16px;margin:-52px -18px 14px;text-align:center} .iab-app-banner.show{display:block} .iab-app-banner p{font-size:12px;color:rgba(255,255,255,.75);line-height:1.5} .iab-app-banner strong{color:white} /* Translator category buttons */ .trans-cat-btn{flex-shrink:0;padding:7px 16px;border-radius:20px;border:1.5px solid var(--border);background:var(--card);font-size:12px;font-weight:500;cursor:pointer;color:var(--muted);font-family:var(--font);white-space:nowrap;transition:all .15s} .trans-cat-btn.active{background:var(--sage);border-color:var(--sage);color:white;font-weight:600} /* Translator cards - bigger and clearer */ .trans-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px} .trans-card{background:var(--card);border:1.5px solid var(--border);border-radius:16px;padding:14px;cursor:pointer;transition:all .2s;-webkit-tap-highlight-color:transparent} .trans-card:active{transform:scale(0.97);background:var(--sage-light)} .trans-card.tapped{background:var(--sage-light);border-color:var(--sage)} .trans-en{font-size:10px;color:var(--muted);margin-bottom:6px;text-transform:uppercase;letter-spacing:.04em;font-weight:500} .trans-al{font-size:14px;font-weight:600;color:var(--text);line-height:1.35} .trans-it{font-size:11px;color:var(--muted);margin-top:4px;font-style:italic} .trans-hint{font-size:10px;color:var(--sage-d);margin-top:6px;font-weight:600;display:flex;align-items:center;gap:4px} .trans-hint::before{content:'↗';font-size:12px} /* Check-in buttons */ .checkin-btn{flex:1;padding:8px 4px;border-radius:14px;border:1.5px solid var(--border);background:var(--card);cursor:pointer;font-size:20px;text-align:center;transition:all .15s;font-family:var(--font);color:var(--text)} .checkin-btn div{font-size:9px;color:var(--muted);margin-top:3px;font-weight:500} .checkin-btn.selected{border-color:var(--sage);background:var(--sage-light)} .checkin-btn:active{transform:scale(0.95)} /* Quick action buttons */ .quick-action-btn{padding:14px 8px;border-radius:16px;border:1.5px solid var(--border);background:var(--card);cursor:pointer;font-size:22px;text-align:center;width:100%;font-family:var(--font);transition:all .15s;color:var(--text)} .quick-action-btn div{font-size:11px;color:var(--muted);margin-top:5px;font-weight:500} .quick-action-btn:active{transform:scale(0.96);background:var(--sage-light)} /* Wellness bars */ .w-bar{border-radius:4px 4px 0 0;background:var(--sage);flex:1;transition:height .4s;min-width:20px} .w-bar.low{background:#e8a87c} .w-bar.mid{background:var(--sage-mid)} .w-bar.high{background:var(--sage-d)} /* Pain level buttons */ .pain-btn{flex:1;padding:8px 2px;border-radius:10px;border:1.5px solid var(--border);background:var(--card);cursor:pointer;font-size:12px;font-weight:600;text-align:center;transition:all .15s;font-family:var(--font);color:var(--muted)} .pain-btn.active{color:white;border-color:transparent} .pain-low{background:#5a8f6a} .pain-mid{background:#e8a87c} .pain-high{background:#d94f4f} .pain-btn:active{transform:scale(0.93)} /* Taxi options sheet */ .taxi-option{display:flex;align-items:center;gap:14px;padding:14px 0;border-bottom:0.5px solid var(--border);cursor:pointer} .taxi-option:last-child{border-bottom:none} .taxi-icon{width:44px;height:44px;border-radius:14px;background:var(--sage-light);display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0} .taxi-name{font-size:14px;font-weight:600;color:var(--text)} .taxi-desc{font-size:12px;color:var(--muted);margin-top:2px} /* Journal */ #journal-input:focus{border-color:var(--sage);background:white} /* Checklist */ .depart-item{display:flex;align-items:center;gap:10px;padding:8px 0;border-bottom:0.5px solid var(--border);cursor:pointer;-webkit-tap-highlight-color:transparent} .depart-item:last-child{border-bottom:none} .depart-check{width:22px;height:22px;border-radius:6px;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .15s;font-size:13px} .depart-check.done{background:var(--sage);border-color:var(--sage);color:white} .depart-label{font-size:13px;color:var(--text);line-height:1.4;flex:1} .depart-label.done{text-decoration:line-through;color:var(--muted)}
      📶 No internet connection — some features unavailable
      Step 1 of 3
      Welcome to Med-Travel Albania
      Let's personalise your recovery. It takes under a minute.
      Step 2 of 3
      What procedure did you have?
      Personalises your advice and flight checker.
      Step 3 of 3
      When was your procedure?
      We'll calculate your recovery day automatically.
      Med-Travel Albania
      Your Recovery Companion
      Tirana
      Durrës
      Good day — you're on trackDay 1 / 5
      Day 1
      of Recovery
      2
      Meds left
      Tirana
      Recovery Progress
      Day 1of 5 days
      Today's advice
      Today's Medications
      Your Status
      Help & Support
      Upgrade your care
      Premium Concierge + City Guide
        AI-powered · One-time payment · Full stay access
        Your Clinic
        Emergency contact & directions
        SELECT YOUR CLINIC
        🚨 Emergency Numbers
        112 works from any phone in Albania
        Flight-ready checker
        24/7 Pharmacies
        Verified open pharmacies
        Recovery Food
        Recovery-friendly food delivery to your door
        FOOD GUIDANCE
        Supë Peshku
        Soft Warm Low-acid
        Pure Patateje
        Soft Bland-safe
        Gjizë me Mjaltë
        Cool Protein
        Kos
        Cool Probiotic
        Tavë Dheu
        Warm Protein
        ⚠️ Avoid during recovery
        Spicy food Hard / crunchy Alcohol Caffeine Very hot foods Straws (dental)
        Medical Translator
        Tap any phrase — it goes full screen to show your carer
        Med-Travel Concierge
        AI · Always available
        Premium Concierge
        £9.99
        one-time · full stay access
          Secure payment · Instant access · Full stay access
          You'll get a notification every day at this time.