/* === MARMARISGO TEMA CSS === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;background:#F4F7FB;color:#0D1F35;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button{font-family:'Outfit',sans-serif;cursor:pointer}
svg{overflow:hidden;vertical-align:middle;flex-shrink:0}

/* TOKENS */
:root{
--blue:#0A5EA8;--blue-dark:#084D8C;--blue-light:#E8F3FF;
--yellow:#FFB800;--yellow-dark:#E5A500;
--text:#0D1F35;--muted:#5A6A7E;--bg:#F4F7FB;--white:#fff;
--border:#DDEAF8;--radius:8px;
--shadow:0 4px 24px rgba(10,94,168,.10);
}

/* NAV */
.mg-header{position:sticky;top:0;z-index:200;background:#fff;box-shadow:0 2px 20px rgba(10,94,168,.09);border-bottom:1px solid var(--border)}
.mg-nav{display:flex;align-items:center;justify-content:space-between;padding:14px 60px;max-width:1400px;margin:0 auto}
.mg-logo{display:flex;align-items:center;gap:10px}
.mg-logo-icon{width:38px;height:38px;background:var(--blue);border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.mg-logo-icon svg{width:20px;height:20px}
.mg-logo-name{font-size:20px;font-weight:800;color:var(--text);letter-spacing:-.5px;line-height:1}
.mg-logo-name span{color:var(--yellow)}
.mg-logo-sub{font-size:9.5px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);display:block;margin-top:2px}
.mg-nav-links{display:flex;gap:4px;list-style:none;align-items:center}
.mg-nav-links li a{display:flex;align-items:center;color:var(--text);font-size:14.5px;font-weight:500;padding:8px 14px;border-radius:6px;transition:color .2s,background .2s}
.mg-nav-links li a:hover,.mg-nav-links li.active a{color:var(--blue);background:var(--blue-light)}
.mg-nav-right{display:flex;align-items:center;gap:10px}
.mg-cart-btn{display:flex;align-items:center;gap:7px;background:transparent;border:1px solid var(--border);border-radius:6px;padding:8px 14px;font-size:13.5px;font-weight:600;color:var(--text);transition:border-color .15s,background .15s}
.mg-cart-btn:hover{border-color:var(--blue);background:var(--blue-light);color:var(--blue)}
.mg-cart-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.mg-cart-badge{background:var(--yellow);color:var(--text);font-size:11px;font-weight:800;width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center}

/* HERO */
.mg-hero{position:relative;width:100%;overflow:hidden;background:#E8F3FF}
/* Desktop */
@media(min-width:1025px)  { .mg-hero{height:480px} }
/* Tablet */
@media(min-width:641px) and (max-width:1024px){ .mg-hero{height:380px} }
/* Mobile */
@media(max-width:640px)   { .mg-hero{height:320px} }
/* Image fills container perfectly, centred */
.mg-hero img{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:100%; height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

/* BOOKING BAR */
.mg-booking{background:transparent;display:flex;justify-content:center;position:relative;z-index:20;margin-top:0;padding:32px 60px 0}
.mg-booking-wrap{width:min(960px,100%);background:#fff;border-radius:var(--radius);box-shadow:0 8px 40px rgba(10,94,168,.16);padding:16px 22px}
.mg-booking-tabs{display:flex;gap:0;margin-bottom:12px}
.mg-tab{padding:7px 0;width:130px;text-align:center;border-radius:6px;font-size:13px;font-weight:600;cursor:pointer;border:none;transition:all .15s}
.mg-tab.active{background:var(--blue);color:#fff}
.mg-tab.plain{background:transparent;color:var(--muted)}
.mg-tab.plain:hover{color:var(--text)}
.mg-booking-row{display:flex;align-items:stretch;border:1.5px solid var(--border);border-radius:6px;overflow:hidden;background:#fff}
.mg-field{flex:1;display:flex;align-items:center;gap:10px;padding:10px 16px;background:#fff;min-width:0;border-right:1.5px solid var(--border);cursor:pointer;transition:background .12s}
.mg-field:hover{background:#FAFBFF}
.mg-field svg{width:15px;height:15px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;flex-shrink:0}
.mg-field-label{font-size:10px;color:var(--muted);font-weight:500;letter-spacing:.3px}
.mg-field select,.mg-field input[type=date]{display:block;width:100%;border:none;outline:none;background:transparent;font-family:'Outfit',sans-serif;font-size:13px;font-weight:600;color:var(--text);appearance:none;cursor:pointer;padding:0;margin-top:2px}
.mg-field-val{font-size:13px;font-weight:600;color:var(--text);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mg-field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A6A7E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 2px center;padding-right:16px;background-color:transparent}
.mg-search-btn{background:var(--yellow);color:var(--text);border:none;padding:0 28px;font-size:14px;font-weight:700;display:flex;align-items:center;gap:8px;transition:background .15s;flex-shrink:0;align-self:stretch}
.mg-search-btn:hover{background:var(--yellow-dark)}
.mg-search-btn svg{width:15px;height:15px;stroke:var(--text);fill:none;stroke-width:2;stroke-linecap:round}

/* TRUST BAR */

/* TOURS SECTION */
.mg-tours{padding:72px 0}
.mg-tours-wrap{max-width:1140px;margin:0 auto;padding:0 48px}
.mg-tours-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:36px}
.mg-tours-kicker{display:block;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--blue);margin-bottom:8px}
.mg-tours-title{font-size:clamp(24px,2.8vw,34px);font-weight:800;color:var(--text);line-height:1.15;letter-spacing:-.5px}
.mg-tours-all{display:flex;align-items:center;gap:5px;font-size:13px;font-weight:600;color:var(--blue);border-bottom:1.5px solid var(--border);padding-bottom:2px;transition:color .15s,border-color .15s}
.mg-tours-all:hover{color:var(--blue-dark);border-color:var(--blue)}
.mg-tours-all svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;transition:transform .18s}
.mg-tours-all:hover svg{transform:translateX(3px)}

/* Büyük foto kartlar (2'li satır) */
.mg-row-feat{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
/* 4'lü küçük kart satırı */
.mg-row-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:4px}

/* Foto kart */
.mg-photo-card{position:relative;border-radius:var(--radius);overflow:hidden;cursor:pointer;height:380px;display:block}
.mg-photo-card img{width:100%;height:100%;object-fit:cover;transition:transform .45s}
.mg-photo-card:hover img{transform:scale(1.05)}
.mg-photo-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,30,60,.80) 0%,rgba(10,30,60,.15) 55%,transparent 100%)}
.mg-photo-badge{position:absolute;top:14px;left:14px;background:var(--yellow);color:var(--text);font-size:10.5px;font-weight:800;letter-spacing:.5px;padding:4px 11px;border-radius:4px}
.mg-photo-rating{position:absolute;bottom:14px;right:14px;background:rgba(255,255,255,.95);border-radius:5px;padding:3px 9px;display:flex;align-items:center;gap:4px;font-size:11.5px;font-weight:700;color:var(--text)}
.mg-photo-rating svg{width:11px;height:11px;fill:#F59E0B}
.mg-photo-info{position:absolute;bottom:0;left:0;right:0;padding:20px}
.mg-photo-name{font-size:22px;font-weight:800;color:#fff;line-height:1.2;margin-bottom:5px}
.mg-photo-sub{font-size:12px;color:rgba(255,255,255,.70);margin-bottom:10px}
.mg-photo-foot{display:flex;align-items:center;justify-content:space-between}
.mg-photo-price{font-size:14px;font-weight:700;color:var(--yellow)}
.mg-photo-dur{display:flex;align-items:center;gap:5px;font-size:11.5px;color:rgba(255,255,255,.65);font-weight:500}
.mg-photo-dur svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}

/* Küçük kart */
.mg-small-card{background:#fff;border:1px solid #e0e0e0;border-radius:10px;overflow:hidden;cursor:pointer;transition:box-shadow .15s,transform .15s;display:flex;flex-direction:column}
.mg-small-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.1);transform:translateY(-2px)}
.mg-small-img{position:relative;height:180px;overflow:hidden;background:#d0d0d0;display:flex;align-items:center;justify-content:center}
.mg-small-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s;position:absolute;inset:0}
.mg-small-card:hover .mg-small-img img{transform:scale(1.04)}
.mg-small-body{padding:13px 14px 14px;flex:1;display:flex;flex-direction:column;gap:7px}
.mg-small-name{font-size:14.5px;font-weight:700;color:#1a3c6e;line-height:1.35}
.mg-small-rating{display:flex;align-items:center;gap:3px;font-size:11px;color:#888}
.mg-small-rating-count{color:#888;font-size:11px}
.mg-small-meta{display:flex;flex-direction:column;gap:4px}
.mg-small-meta-row{display:flex;align-items:center;gap:7px;font-size:12px;color:#555;line-height:1.4}
.mg-small-meta-row svg{flex-shrink:0}
.mg-small-divider{height:1px;background:#ebebeb;margin:2px 0}
.mg-small-from{font-size:11.5px;color:#888;margin-bottom:1px}
.mg-small-price{font-size:22px;font-weight:800;color:#1a3c6e;line-height:1.1;letter-spacing:-.5px}
.mg-small-price span{font-size:12px;font-weight:600;color:#1a3c6e;margin-left:3px}
.mg-small-book{display:block;width:100%;margin-top:auto;padding:11px;background:#FFB800;color:#0D1F35;border:none;border-radius:7px;font-size:13.5px;font-weight:700;cursor:pointer;text-align:center;font-family:inherit;text-decoration:none;transition:opacity .15s}
.mg-small-book:hover{opacity:.88;color:#0D1F35}

/* Mobile compact sizing for tour cards (homepage 2-col grid) */
@media(max-width:560px){
  .mg-small-img{height:130px}
  .mg-small-body{padding:10px 11px 11px;gap:5px}
  .mg-small-name{font-size:13px;line-height:1.3}
  .mg-small-rating{font-size:10.5px;gap:2px}
  .mg-small-meta{gap:3px}
  .mg-small-meta-row{font-size:11px;gap:5px;line-height:1.3}
  .mg-small-meta-row svg{width:11px;height:11px}
  .mg-small-divider{margin:1px 0}
  .mg-small-from{font-size:10.5px}
  .mg-small-price{font-size:18px}
  .mg-small-price span{font-size:10.5px}
  .mg-small-book{padding:9px;font-size:12.5px;border-radius:6px}
  .mg-photo-badge{font-size:10px;padding:3px 7px}
}
@media(max-width:400px){
  .mg-small-img{height:160px}
}
.mg-stats-grid{max-width:960px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,.1);border-left:1px solid rgba(255,255,255,.1)}
.mg-stat{padding:40px 32px;border-right:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1)}
.mg-stat-num{font-size:52px;font-weight:800;color:var(--yellow);line-height:1;letter-spacing:-2px;margin-bottom:8px}
.mg-stat-num sup{font-size:26px;letter-spacing:0;vertical-align:super}
.mg-stat-label{font-size:14.5px;font-weight:600;color:#fff;margin-bottom:4px}
.mg-stat-desc{font-size:12.5px;color:rgba(255,255,255,.42);line-height:1.6;font-weight:300}

/* FAQ */
.mg-faq{padding:80px 60px;background:#fff}
.mg-section-title{font-size:clamp(26px,3vw,36px);font-weight:800;text-align:center;color:var(--text);letter-spacing:-.5px;margin-bottom:48px}
.mg-faq-inner{display:grid;grid-template-columns:1fr 400px;gap:60px;align-items:start;max-width:1000px;margin:0 auto}
.mg-faq-list{display:flex;flex-direction:column;gap:10px}
.mg-faq-item{background:#FAFAFA;border:1.5px solid #F0F0F5;border-radius:var(--radius);overflow:hidden;transition:border-color .18s}
.mg-faq-item.open{background:var(--blue);border-color:var(--blue)}
.mg-faq-q{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;cursor:pointer;font-size:14.5px;font-weight:600;gap:12px;user-select:none}
.mg-faq-item.open .mg-faq-q{color:#fff}
.mg-faq-icon{width:28px;height:28px;border-radius:4px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px;color:var(--muted);font-family:serif;line-height:1;transition:all .18s}
.mg-faq-item.open .mg-faq-icon{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.28);color:#fff}
.mg-faq-a{max-height:0;overflow:hidden;transition:max-height .35s cubic-bezier(.4,0,.2,1),padding .3s;font-size:14px;line-height:1.75;color:rgba(255,255,255,.88);padding:0 22px}
.mg-faq-item.open .mg-faq-a{max-height:260px;padding:0 22px 20px}
.mg-faq-imgs{display:flex;flex-direction:column;gap:14px}
.mg-faq-img-big{height:220px;border-radius:var(--radius);overflow:hidden}
.mg-faq-img-big img{width:100%;height:100%;object-fit:cover}
.mg-faq-img-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.mg-faq-img-sm{height:150px;border-radius:var(--radius);overflow:hidden}
.mg-faq-img-sm img{width:100%;height:100%;object-fit:cover}

/* FOOTER */
footer.mg-footer{background:#0A5EA8;color:#fff}
.mg-ft-top{display:flex;align-items:center;justify-content:space-between;padding:24px 60px;border-bottom:1px solid rgba(255,255,255,.1)}
.mg-ft-logo-text{font-size:19px;font-weight:800;color:#fff;line-height:1.1}
.mg-ft-logo-text span{color:#FFB800}
.mg-ft-logo-sub{font-size:9.5px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.5);margin-top:2px;display:block}
.mg-ft-main{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:48px;padding:40px 60px;border-bottom:1px solid rgba(255,255,255,.1)}
.mg-ft-desc{font-size:13px;color:rgba(255,255,255,.6);line-height:1.85;margin-bottom:20px}
.mg-ft-col-title{font-size:10px;font-weight:700;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.9px;margin-bottom:14px}
.mg-ft-links{display:flex;flex-direction:column;gap:9px}
.mg-ft-links a{font-size:13px;color:rgba(255,255,255,.55);display:flex;align-items:center;gap:7px;transition:color .15s}
.mg-ft-links a::before{content:'';width:3px;height:3px;border-radius:50%;background:rgba(255,255,255,.25);flex-shrink:0}
.mg-ft-links a:hover{color:#fff}
.mg-ft-nl-desc{font-size:12px;color:rgba(255,255,255,.6);line-height:1.6;margin-bottom:12px}
.mg-ft-nl-form{display:flex}
.mg-ft-nl-input{flex:1;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:5px 0 0 5px;padding:9px 12px;font-size:12px;color:#fff;outline:none;font-family:'Outfit',sans-serif}
.mg-ft-nl-input::placeholder{color:rgba(255,255,255,.4)}
.mg-ft-nl-btn{background:#FFB800;color:#0D1F35;border:1px solid rgba(255,255,255,.2);border-left:none;border-radius:0 5px 5px 0;padding:9px 14px;font-size:12px;font-weight:600;cursor:pointer;font-family:'Outfit',sans-serif;white-space:nowrap}
.mg-ft-nl-btn:hover{background:#E5A500}
.mg-ft-bottom{display:flex;align-items:center;justify-content:space-between;padding:14px 60px;gap:16px}
.mg-ft-copy{font-size:11px;color:rgba(255,255,255,.4)}
.mg-ft-bottom-links{display:flex;gap:16px}
.mg-ft-bottom-links a{font-size:11px;color:rgba(255,255,255,.4);transition:color .15s}
.mg-ft-bottom-links a:hover{color:#fff}
.mg-ft-tursab{display:flex;align-items:center;gap:10px}
.mg-ft-tursab-badge{background:#C8102E;color:#fff;font-size:10px;font-weight:800;letter-spacing:.4px;padding:5px 10px;border-radius:4px}
.mg-ft-tursab-name{font-size:11px;font-weight:600;color:rgba(255,255,255,.5);display:block;line-height:1.3}
.mg-ft-tursab-no{font-size:10px;color:rgba(255,255,255,.35);display:block}

/* TUR DETAY SAYFASI */
.mg-breadcrumb-bar{background:#fff;border-bottom:1px solid var(--border);padding:11px 60px}
.mg-breadcrumb{display:flex;align-items:center;gap:6px;font-size:12.5px;color:var(--muted)}
.mg-breadcrumb a{color:var(--muted);transition:color .15s}
.mg-breadcrumb a:hover{color:var(--blue)}
.mg-breadcrumb-sep{opacity:.4}


/* 1 image: hero only, full width */
/* 2 images: hero + 1 */

/* Default right col (2-3 images) */


.mg-tour-page{max-width:1300px;margin:0 auto;padding:36px 60px 80px;display:grid;grid-template-columns:1fr 400px;gap:52px;align-items:start}
.mg-tour-meta-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.mg-tour-cat-badge{display:inline-flex;align-items:center;gap:5px;background:var(--blue-light);color:var(--blue);font-size:11px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:4px 11px;border-radius:4px}
.mg-tour-rating{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:700;color:var(--text)}
.mg-tour-rating svg{width:14px;height:14px;fill:#F59E0B}
.mg-tour-rating-count{font-size:12px;color:var(--muted);font-weight:400}
.mg-tour-h1{font-size:clamp(26px,3vw,38px);font-weight:800;color:var(--text);line-height:1.15;letter-spacing:-.8px;margin-bottom:12px}
.mg-tour-tagline{font-size:15.5px;color:var(--muted);line-height:1.7}

.mg-quick-facts{display:grid;grid-template-columns:repeat(4,1fr);border:1.5px solid var(--border);border-radius:var(--radius);background:#fff;overflow:hidden;margin:28px 0 36px}
.mg-qf{padding:16px 18px;border-right:1.5px solid var(--border);display:flex;flex-direction:column;gap:4px}
.mg-qf:last-child{border-right:none}
.mg-qf-icon{width:32px;height:32px;background:var(--blue-light);border-radius:7px;display:flex;align-items:center;justify-content:center;margin-bottom:6px}
.mg-qf-icon svg{width:16px;height:16px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round}
.mg-qf-label{font-size:10.5px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;color:var(--muted)}
.mg-qf-val{font-size:15px;font-weight:700;color:var(--text)}
.mg-qf-sub{font-size:11.5px;color:var(--muted)}

.mg-tabs{display:flex;gap:0;border-bottom:2px solid var(--border);margin-bottom:32px}
.mg-tab-btn{padding:11px 20px;font-size:14px;font-weight:600;color:var(--muted);cursor:pointer;border-bottom:2.5px solid transparent;margin-bottom:-2px;transition:color .15s,border-color .15s;white-space:nowrap;background:none;border-top:none;border-left:none;border-right:none;font-family:'Outfit',sans-serif}
.mg-tab-btn:hover{color:var(--blue)}
.mg-tab-btn.active{color:var(--blue);border-bottom-color:var(--blue)}
.mg-tab-panel{display:none}
.mg-tab-panel.active{display:block}
.mg-desc-body{line-height:1.82;color:var(--muted);font-size:15px}
.mg-desc-body p{margin-bottom:16px}
.mg-desc-body h3{font-size:17px;font-weight:700;color:var(--text);margin:24px 0 10px;letter-spacing:-.2px}
.mg-desc-body ul{padding-left:18px;margin-bottom:16px}
.mg-desc-body ul li{margin-bottom:7px}

.mg-inc-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:8px}
.mg-inc-col h4{font-size:13px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:var(--muted);margin-bottom:14px}
.mg-inc-list{list-style:none;display:flex;flex-direction:column;gap:9px}
.mg-inc-list li{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text)}
.mg-inc-yes svg{width:16px;height:16px;stroke:#22C55E;fill:none;stroke-width:2.5;stroke-linecap:round;flex-shrink:0}
.mg-inc-no svg{width:16px;height:16px;stroke:#EF4444;fill:none;stroke-width:2.5;stroke-linecap:round;flex-shrink:0}

/* SIDEBAR */
.mg-sidebar{position:sticky;top:80px;display:flex;flex-direction:column;gap:12px}
.mg-booking-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:0 2px 16px rgba(10,94,168,.07)}
.mg-bc-head{padding:20px 22px 16px;border-bottom:1px solid var(--border);display:flex;align-items:baseline;justify-content:space-between;gap:8px}
.mg-bc-price-note{font-size:11px;color:var(--muted);font-weight:500;margin-bottom:4px}
.mg-bc-price{font-size:30px;font-weight:800;color:var(--text);line-height:1;letter-spacing:-1px}
.mg-bc-price sub{font-size:12px;font-weight:400;color:var(--muted);letter-spacing:0;vertical-align:baseline}
.mg-bc-rating{display:flex;align-items:center;gap:4px;font-size:12.5px;font-weight:600;color:var(--muted);white-space:nowrap}
.mg-bc-rating svg{width:13px;height:13px;fill:#F59E0B}
.mg-bc-body{padding:18px 22px 20px}
.mg-bc-field{margin-bottom:12px}
.mg-bc-field label{display:block;font-size:11px;font-weight:600;letter-spacing:.6px;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.mg-bc-input{width:100%;padding:10px 13px;border:1px solid var(--border);border-radius:6px;font-family:'Outfit',sans-serif;font-size:14px;font-weight:500;color:var(--text);background:var(--bg);appearance:none;outline:none;transition:border-color .15s}
.mg-bc-input:focus{border-color:var(--blue);background:#fff}
select.mg-bc-input{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A6A7E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-color:var(--bg);padding-right:30px;cursor:pointer}
.mg-bc-divider{height:1px;background:var(--border);margin:14px 0}
.mg-bc-summary{display:flex;flex-direction:column;gap:8px;margin-bottom:14px}
.mg-bc-sum-row{display:flex;align-items:center;justify-content:space-between;font-size:13px}
.mg-bc-sum-label{color:var(--muted)}
.mg-bc-sum-val{font-weight:600;color:var(--text)}
.mg-bc-sum-free{font-weight:600;color:#16a34a;font-size:12.5px}
.mg-bc-total{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--border)}
.mg-bc-total-label{font-size:13.5px;font-weight:600;color:var(--text)}
.mg-bc-total-val{font-size:22px;font-weight:800;color:var(--text);letter-spacing:-.5px}
.mg-btn-cart{width:100%;background:var(--yellow);color:var(--text);border:none;border-radius:6px;padding:14px;font-family:'Outfit',sans-serif;font-size:14.5px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px;margin-bottom:8px;transition:background .15s}
.mg-btn-cart:hover{background:var(--yellow-dark)}
.mg-btn-cart svg{width:15px;height:15px;stroke:var(--text);fill:none;stroke-width:2;stroke-linecap:round}
.mg-btn-quick{width:100%;background:transparent;color:var(--blue);border:1.5px solid var(--blue);border-radius:6px;padding:11px;font-family:'Outfit',sans-serif;font-size:13.5px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:7px;margin-bottom:8px;transition:background .15s,color .15s}
.mg-btn-quick:hover{background:var(--blue);color:#fff}
.mg-btn-quick svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mg-bc-guarantee{display:flex;align-items:center;justify-content:center;gap:5px;font-size:11.5px;color:var(--muted)}
.mg-bc-guarantee svg{width:12px;height:12px;stroke:#16a34a;fill:none;stroke-width:2;stroke-linecap:round}
.mg-sidebar-trust{background:#fff;border:1px solid var(--border);border-radius:var(--radius)}
.mg-st-item{display:flex;align-items:center;gap:11px;padding:12px 18px;border-bottom:1px solid var(--border)}
.mg-st-item:last-child{border-bottom:none}
.mg-st-check{width:20px;height:20px;flex-shrink:0;stroke:#16a34a;fill:none;stroke-width:2;stroke-linecap:round}
.mg-st-title{font-size:13px;font-weight:600;color:var(--text);line-height:1.3}
.mg-st-sub{font-size:11.5px;color:var(--muted);margin-top:1px}
.mg-sidebar-contact{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.mg-sc-head{padding:14px 18px;border-bottom:1px solid var(--border)}
.mg-sc-title{font-size:13px;font-weight:700;color:var(--text);margin-bottom:2px}
.mg-sc-sub{font-size:11.5px;color:var(--muted)}
.mg-sc-body{padding:14px 18px;display:flex;flex-direction:column;gap:8px}
.mg-sc-wp{display:flex;align-items:center;gap:10px;border:1px solid var(--border);border-radius:6px;padding:11px 14px;transition:border-color .15s,background .15s;color:var(--text);text-decoration:none}
.mg-sc-wp:hover{border-color:#25D366;background:#f0fdf4}
.mg-sc-wp-static{cursor:default}
.mg-sc-wp-static:hover{border-color:var(--border);background:transparent}
.mg-sc-wp-icon{width:36px;height:36px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 1px 3px rgba(37,211,102,.25)}
.mg-sc-wp-icon svg{width:20px;height:20px;fill:#fff}
.mg-sc-wp-label{font-size:10px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;color:var(--muted);display:block;margin-bottom:2px}
.mg-sc-wp-text{font-size:14px;font-weight:700;color:var(--text)}

/* SIMILAR TOURS */
.mg-similar{background:#fff;border-top:1px solid var(--border);padding:64px 60px}
.mg-similar-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:32px}
.mg-similar-title{font-size:26px;font-weight:800;color:var(--text);letter-spacing:-.5px}
.mg-similar-link{font-size:13px;font-weight:600;color:var(--blue);display:flex;align-items:center;gap:5px}
.mg-similar-link svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;transition:transform .18s}
.mg-similar-link:hover svg{transform:translateX(3px)}
.mg-similar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}

/* CART */
.mg-cart-overlay{position:fixed;inset:0;background:rgba(13,31,53,.4);z-index:600;opacity:0;pointer-events:none;transition:opacity .25s}
.mg-cart-overlay.open{opacity:1;pointer-events:auto}
.mg-cart-drawer{position:fixed;right:0;top:0;bottom:0;z-index:700;width:440px;background:#fff;box-shadow:-8px 0 40px rgba(0,0,0,.12);display:flex;flex-direction:column;transform:translateX(110%);transition:transform .3s cubic-bezier(.4,0,.2,1)}
.mg-cart-drawer.open{transform:translateX(0)}
.mg-cd-header{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid var(--border);flex-shrink:0}
.mg-cd-title{font-size:16px;font-weight:800;color:var(--text);letter-spacing:-.2px}
.mg-cd-close{width:32px;height:32px;border-radius:6px;border:1px solid var(--border);background:transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s}
.mg-cd-close:hover{background:var(--bg)}
.mg-cd-close svg{width:14px;height:14px;stroke:var(--muted);fill:none;stroke-width:2;stroke-linecap:round}
.mg-cd-items{flex:1;overflow-y:auto;padding:16px 22px;display:flex;flex-direction:column;gap:12px}
.mg-cd-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;color:var(--muted);text-align:center;padding:40px}
.mg-cd-empty svg{width:48px;height:48px;stroke:var(--border);fill:none;stroke-width:1.5;stroke-linecap:round}
.mg-cd-empty p{font-size:14px;line-height:1.6}
.mg-cart-item{display:flex;gap:12px;align-items:flex-start;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:14px;position:relative}
.mg-ci-img{width:64px;height:64px;border-radius:6px;overflow:hidden;flex-shrink:0}
.mg-ci-img img{width:100%;height:100%;object-fit:cover}
.mg-ci-body{flex:1;min-width:0}
.mg-ci-cat{font-size:10px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;color:var(--blue);margin-bottom:3px}
.mg-ci-name{font-size:14px;font-weight:700;color:var(--text);margin-bottom:6px;line-height:1.3}
.mg-ci-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.mg-ci-date{font-size:12px;color:var(--muted)}
.mg-ci-pax{display:flex;align-items:center;gap:6px}
.mg-ci-pax-btn{width:24px;height:24px;border-radius:5px;border:1px solid var(--border);background:#fff;cursor:pointer;font-size:14px;font-weight:700;display:flex;align-items:center;justify-content:center;color:var(--muted);transition:border-color .12s,color .12s;line-height:1;font-family:'Outfit',sans-serif}
.mg-ci-pax-btn:hover{border-color:var(--blue);color:var(--blue)}
.mg-ci-pax-num{font-size:13px;font-weight:700;color:var(--text);width:16px;text-align:center}
.mg-ci-price{font-size:15px;font-weight:800;color:var(--text);white-space:nowrap}
.mg-ci-remove{width:26px;height:26px;border-radius:4px;border:none;background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--muted);transition:background .12s,color .12s;flex-shrink:0}
.mg-ci-remove:hover{background:var(--bg);color:#dc2626}
.mg-ci-remove svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mg-cd-footer{padding:16px 22px 22px;border-top:1px solid var(--border);flex-shrink:0;background:#fff}
.mg-cd-summary{display:flex;flex-direction:column;gap:7px;margin-bottom:14px}
.mg-cd-sum-row{display:flex;align-items:center;justify-content:space-between;font-size:13px}
.mg-cd-sum-label{color:var(--muted)}
.mg-cd-sum-val{font-weight:600;color:var(--text)}
.mg-cd-sum-free{font-weight:600;color:#16a34a}
.mg-cd-total{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--border);margin-bottom:16px}
.mg-cd-total-label{font-size:14px;font-weight:600;color:var(--text)}
.mg-cd-total-val{font-size:24px;font-weight:800;color:var(--text);letter-spacing:-.5px}
.mg-cd-checkout{width:100%;background:var(--yellow);color:var(--text);border:none;border-radius:6px;padding:14px;font-family:'Outfit',sans-serif;font-size:15px;font-weight:800;display:flex;align-items:center;justify-content:center;gap:8px;cursor:pointer;transition:background .15s}
.mg-cd-checkout:hover{background:var(--yellow-dark)}
.mg-cd-checkout svg{width:15px;height:15px;stroke:var(--text);fill:none;stroke-width:2.5;stroke-linecap:round}
.mg-cd-note{text-align:center;font-size:11.5px;color:var(--muted);margin-top:10px;display:flex;align-items:center;justify-content:center;gap:5px}
.mg-cd-note svg{width:12px;height:12px;stroke:#16a34a;fill:none;stroke-width:2;stroke-linecap:round}
.mg-cart-float{position:fixed;bottom:28px;right:28px;z-index:500}
.mg-cart-float-btn{display:flex;align-items:center;gap:10px;background:var(--blue);color:#fff;border:none;border-radius:50px;padding:13px 22px 13px 16px;font-family:'Outfit',sans-serif;font-size:14.5px;font-weight:700;cursor:pointer;box-shadow:0 4px 20px rgba(10,94,168,.35);transition:background .15s,transform .15s}
.mg-cart-float-btn:hover{background:var(--blue-dark);transform:translateY(-2px)}
.mg-cart-float-btn svg{width:20px;height:20px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round}
.mg-cart-badge-float{background:var(--yellow);color:var(--text);font-size:12px;font-weight:800;width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-left:2px}
.mg-toast{position:fixed;bottom:90px;right:28px;z-index:800;background:var(--text);color:#fff;padding:12px 18px;border-radius:8px;font-size:13.5px;font-weight:600;display:flex;align-items:center;gap:8px;box-shadow:0 4px 20px rgba(0,0,0,.2);transform:translateY(20px);opacity:0;transition:all .3s;pointer-events:none}
.mg-toast.show{transform:translateY(0);opacity:1}
.mg-toast svg{width:15px;height:15px;stroke:#fff;fill:none;stroke-width:2.5;stroke-linecap:round}

/* QR MODAL */
.mg-qr-overlay{position:fixed;inset:0;background:rgba(13,31,53,.5);z-index:800;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .22s;padding:20px}
.mg-qr-overlay.open{opacity:1;pointer-events:auto}
.mg-qr-modal{background:#fff;border-radius:var(--radius);width:100%;max-width:520px;box-shadow:0 24px 64px rgba(0,0,0,.18);transform:translateY(16px) scale(.98);transition:transform .25s cubic-bezier(.4,0,.2,1);overflow:hidden}
.mg-qr-overlay.open .mg-qr-modal{transform:translateY(0) scale(1)}
.mg-qr-header{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;border-bottom:1px solid var(--border)}
.mg-qr-title{font-size:16px;font-weight:800;color:var(--text);letter-spacing:-.2px}
.mg-qr-close{width:30px;height:30px;border-radius:5px;border:1px solid var(--border);background:transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .12s}
.mg-qr-close:hover{background:var(--bg)}
.mg-qr-close svg{width:13px;height:13px;stroke:var(--muted);fill:none;stroke-width:2;stroke-linecap:round}
.mg-qr-tour-row{display:flex;align-items:center;gap:13px;padding:16px 22px;background:var(--bg);border-bottom:1px solid var(--border)}
.mg-qr-tour-img{width:52px;height:52px;border-radius:6px;overflow:hidden;flex-shrink:0}
.mg-qr-tour-img img{width:100%;height:100%;object-fit:cover}
.mg-qr-tour-name{font-size:14px;font-weight:700;color:var(--text);line-height:1.3}
.mg-qr-tour-meta{font-size:12px;color:var(--muted);margin-top:3px}
.mg-qr-body{padding:20px 22px}
.mg-qr-fields{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:14px}
.mg-qr-field{display:flex;flex-direction:column;gap:6px}
.mg-qr-field.full{grid-column:span 2}
.mg-qr-label{font-size:11px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;color:var(--muted)}
.mg-qr-input{width:100%;padding:10px 12px;border:1px solid var(--border);border-radius:6px;font-family:'Outfit',sans-serif;font-size:14px;font-weight:500;color:var(--text);background:var(--bg);appearance:none;outline:none;transition:border-color .15s}
.mg-qr-input:focus{border-color:var(--blue);background:#fff}
select.mg-qr-input{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A6A7E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;background-color:var(--bg);padding-right:28px;cursor:pointer}
.mg-qr-note{font-size:12px;color:var(--muted);background:var(--blue-light);border-radius:6px;padding:10px 13px;line-height:1.6;margin-bottom:16px;display:flex;align-items:flex-start;gap:8px}
.mg-qr-note svg{width:14px;height:14px;stroke:var(--blue);fill:none;stroke-width:2;flex-shrink:0;margin-top:1px}
.mg-qr-price-row{display:flex;align-items:center;justify-content:space-between;padding:12px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);margin-bottom:16px}
.mg-qr-price-label{font-size:13px;font-weight:500;color:var(--muted)}
.mg-qr-price-val{font-size:22px;font-weight:800;color:var(--text);letter-spacing:-.5px}
.mg-qr-submit{width:100%;background:var(--yellow);color:var(--text);border:none;border-radius:6px;padding:14px;font-family:'Outfit',sans-serif;font-size:15px;font-weight:800;display:flex;align-items:center;justify-content:center;gap:8px;cursor:pointer;transition:background .15s}
.mg-qr-submit:hover{background:var(--yellow-dark)}
.mg-qr-success{display:none;flex-direction:column;align-items:center;padding:40px 28px;text-align:center;gap:14px}
.mg-qr-success-icon{width:56px;height:56px;border-radius:50%;background:#dcfce7;display:flex;align-items:center;justify-content:center}
.mg-qr-success-icon svg{width:26px;height:26px;stroke:#16a34a;fill:none;stroke-width:2.5;stroke-linecap:round}
.mg-qr-success h3{font-size:18px;font-weight:800;color:var(--text)}
.mg-qr-success p{font-size:13.5px;color:var(--muted);line-height:1.65;max-width:340px}
.mg-qr-success-close{background:var(--blue);color:#fff;border:none;border-radius:6px;padding:11px 28px;font-family:'Outfit',sans-serif;font-size:14px;font-weight:700;cursor:pointer;transition:background .15s;margin-top:6px}
.mg-qr-success-close:hover{background:var(--blue-dark)}

/* MOBİL */
@media(max-width:900px){
.mg-nav{padding:12px 24px}
.mg-nav-links{display:none}
.mg-hero-content{padding:0 24px}
.mg-booking{padding:0 24px}
.mg-stats{padding:60px 24px}
.mg-faq{padding:60px 24px}
.mg-similar{padding:48px 24px}
.mg-ft-top,.mg-ft-main,.mg-ft-bottom{padding:20px 24px}
.mg-ft-main{grid-template-columns:1fr 1fr;gap:28px}
.mg-tour-page{grid-template-columns:1fr;padding:28px 24px 60px}
.mg-sidebar{position:static}
.mg-quick-facts{grid-template-columns:1fr 1fr}
.mg-tours-wrap{padding:0 24px}
.mg-similar-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
.mg-nav{padding:12px 16px}
.mg-logo-sub{display:none}
.mg-cart-btn span.nav-cart-label{display:none}
.mg-hero-content{padding:0 16px}
.mg-booking{padding:0 16px;margin-top:-50px}
.mg-row-feat{grid-template-columns:1fr}
.mg-row-4{grid-template-columns:1fr 1fr}
.mg-stats{padding:40px 16px}
.mg-stats-grid{grid-template-columns:1fr 1fr}
.mg-faq{padding:48px 16px}
.mg-faq-inner{grid-template-columns:1fr}
.mg-faq-imgs{display:none}
.mg-similar-grid{grid-template-columns:1fr}
.mg-similar-grid .mg-small-card:nth-child(n+4){display:none}
.mg-tour-page{padding:20px 16px 80px}
.mg-quick-facts{grid-template-columns:1fr 1fr}
.mg-inc-grid{grid-template-columns:1fr}
.mg-tabs{overflow-x:auto;scrollbar-width:none}
.mg-tabs::-webkit-scrollbar{display:none}
.mg-cart-drawer{width:100%;border-radius:16px 16px 0 0;top:auto;height:88vh}
.mg-qr-modal{border-radius:16px 16px 0 0}
.mg-qr-overlay{align-items:flex-end;padding:0}
.mg-qr-fields{grid-template-columns:1fr}
.mg-qr-field.full{grid-column:span 1}
.mg-ft-main{grid-template-columns:1fr;gap:20px;padding:24px 16px}
.mg-ft-top{flex-direction:column;align-items:flex-start;gap:14px;padding:18px 16px}
.mg-ft-bottom{flex-wrap:wrap;padding:12px 16px}
.mg-tours-wrap{padding:0 16px}
/* Mobil sticky bar */
.mg-mobile-bar{position:fixed;bottom:0;left:0;right:0;z-index:200;background:#fff;border-top:1px solid var(--border);padding:12px 16px;display:flex;align-items:center;justify-content:space-between;gap:10px;box-shadow:0 -4px 20px rgba(0,0,0,.08)}
.mg-mb-price-note{font-size:10.5px;color:var(--muted);display:block}
.mg-mb-price-val{font-size:20px;font-weight:800;color:var(--text);letter-spacing:-.5px}
.mg-mb-actions{display:flex;gap:8px}
.mg-mb-btn-cart{background:var(--bg);color:var(--blue);border:1.5px solid var(--blue);border-radius:6px;padding:10px 14px;font-family:'Outfit',sans-serif;font-size:13px;font-weight:700;cursor:pointer;display:flex;align-items:center;gap:6px;white-space:nowrap}
.mg-mb-btn-cart svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mg-mb-btn-reserve{background:var(--yellow);color:var(--text);border:none;border-radius:6px;padding:10px 16px;font-family:'Outfit',sans-serif;font-size:13px;font-weight:800;cursor:pointer;white-space:nowrap}
}
@media(min-width:769px){.mg-mobile-bar{display:none}}
/* ── DETAY PANEL ── */
.mg-detail-block{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:22px 24px}
.mg-detail-title{display:flex;align-items:center;gap:9px;font-size:16px;font-weight:700;color:var(--text);margin-bottom:16px;letter-spacing:-.2px}
.mg-detail-title svg{flex-shrink:0}
.mg-detail-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.mg-detail-list li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--text);line-height:1.5}
.mg-detail-list li svg{flex-shrink:0;margin-top:1px}
.mg-detail-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.mg-detail-info-item{background:var(--bg);border-radius:7px;padding:12px 14px}
.mg-detail-info-label{display:block;font-size:10.5px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;color:var(--muted);margin-bottom:4px}
.mg-detail-info-val{font-size:15px;font-weight:700;color:var(--text)}

/* ── ÇAKIŞMA UYARI MODALİ ── */
.mg-conflict-overlay{position:fixed;inset:0;background:rgba(13,31,53,.55);z-index:900;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .22s;padding:20px}
.mg-conflict-overlay.open{opacity:1;pointer-events:auto}
.mg-conflict-modal{background:#fff;border-radius:12px;width:100%;max-width:460px;box-shadow:0 24px 64px rgba(0,0,0,.18);transform:translateY(12px) scale(.98);transition:transform .25s cubic-bezier(.4,0,.2,1);overflow:hidden}
.mg-conflict-overlay.open .mg-conflict-modal{transform:translateY(0) scale(1)}
.mg-conflict-header{padding:22px 24px 0;display:flex;align-items:flex-start;gap:14px}
.mg-conflict-icon{width:44px;height:44px;border-radius:50%;background:#FFF7ED;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.mg-conflict-icon svg{width:22px;height:22px;stroke:#F59E0B;fill:none;stroke-width:2;stroke-linecap:round}
.mg-conflict-head-text{}
.mg-conflict-title{font-size:16px;font-weight:800;color:var(--text);line-height:1.3;margin-bottom:6px}
.mg-conflict-subtitle{font-size:13px;color:var(--muted);line-height:1.6}
.mg-conflict-existing{margin:18px 24px;background:var(--bg);border:1.5px solid var(--border);border-radius:8px;padding:14px 16px;display:flex;align-items:center;gap:12px}
.mg-conflict-existing-img{width:48px;height:48px;border-radius:6px;overflow:hidden;flex-shrink:0}
.mg-conflict-existing-img img{width:100%;height:100%;object-fit:cover}
.mg-conflict-existing-name{font-size:13.5px;font-weight:700;color:var(--text);line-height:1.3;margin-bottom:3px}
.mg-conflict-existing-date{font-size:12px;color:var(--muted);display:flex;align-items:center;gap:5px}
.mg-conflict-existing-date svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mg-conflict-actions{padding:0 24px 24px;display:flex;flex-direction:column;gap:8px}
.mg-conflict-btn{width:100%;border-radius:7px;padding:13px 16px;font-family:'Outfit',sans-serif;font-size:13.5px;font-weight:700;display:flex;align-items:center;gap:10px;cursor:pointer;transition:all .15s;text-align:left}
.mg-conflict-btn svg{width:16px;height:16px;flex-shrink:0;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mg-conflict-btn-primary{background:var(--blue);color:#fff;border:none}
.mg-conflict-btn-primary:hover{background:var(--blue-dark)}
.mg-conflict-btn-secondary{background:var(--bg);color:var(--text);border:1.5px solid var(--border)}
.mg-conflict-btn-secondary:hover{border-color:var(--blue);background:var(--blue-light);color:var(--blue)}
.mg-conflict-btn-danger{background:#fff;color:#dc2626;border:1.5px solid #FECACA}
.mg-conflict-btn-danger:hover{background:#FEF2F2;border-color:#dc2626}
.mg-conflict-btn-text{display:flex;flex-direction:column}
.mg-conflict-btn-label{font-size:13.5px;font-weight:700;line-height:1.3}
.mg-conflict-btn-sub{font-size:11.5px;font-weight:400;opacity:.8;margin-top:1px}
.mg-conflict-cancel{text-align:center;padding-top:4px}
.mg-conflict-cancel button{background:none;border:none;font-family:'Outfit',sans-serif;font-size:12.5px;color:var(--muted);cursor:pointer;transition:color .15s}
.mg-conflict-cancel button:hover{color:var(--text)}

/* ── SAAT SLOT BUTONLARI ── */
.mg-time-slots{display:flex;gap:8px;flex-wrap:wrap;margin-top:2px}
.mg-time-slot{display:inline-flex;align-items:center;gap:6px;padding:8px 14px;border:1.5px solid var(--border);border-radius:6px;background:#fff;font-family:'Outfit',sans-serif;font-size:13px;font-weight:600;color:var(--muted);cursor:pointer;transition:all .15s}
.mg-time-slot:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-light)}
.mg-time-slot.active{border-color:var(--blue);background:var(--blue);color:#fff}
.mg-time-slot.active svg{stroke:#fff}
.mg-time-slot svg{stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}

/* ── PAX GRID (yetişkin/çocuk/bebek) ── */
.mg-pax-grid{display:flex;flex-direction:column;gap:0;border:1.5px solid var(--border);border-radius:8px;overflow:hidden;margin-top:2px}
.mg-pax-row{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid var(--border);background:#fff}
.mg-pax-row:last-child{border-bottom:none}
.mg-pax-info{display:flex;flex-direction:column;gap:2px}
.mg-pax-label{font-size:14px;font-weight:600;color:var(--text)}
.mg-pax-age{font-size:11.5px;color:var(--muted)}
.mg-pax-ctrl{display:flex;align-items:center;gap:10px}
.mg-pax-btn{width:28px;height:28px;border-radius:6px;border:1.5px solid var(--border);background:#fff;cursor:pointer;font-size:16px;font-weight:700;display:flex;align-items:center;justify-content:center;color:var(--muted);transition:all .15s;line-height:1;font-family:'Outfit',sans-serif}
.mg-pax-btn:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-light)}
.mg-pax-num{font-size:16px;font-weight:800;color:var(--text);min-width:20px;text-align:center}

/* ── SEPET: saat ve yaş bilgisi ── */
.mg-ci-time{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:600;color:var(--blue);background:var(--blue-light);padding:2px 8px;border-radius:4px}
.mg-ci-time svg{width:10px;height:10px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.mg-ci-pax-detail{font-size:11.5px;color:var(--muted);margin-top:4px;line-height:1.5}

/* ── GBP ROZET ── */
.mg-gbp-badge{display:none}
.mg-tl-badge{display:none}
.mg-bc-gbp{display:none}
.mg-bc-gbp-note{font-size:10px;font-weight:400;color:var(--muted);font-style:italic}

/* ─────────────────────────────────────────────
   MOBİL UYUMLULUK — Genel İyileştirmeler
───────────────────────────────────────────── */

/* Nav hamburger (mobil) */
.mg-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;border:none;background:transparent}
.mg-hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:all .25s}
.mg-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mg-hamburger.open span:nth-child(2){opacity:0}
.mg-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mg-nav-mobile{display:none;position:fixed;top:64px;left:0;right:0;background:#fff;border-top:1px solid var(--border);padding:12px 16px;box-shadow:0 8px 24px rgba(0,0,0,.1);z-index:199;flex-direction:column;gap:2px}
.mg-nav-mobile.open{display:flex}
.mg-nav-mobile a,.mg-nav-mobile .menu-item > a{padding:12px 16px;font-size:15px;font-weight:600;color:var(--text);border-radius:6px;display:block;transition:background .12s}
.mg-nav-mobile a:hover,.mg-nav-mobile .menu-item > a:hover{background:var(--bg);color:var(--blue)}
.mg-nav-mobile .menu-item-has-children > a{display:flex;justify-content:space-between;align-items:center}
.mg-nav-mobile .menu-item-has-children > a::after{content:"";width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);transition:transform .2s}
.mg-nav-mobile .menu-item-has-children.open > a::after{transform:rotate(-135deg)}
.mg-nav-mobile .sub-menu{display:none;padding-left:16px;list-style:none}
.mg-nav-mobile .menu-item-has-children.open > .sub-menu{display:block}
.mg-nav-mobile .sub-menu .menu-heading > a{font-size:10px;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:.8px;padding:8px 16px 2px;pointer-events:none}

@media(max-width:900px){
  .mg-nav{padding:12px 24px}
  .mg-nav-links{display:none}
  .mg-hamburger{display:flex}
  .mg-hero-content{padding:0 24px}
  .mg-booking{padding:0 24px}
  .mg-booking-wrap{border-radius:8px}
  .mg-booking-row{flex-direction:column}
  .mg-field{border-right:none!important;border-bottom:1.5px solid var(--border)}
  .mg-field:last-of-type{border-bottom:none}
  .mg-search-btn{align-self:stretch;justify-content:center;padding:16px}
          .mg-stats-grid{grid-template-columns:1fr 1fr}
  .mg-faq{padding:60px 24px}
  .mg-faq-inner{grid-template-columns:1fr}
  .mg-faq-imgs{display:none}
  .mg-ft-main{grid-template-columns:1fr 1fr;gap:28px;padding:32px 24px}
  .mg-ft-top{padding:20px 24px}
  .mg-ft-bottom{padding:14px 24px;flex-wrap:wrap;gap:10px}
  .mg-tour-page{grid-template-columns:1fr;padding:28px 24px 60px}
  .mg-sidebar{position:static;top:auto}
  .mg-quick-facts{grid-template-columns:1fr 1fr}
  .mg-similar-grid{grid-template-columns:1fr 1fr}
  .mg-similar{padding:48px 24px}
  .mg-breadcrumb-bar{padding:11px 24px}
  .mg-tours-wrap{padding:0 24px}
  .mg-tours{padding:52px 0}
  .mg-row-feat{grid-template-columns:1fr}
  .mg-row-4{grid-template-columns:1fr 1fr}
}

@media(max-width:640px){
  /* NAV */
  .mg-nav{padding:10px 16px}
  .mg-logo-sub{display:none}

  /* HERO */
  .mg-hero{height:480px}
  .mg-hero-content{padding:0 16px}
  .mg-hero h1{font-size:26px;letter-spacing:-.5px}
  .mg-hero-lead{font-size:14px}
  .mg-hero-chips{gap:6px}
  .mg-hero-chip{font-size:11px;padding:5px 10px}

  /* BOOKING */
  .mg-booking{padding:0 12px;margin-top:-40px}
  .mg-booking-wrap{padding:12px 14px}
  .mg-booking-tabs{gap:0;overflow-x:auto;scrollbar-width:none;padding-bottom:2px}
  .mg-booking-tabs::-webkit-scrollbar{display:none}
  .mg-tab{font-size:12px;padding:6px 0;min-width:90px}
  .mg-field{padding:10px 12px}

  /* TRUST */
  .mg-trust-inner{grid-template-columns:1fr}

  /* TOURS */
  .mg-tours{padding:40px 0}
  .mg-tours-wrap{padding:0 12px}
  .mg-tours-head{flex-direction:column;align-items:flex-start;gap:12px;margin-bottom:24px}
  .mg-tours-title{font-size:22px}
  .mg-row-4{grid-template-columns:1fr}
  .mg-photo-card{height:300px!important}
  .mg-photo-name{font-size:18px}

  /* STATS */
  .mg-stats{padding:36px 16px}
  .mg-stats-grid{grid-template-columns:1fr 1fr}
  .mg-stat{padding:24px 16px}
  .mg-stat-num{font-size:38px}

  /* FAQ */
  .mg-faq{padding:40px 16px}
  .mg-section-title{font-size:22px;margin-bottom:28px}
  .mg-faq-q{font-size:13.5px;padding:14px 16px}

  /* FOOTER */
  .mg-ft-main{grid-template-columns:1fr;gap:20px;padding:24px 16px}
  .mg-ft-top{flex-direction:column;gap:12px;padding:16px}
  .mg-ft-bottom{padding:12px 16px;flex-direction:column;align-items:flex-start;gap:8px}
  .mg-ft-tursab{flex-direction:column;align-items:flex-start;gap:6px}

  /* TUR DETAY */
  .mg-breadcrumb-bar{padding:10px 16px}
  .mg-breadcrumb{font-size:11.5px}
  .mg-tour-page{padding:12px 12px 80px}
  .mg-tour-h1{font-size:20px;letter-spacing:-.3px}
  .mg-tour-tagline{font-size:13px}
  .mg-quick-facts{grid-template-columns:1fr 1fr;gap:8px}
  .mg-qf{padding:10px 10px}
  .mg-qf-label{font-size:9.5px}
  .mg-qf-val{font-size:12.5px}
  .mg-qf-sub{font-size:10px}
  .mg-qf-time-badge{font-size:11px;padding:3px 7px}
  .mg-tabs{overflow-x:auto;scrollbar-width:none;gap:0}
  .mg-tabs::-webkit-scrollbar{display:none}
  .mg-tab-btn{font-size:13px;padding:10px 14px;white-space:nowrap}
  .mg-inc-grid{grid-template-columns:1fr}
  .mg-detail-info-grid{grid-template-columns:1fr 1fr}
  .mg-bc-body{padding:12px 12px 14px}
  .mg-pax-row{padding:8px 10px}
  .mg-pax-label{font-size:12.5px}
  .mg-pax-age{font-size:10.5px}
  .mg-time-slots{gap:6px}
  .mg-time-slot{padding:7px 11px;font-size:12px}
  .mg-similar{padding:36px 16px}
  .mg-similar-grid{grid-template-columns:1fr}

  /* QR MODAL */
  .mg-qr-overlay{align-items:flex-end;padding:0}
  .mg-qr-modal{border-radius:16px 16px 0 0;max-height:92vh;overflow-y:auto}
  .mg-qr-fields{grid-template-columns:1fr}
  .mg-qr-field.full{grid-column:span 1}

  /* CONFLICT MODAL */
  .mg-conflict-overlay{align-items:flex-end;padding:0}
  .mg-conflict-modal{border-radius:16px 16px 0 0}
  .mg-conflict-actions{padding:0 16px 24px}
  .mg-conflict-header{padding:18px 16px 0}

  /* CART DRAWER */
  .mg-cart-drawer{width:100%;border-radius:16px 16px 0 0;top:auto;height:88vh}
  .mg-cart-float{bottom:80px;right:16px}
  .mg-cart-float-btn{padding:11px 16px 11px 12px;font-size:13px}
  .mg-toast{bottom:80px;right:16px;left:16px;border-radius:8px}
}

/* Küçük ekranlar için extra */
@media(max-width:380px){
  .mg-hero{height:440px}
  .mg-hero h1{font-size:28px}
  .mg-stat-num{font-size:32px}
  .mg-row-4{grid-template-columns:1fr}
  .mg-similar-grid{grid-template-columns:1fr}
}

/* Date field — entire area clickable */
.mg-bc-field input[type="date"],
.mg-bc-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  width: 100%;
}
.mg-bc-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  width: 18px;
  height: 18px;
}
/* ══════════════════════════════════════════
   GALLERY — Desktop mosaic + Mobile slider
══════════════════════════════════════════ */
.mg-gallery { background:#fff; overflow:hidden; }

/* ── Desktop mosaic ── */
.mg-gal-desktop { display:block; position:relative; }
.mg-gal-mosaic  { display:grid; gap:6px; height:520px; padding:0 60px; }
/* 1 image */
.mg-gal-mosaic[data-total="1"] { grid-template-columns:1fr; }
/* 2–5 images: left hero + right column */
.mg-gal-mosaic:not([data-total="1"]) { grid-template-columns:1.65fr 1fr; }
.mg-gal-main  { position:relative; overflow:hidden; cursor:pointer; border-radius:10px; }
.mg-gal-main img { width:100%; height:100%; object-fit:cover; transition:transform .4s; display:block; }
.mg-gal-main:hover img { transform:scale(1.03); }
.mg-gal-overlay { position:absolute; inset:0; background:transparent; transition:background .2s; }
.mg-gal-main:hover .mg-gal-overlay { background:rgba(0,0,0,.08); }
.mg-gal-side    { display:grid; gap:6px; grid-template-rows:repeat(auto-fit,minmax(0,1fr)); }
.mg-gal-side-item { position:relative; overflow:hidden; cursor:pointer; border-radius:8px; }
.mg-gal-side-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s; display:block; }
.mg-gal-side-item:hover img { transform:scale(1.04); }
.mg-gal-side-item:hover .mg-gal-overlay { background:rgba(0,0,0,.08); }
.mg-gal-more-overlay { position:absolute; inset:0; background:rgba(10,30,60,.55); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; }
.mg-gal-more-num { font-size:28px; font-weight:800; color:#fff; line-height:1; }
.mg-gal-more-txt { font-size:11px; font-weight:600; color:rgba(255,255,255,.8); letter-spacing:.5px; text-transform:uppercase; }
.mg-gal-viewall { position:absolute; bottom:14px; right:74px; background:rgba(255,255,255,.95); border:none; border-radius:6px; padding:8px 14px; font-family:'Outfit',sans-serif; font-size:12.5px; font-weight:700; color:var(--text); cursor:pointer; display:flex; align-items:center; gap:6px; box-shadow:0 2px 10px rgba(0,0,0,.12); transition:background .15s; }
.mg-gal-viewall:hover { background:#fff; }
.mg-gal-viewall svg { stroke:var(--blue); }

/* ── Mobile slider (hidden on desktop) ── */
.mg-gal-mobile { display:none; position:relative; overflow:hidden; }
.mg-gal-track  { display:flex; transition:transform .38s cubic-bezier(.4,0,.2,1); }
.mg-gal-slide  { flex:0 0 100%; position:relative; height:280px; overflow:hidden; cursor:pointer; }
.mg-gal-slide img { width:100%; height:100%; object-fit:cover; display:block; }
.mg-gal-nav    { position:absolute; bottom:44px; left:0; right:0; display:flex; align-items:center; justify-content:center; gap:10px; }
.mg-gal-prev, .mg-gal-next { width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.85); border:none; font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--text); transition:background .15s; line-height:1; padding-bottom:1px; }
.mg-gal-prev:hover, .mg-gal-next:hover { background:#fff; }
.mg-gal-dots   { display:flex; gap:5px; }
.mg-gal-dot    { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.5); transition:background .2s,transform .2s; }
.mg-gal-dot.active { background:#fff; transform:scale(1.3); }
.mg-gal-counter { position:absolute; bottom:14px; right:14px; background:rgba(0,0,0,.45); color:#fff; font-size:11.5px; font-weight:700; padding:3px 9px; border-radius:20px; pointer-events:none; }

/* ── Lightbox ── */
.mg-lightbox { position:fixed; inset:0; z-index:1000; background:rgba(0,0,0,.94); display:none; flex-direction:column; align-items:center; justify-content:center; opacity:0; transition:opacity .25s; }
.mg-lightbox.open { display:flex; opacity:1; }
.mg-lb-close  { position:absolute; top:16px; right:20px; background:rgba(255,255,255,.12); border:none; color:#fff; width:38px; height:38px; border-radius:50%; font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s; z-index:10; }
.mg-lb-close:hover { background:rgba(255,255,255,.25); }
.mg-lb-prev, .mg-lb-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); border:none; color:#fff; width:46px; height:46px; border-radius:50%; font-size:26px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s; z-index:10; margin-top:-40px; }
.mg-lb-prev  { left:20px; padding-right:2px; }
.mg-lb-next  { right:20px; padding-left:2px; }
.mg-lb-prev:hover, .mg-lb-next:hover { background:rgba(255,255,255,.25); }
.mg-lb-img-wrap { position:relative; max-width:90vw; max-height:72vh; display:flex; align-items:center; justify-content:center; }
.mg-lb-img  { max-width:90vw; max-height:72vh; object-fit:contain; border-radius:6px; transition:opacity .22s; display:block; }
.mg-lb-loader { position:absolute; inset:0; display:none; }
.mg-lb-loader::after { content:''; display:block; width:32px; height:32px; border:3px solid rgba(255,255,255,.2); border-top-color:#fff; border-radius:50%; animation:mgSpin .7s linear infinite; position:absolute; top:50%; left:50%; margin:-16px; }
@keyframes mgSpin { to{transform:rotate(360deg)} }
.mg-lb-counter { color:rgba(255,255,255,.6); font-size:13px; font-weight:600; margin-top:12px; }
.mg-lb-thumbs  { display:flex; gap:6px; margin-top:14px; overflow-x:auto; max-width:90vw; padding-bottom:4px; scrollbar-width:none; }
.mg-lb-thumbs::-webkit-scrollbar { display:none; }
.mg-lb-thumb   { flex:0 0 60px; height:44px; border-radius:5px; overflow:hidden; cursor:pointer; opacity:.5; transition:opacity .15s,transform .15s; border:2px solid transparent; }
.mg-lb-thumb.active { opacity:1; border-color:#fff; }
.mg-lb-thumb:hover  { opacity:.85; }
.mg-lb-thumb img { width:100%; height:100%; object-fit:cover; display:block; }

@media(max-width:1024px) {
  .mg-gal-mosaic { padding:0 24px; height:420px; }
  .mg-gal-viewall { right:32px; }
}
@media(max-width:640px) {
  .mg-gal-desktop { display:none; }
  .mg-gal-mobile  { display:block; }
  .mg-lb-prev { left:8px; width:36px; height:36px; font-size:22px; }
  .mg-lb-next { right:8px; width:36px; height:36px; font-size:22px; }
  .mg-lb-img  { max-width:96vw; }
  .mg-lb-thumbs { max-width:96vw; }
}

/* Tour card excerpt — SEO short description */
.mg-small-excerpt{font-size:12.5px;color:var(--muted);line-height:1.55;margin:4px 0 8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

/* Multiple departure time badges */
.mg-qf-times{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:3px}
.mg-qf-time-badge{display:inline-flex;align-items:center;background:var(--blue-light);color:var(--blue);border:1px solid var(--border);border-radius:5px;font-size:13px;font-weight:700;padding:3px 10px;line-height:1.3;white-space:nowrap}
.mg-qf-time-badge::before{content:'';display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--blue);margin-right:5px;flex-shrink:0}

/* ── Included / Excluded TABLE ── */
.mg-inc-table{width:100%;border-collapse:collapse;font-size:14px;margin-bottom:8px}
.mg-inc-th-yes,.mg-inc-th-no{padding:10px 14px;font-size:11px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;border-bottom:2px solid;width:50%}
.mg-inc-th-yes{color:#16a34a;border-color:#16a34a;text-align:left}
.mg-inc-th-no{color:#dc2626;border-color:#dc2626;text-align:left}
.mg-inc-td-yes,.mg-inc-td-no{padding:9px 14px;vertical-align:top;border-bottom:1px solid var(--border);display:table-cell;line-height:1.4}
.mg-inc-table tbody tr:last-child td{border-bottom:none}
.mg-inc-table tbody tr:hover{background:var(--bg)}
.mg-inc-td-yes{display:flex;align-items:flex-start;gap:8px;color:var(--text)}
.mg-inc-td-no{display:flex;align-items:flex-start;gap:8px;color:var(--text)}
.mg-inc-td-yes,.mg-inc-td-no{display:table-cell}
.mg-inc-dot-yes,.mg-inc-dot-no{display:inline-block;width:8px;height:8px;border-radius:50%;margin-right:7px;flex-shrink:0;vertical-align:middle;margin-top:3px}
.mg-inc-dot-yes{background:#16a34a}
.mg-inc-dot-no{background:#dc2626}

/* ── TOUR PACKAGES ── */
.mg-pkg-section{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:8px}
.mg-pkg-section:last-child{margin-bottom:0}
.mg-pkg-section-head{padding:9px 14px;background:var(--bg);border-bottom:1px solid var(--border)}
.mg-pkg-section-name{font-size:13.5px;font-weight:700;color:var(--text);line-height:1.3}
.mg-pkg-section-sub{font-size:11.5px;color:var(--muted);margin-top:2px}
.mg-pkg-pax{background:#fff}
.mg-pkg-pax .mg-pax-row{padding:10px 14px}

/* ── CART ITEM UPDATED LAYOUT ── */
.mg-cart-item{display:flex;gap:10px;align-items:center;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:12px;position:relative}
.mg-ci-img{width:54px;height:54px;border-radius:6px;overflow:hidden;flex-shrink:0}
.mg-ci-img img{width:100%;height:100%;object-fit:cover}
.mg-ci-body{flex:1;min-width:0}
.mg-ci-name{font-size:13px;font-weight:600;color:var(--text);line-height:1.3;margin-bottom:2px}
.mg-ci-date{font-size:11.5px;color:var(--muted);margin-bottom:1px}
.mg-ci-pax-str{font-size:11px;color:var(--muted)}
.mg-ci-right{display:flex;flex-direction:column;align-items:flex-end;gap:6px;flex-shrink:0}

/* ── ADD TO BASKET BUTTON STATES ── */
.mg-btn-cart{cursor:pointer;transition:background .15s,transform .1s}
.mg-btn-cart.in-cart{background:#16a34a;color:#fff}
.mg-btn-cart.in-cart svg{stroke:#fff}
.mg-btn-cart.in-cart:hover{background:#15803d}
.mg-btn-cart.updating{background:#0A5EA8;color:#fff}
.mg-btn-cart.updating svg{stroke:#fff}

/* ── DATE ERROR STATE ── */
.mg-bc-input.mg-date-error{border-color:#dc2626;background:#fff5f5}
.mg-bc-input.mg-date-error:focus{border-color:#dc2626}
.mg-date-error-msg{display:none;font-size:11.5px;color:#dc2626;font-weight:500;margin-top:4px;padding:5px 8px;background:#fff5f5;border-radius:5px;border:1px solid #fecaca;align-items:center;gap:5px}
.mg-date-error-msg.show{display:flex}
.mg-date-error-msg svg{flex-shrink:0;stroke:#dc2626;fill:none;stroke-width:2;stroke-linecap:round}

/* ── Available Days display under date picker ── */
.mg-bc-days{display:flex;flex-wrap:wrap;align-items:center;gap:5px;margin-top:8px}
.mg-bc-days-label{font-size:10.5px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;color:var(--muted);margin-right:2px}
.mg-bc-day-chip{display:inline-block;padding:3px 8px;background:#eff6ff;color:#0A5EA8;border-radius:4px;font-size:11px;font-weight:600;letter-spacing:.3px}

/* ── "Please select a departure time" warning (multi-time tours) ── */
.mg-time-warning{display:flex;align-items:center;gap:5px;font-size:11.5px;font-weight:500;color:#b45309;margin:-2px 0 8px;padding:5px 8px;background:#fffbeb;border-radius:5px;border:1px solid #fde68a}
.mg-time-warning svg{flex-shrink:0;stroke:#b45309}

/* ── Custom day-restricted calendar ── */
.mg-bc-field-cal{position:relative}
.mg-bc-date-trigger{box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;width:100%;margin:0;padding:10px 13px;border:1px solid var(--border);border-radius:6px;background:var(--bg);font-family:'Outfit',sans-serif;font-size:14px;font-weight:500;color:var(--muted);cursor:pointer;text-align:left;transition:border-color .15s,background .15s;gap:8px;-webkit-appearance:none;appearance:none;line-height:1.4}
.mg-bc-date-trigger:hover{border-color:var(--blue);background:#fff}
.mg-bc-date-trigger.has-value{color:var(--text);font-weight:600;background:#fff}
.mg-bc-date-trigger svg{flex-shrink:0;color:var(--muted)}
.mg-bc-date-trigger.has-value svg{color:var(--blue)}

.mg-cal-popup{position:absolute;top:calc(100% + 4px);left:0;right:0;min-width:280px;background:#fff;border:1px solid var(--border);border-radius:10px;box-shadow:0 8px 28px rgba(0,0,0,.12);padding:14px;z-index:100;display:none}
.mg-cal-popup.open{display:block}

.mg-cal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;gap:6px}
.mg-cal-title{font-size:14px;font-weight:700;color:var(--text);flex:1;text-align:center}
.mg-cal-nav{width:28px;height:28px;border:1px solid var(--border);background:#fff;font-size:18px;line-height:1;color:var(--text);cursor:pointer;border-radius:6px;display:flex;align-items:center;justify-content:center;padding:0;font-family:inherit;transition:background .15s,border-color .15s}
.mg-cal-nav:hover:not(.disabled){background:var(--blue-light);border-color:var(--blue);color:var(--blue)}
.mg-cal-nav.disabled{opacity:.35;cursor:not-allowed}

.mg-cal-weekdays,.mg-cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:2px}
.mg-cal-weekdays div{text-align:center;font-size:10px;font-weight:600;color:var(--muted);padding:4px 0;text-transform:uppercase;letter-spacing:.5px}
.mg-cal-grid{margin-top:4px}

.mg-cal-day{aspect-ratio:1;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:500;color:var(--text);cursor:pointer;border-radius:6px;transition:background .12s,color .12s;user-select:none}
.mg-cal-day:hover:not(.disabled){background:var(--blue-light);color:var(--blue);font-weight:700}
.mg-cal-day.today{border:1.5px solid var(--blue);color:var(--blue);font-weight:700}
.mg-cal-day.selected{background:var(--blue)!important;color:#fff!important;font-weight:700;border-color:var(--blue)}
.mg-cal-day.disabled{color:#d1d5db;cursor:not-allowed;background:transparent}
.mg-cal-empty{aspect-ratio:1}

.mg-cal-foot{margin-top:10px;padding-top:10px;border-top:1px solid var(--border);font-size:11px;color:var(--muted);text-align:center}
.mg-cal-foot strong{color:var(--text);font-weight:600}

@media (max-width:768px){
  .mg-cal-popup{padding:12px}
  .mg-cal-day{font-size:12px}
}

/* ── THINGS TO DO INTRO ── */
.mg-things-intro{background:#fff;padding:64px 0 48px;border-bottom:1px solid var(--border)}
.mg-things-intro-wrap{max-width:1200px;margin:0 auto;padding:0 60px;display:flex;align-items:flex-start;justify-content:space-between;gap:32px}
.mg-things-intro-head{max-width:680px;flex:1}
.mg-things-intro-desc{font-size:15px;color:var(--muted);line-height:1.8;margin-top:12px;max-width:600px}
.mg-things-intro-link{display:inline-flex;align-items:center;gap:7px;margin-top:6px;padding:10px 20px;background:var(--blue);color:#fff;border-radius:8px;font-size:13.5px;font-weight:600;text-decoration:none;white-space:nowrap;flex-shrink:0;transition:opacity .15s}
.mg-things-intro-link:hover{opacity:.88}
@media(max-width:900px){.mg-things-intro-wrap{padding:0 24px;flex-direction:column;gap:20px}.mg-things-intro-link{align-self:flex-start}}
@media(max-width:560px){.mg-things-intro-wrap{padding:0 16px}}

/* ── CATEGORY SECTIONS ── */
.mg-cat-section{background:#fff;padding:56px 0;border-top:1px solid var(--border)}
.mg-cat-section-inner{max-width:1200px;margin:0 auto;padding:0 60px}
.mg-cat-section-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:28px;gap:24px}
.mg-cat-section-head-text{flex:1;max-width:660px}
.mg-cat-section-h2{font-size:clamp(22px,2.6vw,30px);font-weight:800;color:var(--text);letter-spacing:-.6px;margin-bottom:10px;line-height:1.2}
.mg-cat-section-desc{font-size:14.5px;color:var(--muted);line-height:1.78;margin:0}
.mg-cat-section-link{display:inline-flex;align-items:center;gap:6px;padding:9px 18px;border:1.5px solid var(--blue);color:var(--blue);border-radius:8px;font-size:13px;font-weight:600;text-decoration:none;white-space:nowrap;flex-shrink:0;margin-top:8px;transition:all .15s}
.mg-cat-section-link:hover{background:var(--blue);color:#fff}
.mg-cat-section-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:1024px){.mg-cat-section-inner{padding:0 24px}}
@media(max-width:900px){.mg-cat-section-grid{grid-template-columns:repeat(2,1fr)}.mg-cat-section-head{flex-direction:column}}
@media(max-width:560px){.mg-cat-section-grid{grid-template-columns:repeat(2,1fr);gap:10px}.mg-cat-section-inner{padding:0 14px}}
@media(max-width:400px){.mg-cat-section-grid{grid-template-columns:1fr}}

/* ── CART ITEM EDIT CONTROLS ── */
.mg-ci-edit-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px;padding-top:6px;border-top:1px solid var(--border)}
.mg-ci-pax-ctrl{display:flex;align-items:center;gap:4px}
.mg-ci-pax-label{font-size:11px;color:var(--muted);min-width:44px}
.mg-ci-pax-btn{width:22px;height:22px;border-radius:5px;border:1px solid var(--border);background:var(--bg);cursor:pointer;font-size:14px;display:flex;align-items:center;justify-content:center;color:var(--muted);line-height:1;padding:0}
.mg-ci-pax-btn:hover{border-color:var(--blue);color:var(--blue)}
.mg-ci-pax-num{font-size:13px;font-weight:600;color:var(--text);min-width:16px;text-align:center}

/* ── THINGS INTRO OVERRIDE ── */
section.mg-things-intro { background:#fff; padding:64px 0 48px; border-bottom:1px solid var(--border); }
section.mg-things-intro .mg-things-intro-wrap { max-width:1200px; margin:0 auto; padding:0 60px; display:flex; align-items:flex-start; justify-content:space-between; gap:32px; }
section.mg-things-intro .mg-things-intro-head { max-width:680px; flex:1; }
section.mg-things-intro .mg-tours-title { text-align:left; }
section.mg-things-intro .mg-tours-kicker { text-align:left; }
section.mg-things-intro .mg-things-intro-desc { font-size:15px; color:var(--muted); line-height:1.8; margin-top:12px; max-width:600px; text-align:left; }
section.mg-things-intro .mg-things-intro-link { display:inline-flex; align-items:center; gap:7px; margin-top:6px; padding:10px 20px; background:var(--blue); color:#fff; border-radius:8px; font-size:13.5px; font-weight:600; text-decoration:none; white-space:nowrap; flex-shrink:0; }
@media(max-width:900px){ section.mg-things-intro .mg-things-intro-wrap { padding:0 24px; flex-direction:column; gap:20px; } }
@media(max-width:560px){ section.mg-things-intro .mg-things-intro-wrap { padding:0 16px; } }

/* FORCE v1775951005 */
.mg-cat-section-head { display:flex !important; align-items:flex-start !important; justify-content:space-between !important; margin-bottom:28px !important; gap:24px !important; }
.mg-cat-section-head-text { flex:1 !important; max-width:660px !important; min-width:0 !important; }
.mg-cat-section-desc { max-width:100% !important; width:100% !important; display:block !important; }

/* Cat section desc width fix */
.mg-cat-section-desc { max-width:560px !important; }
@media(max-width:900px){ .mg-cat-section-desc { max-width:100% !important; } }

/* Cat section SEO text below grid */
.mg-cat-section-seo{margin-top:10px;margin-bottom:32px;padding-bottom:28px;border-bottom:1px solid var(--border);font-size:14px;color:var(--muted);line-height:1.85}

/* v-seo-fix */
.mg-cat-section-seo{column-count:unset!important;column-gap:unset!important;display:block!important;width:100%!important}

/* ── TRUST BOXES ── */
.mg-trust{background:#fff;padding:32px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.mg-trust-grid{max-width:1200px;margin:0 auto;padding:0 60px;display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.mg-trust-box{background:#0A5EA8;border-radius:8px;padding:22px 18px;display:flex;align-items:center;gap:14px}
.mg-trust-icon{flex-shrink:0;width:40px;height:40px;background:rgba(255,255,255,.12);border-radius:8px;display:flex;align-items:center;justify-content:center}
.mg-trust-icon svg{stroke:#FFB800!important;fill:none}
.mg-trust-title{font-size:14px;font-weight:700;color:#fff;line-height:1.3;margin-bottom:3px}
.mg-trust-sub{font-size:12px;color:rgba(255,255,255,.75);line-height:1.45}
@media(max-width:1024px){.mg-trust-grid{padding:0 24px}}
@media(max-width:860px){.mg-trust-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.mg-trust-grid{padding:0 14px;gap:8px}.mg-trust-box{padding:16px 12px;gap:10px}}

/* ── READ MORE ── */
.mg-readmore-wrap{position:relative;margin-bottom:24px}
.mg-readmore-text{max-height:60px!important;overflow:hidden!important;display:block!important}
.mg-readmore-text.open{max-height:2000px!important;overflow:visible!important}
.mg-readmore-btn{display:inline-flex;align-items:center;gap:4px;margin-top:8px;font-size:13px;font-weight:600;color:var(--blue);background:none;border:none;cursor:pointer;padding:0;font-family:inherit;line-height:1}
.mg-readmore-btn:hover{opacity:.75}


/* Mobile dropdown */
@media(max-width:900px){
  .mg-nav-links .menu-item-has-children > .sub-menu{position:static;border:none;border-radius:0;padding:0;box-shadow:none;background:#f4f7fb;display:none}
  .mg-nav-links .menu-item-has-children.open > .sub-menu{display:block}
  .mg-nav-links .sub-menu li a{padding:10px 24px;font-size:13px;border-bottom:1px solid #e5e7eb}
  .mg-nav-links.open{display:flex;flex-direction:column;align-items:flex-start;position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid #e5e7eb;padding:8px 0;z-index:400}
}




/* NAV DROPDOWN */
.mg-nav-links li{position:relative!important}
.mg-nav-links .sub-menu{display:none!important;position:absolute!important;top:100%!important;left:0!important;z-index:99999!important;background:#fff!important;border:1px solid #e0e0e0!important;border-radius:10px!important;padding:6px 0!important;min-width:220px!important;list-style:none!important;box-shadow:0 8px 24px rgba(0,0,0,.12)!important}
.mg-nav-links li:hover>.sub-menu{display:block!important}
.mg-nav-links .sub-menu li a{display:block!important;padding:9px 18px!important;font-size:13.5px!important;color:#374151!important;text-decoration:none!important}
.mg-nav-links .sub-menu li a:hover{background:#f4f7fb!important;color:#0A5EA8!important}
.mg-nav-links .sub-menu .menu-heading>a{font-size:10px!important;font-weight:700!important;color:#9ca3af!important;text-transform:uppercase!important;letter-spacing:.8px!important;pointer-events:none!important;padding:10px 18px 4px!important}
@media(max-width:900px){
  .mg-nav-links .sub-menu{position:static!important;box-shadow:none!important;border:none!important;background:#f4f7fb!important;padding:0!important}
  .mg-nav-links li.open>.sub-menu{display:block!important}
  .mg-nav-links .sub-menu li a{padding:10px 24px!important}
}

/* CAT SECTION ALL BUTTON */
.mg-cat-section-all{display:inline-flex;align-items:center;gap:8px;padding:12px 32px;background:#0A5EA8;color:#fff;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;transition:background .15s,gap .15s;letter-spacing:.1px}
.mg-cat-section-all:hover{background:#084D8C;gap:12px;color:#fff}

/* SEO BLOCK */
.mg-seo-block{background:#fff;border-top:1px solid var(--border);padding:56px 0}
.mg-seo-block-inner{max-width:1200px;margin:0 auto;padding:0 60px}
.mg-seo-block-h2{font-size:clamp(20px,2.5vw,28px);font-weight:800;color:var(--text);letter-spacing:-.5px;margin-bottom:20px;line-height:1.2}
.mg-seo-block-content{font-size:14.5px;color:var(--muted);line-height:1.85}
.mg-seo-block-content p{margin-bottom:16px}
.mg-seo-block-content p:last-child{margin-bottom:0}
@media(max-width:900px){.mg-seo-block-inner{padding:0 24px}}
@media(max-width:560px){.mg-seo-block{padding:36px 0}.mg-seo-block-inner{padding:0 16px}}

/* ── OVERVIEW ACCORDION ── */
.mg-overview-content h2{font-size:17px;font-weight:700;color:var(--text);margin:32px 0 10px;letter-spacing:-.2px}
.mg-overview-content h2:first-child{margin-top:0}
.mg-overview-content>p,.mg-overview-content>ul,.mg-overview-content>ol{font-size:14.5px;color:var(--muted);line-height:1.8;margin-bottom:14px}
.mg-overview-content>ul,.mg-overview-content>ol{padding-left:20px}
.mg-acc-item{border-bottom:1px solid var(--border)}
.mg-acc-item:first-of-type{border-top:1px solid var(--border)}
.mg-acc-head{display:flex;align-items:center;justify-content:space-between;padding:14px 0;cursor:pointer;background:transparent;border:none;width:100%;text-align:left;font-family:inherit}
.mg-acc-title{font-size:14px;font-weight:600;color:#374151}
.mg-acc-icon{width:16px;height:16px;flex-shrink:0;transition:transform .2s}
.mg-acc-icon svg{width:16px;height:16px;stroke:#9ca3af;fill:none;stroke-width:2;stroke-linecap:round}
.mg-acc-item.open .mg-acc-icon{transform:rotate(180deg)}
.mg-acc-body{display:none;padding-bottom:14px;font-size:13.5px;color:var(--muted);line-height:1.8}
.mg-acc-body p{margin-bottom:10px}
.mg-acc-body p:last-child{margin-bottom:0}
.mg-acc-body ul,.mg-acc-body ol{padding-left:18px;margin-bottom:10px}
.mg-acc-item.open .mg-acc-body{display:block}



/* ── MOBILE: BOOKING CARD BELOW H1 ── */


}


/* MOBILE TOUR PAGE */
@media(max-width:768px){
  .mg-tour-page{display:block!important}
  .mg-sidebar{position:static!important}
}

/* ── HERO OVERLAY ── */
.mg-hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(5,18,38,.88) 35%,rgba(5,18,38,.35) 100%);display:flex;align-items:center}
.mg-hero-overlay-inner{max-width:1300px;width:100%;margin:0 auto;padding:0 60px}
.mg-hero-kicker{font-size:11px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;color:#FFB800;margin-bottom:14px}
.mg-hero-h1{font-size:clamp(26px,3.2vw,40px);font-weight:800;color:#fff;line-height:1.15;letter-spacing:-.6px;margin-bottom:12px;max-width:560px}
.mg-hero-sub{font-size:15px;color:rgba(255,255,255,.8);line-height:1.65;margin-bottom:26px;max-width:480px}
.mg-hero-ctas{display:flex;gap:12px;margin-bottom:28px;flex-wrap:wrap}
.mg-hero-btn-primary{padding:13px 28px;background:#FFB800;color:#0D1F35;border:none;border-radius:7px;font-size:14px;font-weight:700;cursor:pointer;font-family:inherit;text-decoration:none;display:inline-block;letter-spacing:.1px;transition:opacity .15s}
.mg-hero-btn-primary:hover{opacity:.9;color:#0D1F35}
.mg-hero-btn-wa{padding:13px 20px;background:rgba(255,255,255,.1);color:#fff;border:1.5px solid rgba(255,255,255,.4);border-radius:7px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;text-decoration:none;display:inline-flex;align-items:center;gap:8px;letter-spacing:.1px;transition:background .15s}
.mg-hero-btn-wa:hover{background:rgba(255,255,255,.18);color:#fff}
.mg-hero-trust{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.mg-hero-trust-item{font-size:12px;color:rgba(255,255,255,.68)}
.mg-hero-dot{color:rgba(255,255,255,.25);font-size:14px}
@media(max-width:768px){
  .mg-hero-overlay-inner{padding:0 20px}
  .mg-hero-h1{font-size:clamp(22px,5vw,30px);max-width:100%}
  .mg-hero-sub{font-size:13.5px;max-width:100%}
  .mg-hero-btn-primary,.mg-hero-btn-wa{padding:11px 18px;font-size:13px}
}

/* ── STATS STRIP ── */
.mg-stats-strip{background:#fff;border-top:3px solid var(--blue);border-bottom:1px solid var(--border);display:flex;align-items:stretch}
.mg-stat-item{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px 10px;border-right:1px solid var(--border)}
.mg-stat-item:last-child{border-right:none}
.mg-stat-num{font-size:22px;font-weight:800;color:var(--blue);line-height:1;letter-spacing:-.3px}
.mg-stat-lbl{font-size:11px;color:var(--muted);margin-top:4px;text-align:center;line-height:1.3}
@media(max-width:600px){
  .mg-stats-strip{flex-wrap:wrap}
  .mg-stat-item{flex:0 0 50%;border-bottom:1px solid var(--border)}
  .mg-stat-item:nth-child(even){border-right:none}
}

/* ── MOST POPULAR ── */
.mg-popular{background:#f4f7fb;padding:48px 0}
.mg-popular-inner{max-width:1200px;margin:0 auto;padding:0 60px}
.mg-popular-head{margin-bottom:22px}
.mg-popular-kicker{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#0A5EA8;display:block;margin-bottom:5px}
.mg-popular-title{font-size:24px;font-weight:800;color:#0D1F35;letter-spacing:-.4px}
.mg-popular-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.mg-pop-card{position:relative;border-radius:12px;overflow:hidden;height:260px;display:block;text-decoration:none}
.mg-pop-card:hover .mg-pop-img{transform:scale(1.05)}
.mg-pop-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.mg-pop-img-ph{background:linear-gradient(135deg,#0A5EA8,#1a4a7a)}
.mg-pop-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(4,12,28,.88) 0%,rgba(4,12,28,.25) 55%,rgba(4,12,28,.05) 100%)}
.mg-pop-badge{position:absolute;top:12px;left:12px;background:#FFB800;color:#0D1F35;font-size:9.5px;font-weight:700;padding:4px 10px;border-radius:4px;text-transform:uppercase;letter-spacing:.3px;z-index:2}
.mg-pop-content{position:absolute;bottom:0;left:0;right:0;padding:16px;z-index:2}
.mg-pop-name{font-size:15px;font-weight:700;color:#fff;line-height:1.3;margin-bottom:8px}
.mg-pop-meta{display:flex;align-items:center;justify-content:space-between}
.mg-pop-dur{font-size:11.5px;color:rgba(255,255,255,.72);display:flex;align-items:center;gap:4px}
.mg-pop-price{font-size:20px;font-weight:800;color:#FFB800;letter-spacing:-.3px;line-height:1}
.mg-pop-price span{font-size:11px;font-weight:600;margin-left:1px}
@media(max-width:900px){.mg-popular-grid{grid-template-columns:repeat(2,1fr)}.mg-popular-inner{padding:0 24px}}
@media(max-width:560px){.mg-popular-grid{grid-template-columns:repeat(2,1fr);gap:10px}.mg-popular-inner{padding:0 14px}.mg-pop-card{height:200px}}

/* ── AUTO TAB CONTENT ── */
.mg-tab-content-inner{padding:0}
.mg-tab-content-inner table{width:100%;border-collapse:collapse;font-size:14px;margin-bottom:20px}
.mg-tab-content-inner th{background:#f4f7fb;font-weight:700;color:#0D1F35;padding:10px 14px;text-align:left;border:1px solid #e5e7eb;font-size:13px}
.mg-tab-content-inner td{padding:10px 14px;border:1px solid #e5e7eb;color:#374151;vertical-align:top;line-height:1.6}
.mg-tab-content-inner tr:nth-child(even) td{background:#fafafa}
.mg-tab-content-inner h2{font-size:18px;font-weight:700;color:#0D1F35;margin:20px 0 10px}
.mg-tab-content-inner h3{font-size:15px;font-weight:700;color:#0D1F35;margin:16px 0 8px}
.mg-tab-content-inner p{font-size:14.5px;color:#555;line-height:1.8;margin-bottom:14px}
.mg-tab-content-inner ul,.mg-tab-content-inner ol{padding-left:20px;margin-bottom:14px}
.mg-tab-content-inner li{font-size:14px;color:#555;line-height:1.7;margin-bottom:4px}
.mg-tab-content-inner strong{color:#0D1F35}
/* Scrollable tables on mobile */
@media(max-width:768px){
  .mg-tab-content-inner table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}
}
