/*
Theme Name: Turnaa Child
Description: Turnaa eSIM – child of Blocksy
Author: Turna LLC
Template: blocksy
Version: 1.3.0
Text Domain: turnaa
Domain Path: /languages
*/

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --bg:#FFFFFF; --surface:#FFFFFF; --surface-2:#F7F5EF;
  --ink:#11332F; --ink-soft:#5C6E6A; --line:#E7E2D7;
  --accent:#A83214; --accent-ink:#fff; /* terracotta — unified with the mobile (Stitch) design language */
  --save:#1F7A55; --save-bg:#E4F2EA;
  --chip:#F4F1EA; --shadow:rgba(17,51,47,.18);
  --maxw:1140px; --r:18px;
}
[data-theme="dark"] {
  --bg:#0C1A18; --surface:#13231F; --surface-2:#162A25;
  --ink:#EAF2EF; --ink-soft:#8AA39D; --line:#21342F;
  --accent:#F2784B; --accent-ink:#1a0f0a;
  --save:#5FD39C; --save-bg:#16332A;
  --chip:#1A2C28; --shadow:rgba(0,0,0,.5);
}

/* ─── Base ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:clip}
/* Blocksy's reset sets body{overflow-x:hidden}, which makes the body a scroll
   container and quietly kills position:sticky. `clip` hides the same overflow
   without that side effect; `html body` outranks the parent theme's rule. */
html body{overflow-x:clip}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);color:var(--ink);
  line-height:1.55;margin:0;
  overflow-x:clip;max-width:100%;
  transition:background .3s,color .3s;
}
img,table{max-width:100%}
.woocommerce table.shop_table{display:block;overflow-x:auto}
@media(min-width:621px){.woocommerce-checkout table.shop_table,.woocommerce-cart table.shop_table{display:table}}
h1,h2,h3,h4,h5,h6{
  font-family:'Bricolage Grotesque',sans-serif;
  letter-spacing:-.02em;line-height:1.12;margin:0;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
p{margin:0}

/* ─── Layout ─────────────────────────────────────────────── */
.wrap,.ct-container{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.blk{padding:54px 0}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn,.woocommerce .button,
.woocommerce button[type=submit],
.woocommerce #respond input#submit,
.woocommerce a.button{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--accent);color:var(--accent-ink)!important;
  border:0;border-radius:12px;padding:11px 18px;
  font-family:'Inter',inherit;font-weight:600;font-size:14px;
  cursor:pointer;box-shadow:0 10px 22px -12px var(--accent);
  transition:opacity .18s,transform .18s;line-height:1.4;
  text-decoration:none;
}
.btn:hover,.woocommerce .button:hover{opacity:.9;transform:translateY(-1px)}
.btn-ghost{
  background:transparent!important;border:1.5px solid var(--line)!important;
  color:var(--ink)!important;box-shadow:none!important;
}
.btn-ghost:hover{border-color:var(--accent)!important;color:var(--accent)!important}

/* ─── Site Header ────────────────────────────────────────── */
#turnaa-header{
  position:sticky;top:0;z-index:100;
  background:color-mix(in srgb,#FFFFFF 50%,transparent);
  backdrop-filter:blur(16px) saturate(140%);-webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid var(--line);transition:background .3s;
}
.nav-inner{
  max-width:var(--maxw);margin:0 auto;padding:0 28px;
  display:flex;align-items:center;height:70px;gap:20px;
}
.logo{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:23px;letter-spacing:-.03em;flex:0 0 auto;text-decoration:none;color:var(--ink)}
.logo span{color:var(--accent)}
#turnaa-header .custom-logo-link{display:inline-flex;align-items:center;flex:0 0 auto}
#turnaa-header .custom-logo{max-height:38px;width:auto;display:block}
.nav-links{display:flex;gap:28px;flex:1;padding-left:10px;list-style:none;margin:0;align-items:center}
.nav-links li{list-style:none}
.nav-links a{font-size:14.5px;font-weight:500;color:var(--ink-soft);transition:.15s;text-decoration:none}
.nav-links a:hover{color:var(--ink)}
.nav-links .current-menu-item>a{color:var(--ink)}
.nav-end{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.lang-pill{display:flex;background:var(--surface);border:1px solid var(--line);border-radius:999px;padding:3px}
.lang-pill button{
  border:0;background:transparent;color:var(--ink-soft);
  font-weight:600;font-size:12px;padding:5px 10px;
  border-radius:999px;cursor:pointer;font-family:inherit;transition:.15s;
}
.lang-pill button.active{background:var(--accent);color:var(--accent-ink)}
.dark-toggle{
  width:38px;height:38px;border-radius:11px;
  border:1px solid var(--line);background:var(--surface);
  cursor:pointer;color:var(--ink);font-size:16px;
  display:flex;align-items:center;justify-content:center;transition:.15s;
}
.dark-toggle:hover{border-color:var(--accent);color:var(--accent)}
.lang-switch{position:relative}
.lang-cur{display:inline-flex;align-items:center;gap:5px;background:var(--surface);border:1px solid var(--line);color:var(--ink-soft);font-weight:600;font-size:12.5px;padding:7px 11px;border-radius:999px;cursor:pointer;font-family:inherit;transition:.15s}
.lang-cur:hover{border-color:var(--accent);color:var(--ink)}
.lang-menu{position:absolute;top:calc(100% + 8px);right:0;min-width:152px;z-index:120;background:var(--surface);border:1px solid var(--line);border-radius:12px;box-shadow:0 18px 40px -18px var(--shadow);padding:6px;display:none}
.lang-switch.open .lang-menu{display:block}
.lang-menu a{display:block;padding:9px 12px;border-radius:9px;font-size:14px;color:var(--ink-soft);text-decoration:none}
.lang-menu a:hover{background:var(--surface-2);color:var(--ink)}
.lang-menu a.on{color:var(--accent);font-weight:600}

/* ─── Hero (rounded warm card on a white canvas) ─────────── */
.turnaa-hero{display:block;padding-bottom:clamp(18px,2.4vw,30px)}
/* The band spans the viewport; its padding re-centres the content on the same
   1320px column the nav uses, so nothing looks detached at wide sizes. */
.turnaa-hero.wrap{max-width:none;width:100%;padding-left:0;padding-right:0;margin:0}
.hero-card{
  position:relative;display:grid;grid-template-columns:1.06fr .94fr;gap:30px;align-items:center;
  /* The logo's deep green, lifted by a warm glow so the band is not flat. */
  background:
    radial-gradient(115% 145% at 84% 14%,rgba(242,120,75,.24) 0%,rgba(242,120,75,0) 56%),
    linear-gradient(110deg,#124036 0%,#18544A 46%,#20705D 100%);
  /* Rounded where it leaves the page on each side, and lifted off the
     section below so the band reads as a panel rather than a fill. */
  border-radius:0 0 34px 34px;
  box-shadow:0 26px 50px -30px rgba(9,40,33,.55),0 6px 16px -10px rgba(9,40,33,.35);
  /* Visible, so the search suggestions are not cut off at the band's edge;
     the page clips the x-axis, so nothing can cause a sideways scroll. */
  overflow:visible;
  /* +28px matches .nav-inner's own side padding, so the headline starts on
     the same vertical line as the logo above it. */
  padding:clamp(26px,3vw,40px) max(22px,calc((100% - 1320px)/2 + 28px));
}
.turnaa-hero h1{color:#FFFFFF}
.hero-left{position:relative;z-index:1;max-width:560px}
.turnaa-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:var(--save);
  font-size:12.5px;font-weight:600;padding:6px 13px;
  border-radius:999px;margin-bottom:15px;box-shadow:0 4px 14px rgba(17,51,47,.08);
}
.turnaa-hero h1{font-size:clamp(29px,3.6vw,44px);font-weight:800;margin-bottom:11px;letter-spacing:-.025em;line-height:1.08}
.turnaa-hero h1 em{font-style:normal;color:#FFFFFF}
.hero-desc{font-size:clamp(14.5px,1.5vw,16px);color:#A9C6BE;max-width:450px;margin:0 0 20px}
.searchbar{
  display:flex;background:var(--surface);border:1px solid var(--line);
  border-radius:18px;padding:8px 8px 8px 20px;align-items:center;
  gap:12px;box-shadow:0 18px 40px -22px var(--shadow);
}
.searchbar input{flex:1;border:0;background:transparent;font-family:inherit;font-size:15px;color:var(--ink);outline:none;min-width:0}
.searchwrap{position:relative;max-width:520px;margin:0}
.hero-pop-label{font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:#8FAEA6;margin:16px 0 8px}
/* right-side visual: world-map disc + floating badges */
.hero-visual{position:relative;min-height:300px;height:100%}
/* Disc and map share one centre, so the globe cannot sit off-axis the way
   two different right-offsets made it. */
.hv-disc{
  position:absolute;left:50%;right:auto;top:50%;transform:translate(-50%,-50%);
  width:min(360px,96%);aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle at 34% 28%,rgba(255,255,255,.18),rgba(255,255,255,.05) 72%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
}
.hv-map{position:absolute;left:50%;right:auto;top:50%;transform:translate(-50%,-50%);width:min(320px,86%);height:auto}
.hv-badge{
  position:absolute;z-index:2;display:flex;align-items:center;gap:10px;
  background:#fff;border:1px solid rgba(17,51,47,.05);border-radius:16px;
  padding:11px 15px;box-shadow:0 18px 40px -18px rgba(17,51,47,.35);
}
.hv-ic{width:34px;height:34px;border-radius:10px;background:color-mix(in srgb,var(--accent) 10%,#fff);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.hv-ic svg{width:17px;height:17px;stroke:var(--accent);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hv-txt{display:flex;flex-direction:column;line-height:1.3}
.hv-txt b{font-size:13px;color:var(--ink)}
.hv-txt small{font-size:11px;color:var(--ink-soft)}
.hv-b1{top:6%;right:0}
.hv-b2{top:47%;left:-2%;gap:5px;padding:10px 13px}
.hv-b2 .flag-img,.hv-b2 .flag-globe{width:24px;height:17px;border-radius:4px}
.hv-plus{font-size:12.5px;font-weight:800;color:var(--accent);font-family:'Bricolage Grotesque',sans-serif;margin-left:3px}
.hv-b3{bottom:5%;right:8%}
@media(max-width:900px){
  .hero-card{grid-template-columns:1fr}
  .hero-visual{display:none}
  .hero-left{max-width:none}
}
.search-results{
  position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:50;
  background:var(--surface);border:1px solid var(--line);border-radius:14px;
  box-shadow:0 20px 44px -20px var(--shadow);padding:6px;overflow:hidden;
}
.search-results[hidden]{display:none}
.sr-item{
  display:block;padding:10px 14px;border-radius:9px;
  font-size:14.5px;font-weight:500;color:var(--ink);text-decoration:none;
}
.sr-item:hover{background:var(--surface-2);color:var(--accent)}
.sr-empty{padding:12px 14px;color:var(--ink-soft);font-size:14px}
.hero-left .trustline span{color:#FFFFFF}
.hero-left .trustline svg{stroke:#FFFFFF}
.trustline{display:flex;gap:10px 22px;margin-top:20px;font-size:13px;color:var(--ink-soft);flex-wrap:wrap}
.trustline span{display:inline-flex;align-items:center;gap:7px}
.trustline svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.hero-popchips{display:flex;gap:8px;flex-wrap:wrap;margin-top:0}
.hero-popchips a{display:inline-flex;align-items:center;gap:7px;background:var(--surface);border:1px solid var(--line);border-radius:999px;padding:6px 13px;font-size:12.5px;font-weight:600;color:var(--ink);text-decoration:none;transition:border-color .15s,color .15s}
.hero-popchips a:hover{border-color:var(--accent);color:var(--accent)}
.hero-popchips .flag-img,.hero-popchips .flag-globe{width:17px;height:12px;border-radius:3px}

/* ─── Sections ───────────────────────────────────────────── */
.sec-head{text-align:center;max-width:560px;margin:0 auto 36px}
.sec-head h2{font-size:33px;font-weight:700;margin-bottom:10px}
.sec-head p{color:var(--ink-soft);font-size:16px}
.kicker{font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);margin-bottom:10px}

/* ─── Destinations ───────────────────────────────────────── */
.dest-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.dest-card{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r);padding:18px;
  cursor:pointer;transition:.18s;display:block;color:var(--ink);
}
.dest-card:hover{transform:translateY(-3px);box-shadow:0 18px 36px -22px var(--shadow);border-color:var(--accent)}
.dest-card .flag{font-size:30px}
.dest-card .name{font-weight:600;font-size:16px;margin-top:12px}
.dest-card .from{font-size:13px;color:var(--ink-soft);margin-top:3px}
.dest-card .from b{color:var(--ink)}

/* ─── Comparison band ────────────────────────────────────── */
.cmp-band{background:var(--ink);border-radius:26px;padding:46px;position:relative;overflow:hidden}
[data-theme="dark"] .cmp-band{background:#06120F;border:1px solid var(--line)}
.cmp-band::after{content:"";position:absolute;right:-60px;top:-60px;width:240px;height:240px;border-radius:50%;border:1.5px solid rgba(255,255,255,.08)}
.cmp-band-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;position:relative;z-index:1}
.cmp-band h2{font-size:30px;color:#fff;margin-bottom:14px}
.cmp-band .sub{color:#bcd2cd;font-size:15px;max-width:420px}
.cmp-table{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:16px;overflow:hidden}
.cmp-row{display:flex;justify-content:space-between;align-items:center;padding:15px 20px;border-bottom:1px solid rgba(255,255,255,.09);font-size:14px}
.cmp-row:last-child{border-bottom:0}
.cmp-row .dn{color:#bcd2cd}
.cmp-row .op{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;color:#fff}
.cmp-row .tp{color:#9fb6b1;text-decoration:line-through;font-size:13px;margin-right:8px}
.cmp-row .pct{color:#7FE3B0;font-size:12px;font-weight:600;margin-left:6px}

/* ─── Steps / Why / Blog ─────────────────────────────────── */
.steps-grid,.why-grid,.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.step-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:26px}
.step-num{
  width:38px;height:38px;border-radius:11px;background:var(--accent);color:var(--accent-ink);
  display:flex;align-items:center;justify-content:center;
  font-family:'Bricolage Grotesque',sans-serif;font-weight:700;margin-bottom:16px;font-size:16px;
}
.step-card h3{font-size:18px;margin-bottom:7px}
.step-card p{font-size:14px;color:var(--ink-soft)}
.why-card{padding:24px;border-radius:var(--r);border:1px solid var(--line);background:var(--surface-2)}
.why-icon{font-size:24px;margin-bottom:12px}
.why-card h3{font-size:17px;margin-bottom:7px}
.why-card p{font-size:14px;color:var(--ink-soft)}
.blog-post{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);overflow:hidden;transition:.18s;display:block;color:var(--ink)}
.blog-post:hover{transform:translateY(-3px);box-shadow:0 18px 36px -22px var(--shadow)}
.blog-post .thumb{height:120px;overflow:hidden;background:linear-gradient(135deg,var(--chip),var(--surface-2));display:flex;align-items:center;justify-content:center;font-size:34px}
.blog-post .thumb img{width:100%;height:100%;object-fit:cover}
.blog-post .bpcont{padding:18px}
.blog-post .tag{font-size:11px;font-weight:600;color:var(--accent);text-transform:uppercase;letter-spacing:.06em}
.blog-post h3{font-size:16px;margin:8px 0 6px;line-height:1.25}
.blog-post .excerpt{font-size:13px;color:var(--ink-soft)}

/* ─── Footer ─────────────────────────────────────────────── */
.turnaa-footer{border-top:1px solid var(--line);padding:42px 0 30px;margin-top:20px}
.footer-grid{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px}
.footer-col h4{font-size:13px;font-weight:600;margin-bottom:12px}
.footer-col a{display:block;font-size:13.5px;color:var(--ink-soft);margin-bottom:8px;transition:.15s}
.footer-col a:hover{color:var(--accent)}
.footer-copy{margin-top:30px;font-size:12.5px;color:var(--ink-soft);text-align:center}

/* ─── WooCommerce Shop ───────────────────────────────────── */
.woocommerce ul.products{display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:16px!important;margin:0!important}
.woocommerce ul.products li.product{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r);padding:18px;margin:0!important;transition:.18s;
}
.woocommerce ul.products li.product:hover{transform:translateY(-3px);box-shadow:0 18px 36px -22px var(--shadow);border-color:var(--accent)}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-family:'Bricolage Grotesque',sans-serif;font-size:16px;font-weight:600;color:var(--ink);padding:0;margin:12px 0 4px;
}
.woocommerce ul.products li.product .price{color:var(--ink);font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:20px}
.woocommerce ul.products li.product .button{width:100%;margin-top:12px;text-align:center}

/* ─── WooCommerce Single Product ─────────────────────────── */
.woocommerce div.product .product_title{font-size:28px;font-family:'Bricolage Grotesque',sans-serif}
.plan-list{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:20px}
.plan-row{
  background:var(--surface);border:1.5px solid var(--line);
  border-radius:16px;padding:18px 20px;
  display:flex;justify-content:space-between;align-items:center;
  cursor:pointer;transition:.16s;
}
.plan-row:hover,.plan-row.selected{border-color:var(--accent);box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent)}
.plan-row .gb{font-weight:600;font-size:17px}
.plan-row .meta{font-size:12.5px;color:var(--ink-soft);margin-top:4px;display:flex;align-items:center;gap:7px}
.plan-row .rgt{text-align:right}
.plan-row .price{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:20px}
.plan-row .save-tag{font-size:11.5px;color:var(--save);font-weight:600;margin-top:2px}

/* ─── WooCommerce Checkout ───────────────────────────────── */
.woocommerce-checkout #customer_details,.woocommerce-checkout #order_review{float:none!important;width:100%!important}
.woocommerce-checkout .col2-set{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;float:none!important;width:100%!important}
.woocommerce-checkout form .form-row label{font-size:12.5px;font-weight:600;color:var(--ink-soft);margin-bottom:6px;display:block}
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row select{
  background:var(--surface);border:1.5px solid var(--line)!important;
  border-radius:12px;padding:13px 14px;font-family:inherit;font-size:14px;color:var(--ink);width:100%;
}
.woocommerce-checkout form .form-row input.input-text:focus{
  outline:0;border-color:var(--accent)!important;
  box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent)!important;
}
.woocommerce-checkout #payment{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:20px}
.checkout-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:22px;margin-bottom:20px}
.checkout-card h3{font-size:18px;margin-bottom:16px}

/* ─── Order Success ──────────────────────────────────────── */
.turnaa-success{max-width:560px;margin:40px auto;text-align:center}
.success-icon{width:60px;height:60px;border-radius:50%;background:var(--save-bg);color:var(--save);display:flex;align-items:center;justify-content:center;margin:8px auto 14px;font-size:28px}
.qr-card{background:#fff;border:1px solid #E7E2D7;border-radius:20px;padding:22px;max-width:260px;margin:18px auto;box-shadow:0 18px 36px -20px var(--shadow)}
.install-steps{text-align:left;background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:8px 6px;margin:16px 0}
.install-step{display:flex;gap:12px;align-items:center;padding:12px 16px;font-size:14px;border-bottom:1px solid var(--line)}
.install-step:last-child{border-bottom:0}
.install-step-num{width:24px;height:24px;border-radius:50%;background:var(--accent);color:var(--accent-ink);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex:0 0 auto}

/* ─── My eSIMs ───────────────────────────────────────────── */
/* ── My eSIMs — app-style cards with circular usage ring ── */
.esims-title{font-size:22px;margin:0 0 18px}
.my-esim-card{background:var(--surface);border:1px solid var(--line);border-radius:18px;padding:20px;margin-bottom:14px;box-shadow:0 14px 36px -28px var(--shadow)}
.my-esim-card.is-expired{opacity:.85}
.esim-card-row{display:flex;align-items:center;gap:20px}
.esim-ring{position:relative;flex:0 0 auto;width:120px;height:120px}
.esim-ring svg{width:120px;height:120px;transform:rotate(-90deg)}
.esim-ring .ring-track{fill:none;stroke:var(--chip);stroke-width:9}
.esim-ring .ring-value{fill:none;stroke:var(--accent);stroke-width:9;stroke-linecap:round;transition:stroke-dashoffset .8s ease}
.my-esim-card.is-expired .ring-value{stroke:var(--ink-soft)}
.ring-center{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:1px}
.ring-center b{font-size:22px;font-weight:800;color:var(--ink);line-height:1}
.ring-center span{font-size:10.5px;color:var(--ink-soft);line-height:1.25}
.ring-center .ring-pct{color:var(--accent);font-weight:700}
.esim-card-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:7px;align-items:flex-start}
.esim-status{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;padding:3px 10px;border-radius:999px}
.esim-status.on{color:var(--save);background:var(--save-bg)}
.esim-status.off{color:var(--ink-soft);background:var(--chip)}
.esim-card-info .esim-name{font-weight:700;font-size:16px;color:var(--ink)}
.esim-expiry{font-size:12.5px;color:var(--ink-soft)}
.esim-qr-btn{margin-top:4px;background:var(--accent);color:#fff;border:0;border-radius:10px;padding:9px 18px;font-weight:700;font-size:13.5px;cursor:pointer}
.esim-install{margin-top:16px;padding-top:16px;border-top:1px solid var(--line)}
.esims-empty{text-align:center;padding:50px 20px;background:var(--surface);border:1px solid var(--line);border-radius:18px}
.esims-empty-ic{font-size:40px;margin-bottom:12px}
.esims-empty p{color:var(--ink-soft);margin:0 0 18px}
.esims-empty-btn{display:inline-block;background:var(--accent);color:#fff;text-decoration:none;font-weight:700;padding:12px 24px;border-radius:12px}
@media(max-width:480px){
  .esim-card-row{gap:14px}
  .esim-ring,.esim-ring svg{width:104px;height:104px}
  .ring-center b{font-size:19px}
}

/* ─── Responsive ─────────────────────────────────────────── */
@media(max-width:880px){
  .turnaa-hero{grid-template-columns:1fr}
  .turnaa-hero h1{font-size:38px}
  .hero-mock{display:none}
  .dest-grid,.steps-grid,.why-grid,.blog-grid{grid-template-columns:1fr 1fr}
  .woocommerce ul.products{grid-template-columns:repeat(2,1fr)!important}
  .cmp-band-grid{grid-template-columns:1fr}
  .woocommerce-checkout .col2-set{grid-template-columns:1fr}
  .plan-list{grid-template-columns:1fr}
}
@media(max-width:560px){
  .dest-grid,.steps-grid,.why-grid,.blog-grid{grid-template-columns:1fr}
  .woocommerce ul.products{grid-template-columns:1fr!important}
  .nav-primary{display:none}
  .wrap,.ct-container{padding:0 16px}
  .turnaa-hero{padding-top:34px;padding-bottom:30px}
  .turnaa-hero h1{font-size:32px}
  .cmp-band{padding:26px 20px}
  .cmp-band h2{font-size:24px}
  .plans-grid{grid-template-columns:1fr}
  .footer-grid{gap:18px}
  .footer-col{min-width:140px}
}


/* ═══════════════════════════════════════════════════════════════
   TURNAA – WooCommerce Custom Templates (Country Pages + Shop)
══════════════════════════════════════════════════════════════════ */

/* ── Back link ── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    margin-bottom: 14px;
}
.back-link:hover { color: var(--accent); }

/* ── Destination hero card (same warm rounded-card language as the homepage) ── */
.cat-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(120deg, #E8F0FB 0%, #EEEFFB 52%, #E9F4F7 100%);
    border-radius: 28px;
    overflow: hidden;
    padding: clamp(22px, 3.5vw, 38px) clamp(20px, 3.5vw, 42px);
    box-shadow: 0 26px 60px -42px rgba(17, 51, 47, .38);
    margin-bottom: 22px;
}
.cat-hero-main { position: relative; z-index: 1; min-width: 0; }
.cat-hero .country-head { margin-bottom: 10px; }
.cat-hero .country-head h1 { font-size: clamp(24px, 4.2vw, 38px); font-weight: 800; letter-spacing: -.02em; }
.cat-hero-sub { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.cat-hero-sub b { color: var(--accent); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px; }
.cat-hero-sub .dot { color: #B9C6DC; }
.cat-hero .country-chips { margin-bottom: 0; gap: 8px; }
.cat-hero .chip { background: rgba(255, 255, 255, .78); border-radius: 999px; padding: 5px 12px; color: var(--ink); box-shadow: 0 4px 12px -8px rgba(17, 51, 47, .28); }
/* right visual — map (silhouette) OR a country photo that fades into the card */
.cat-hero-visual { position: relative; justify-self: center; width: 100%; max-width: 270px; display: flex; justify-content: center; }
.cat-hero-visual .cat-hero-map { width: 100%; height: auto; max-height: 200px; filter: drop-shadow(0 10px 24px rgba(17, 51, 47, .18)); }
.cat-hero-visual.has-photo { max-width: none; align-self: stretch; justify-self: stretch; border-radius: 20px; overflow: hidden; min-height: 190px; }
.cat-hero-visual.has-photo .cat-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .95; }
.cat-hero-visual.has-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #E8F0FB 0%, rgba(233, 244, 247, .12) 46%, rgba(233, 244, 247, 0) 100%); }
@media (max-width: 760px) {
    .cat-hero { grid-template-columns: 1fr; }
    .cat-hero-visual { display: none; }
}
@media (max-width: 640px) {
    .cat-hero { padding: 18px 18px; border-radius: 22px; }
    .cat-hero .country-head { gap: 12px; margin-bottom: 8px; }
    .cat-hero .country-head h1 { font-size: 21px; }
    .cat-hero .country-head .flag-img, .cat-hero .country-head .flag-globe { width: 44px; height: 31px; }
    .cat-hero-sub { font-size: 12.5px; gap: 7px; margin-bottom: 13px; }
    .cat-hero-sub b { font-size: 13px; }
    .cat-hero .chip { font-size: 11.5px; padding: 4px 10px; gap: 5px; }
    .cat-hero .chip svg { width: 13px; height: 13px; }
}

/* ── Country heading ── */
.country-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.country-head h1 { margin: 0; font-size: clamp(26px, 5vw, 36px); }
.country-code-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 4px 10px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

/* ── Feature chips ── */
/* Feature line — reads as INFO, not buttons */
.country-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-bottom: 30px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
}
.chip svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Per-destination notice (activation rules, local restrictions) */
.dest-note {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    background: #FCF6E8;
    border: 1px solid #EBD9AE;
    border-radius: 14px;
    padding: 13px 16px;
    margin: 0 0 26px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #6B5620;
    max-width: 760px;
}
.dest-note svg { width: 17px; height: 17px; stroke: #B98A1F; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

/* Single-country networks — compact one-liner (replaces the collapsible) */
.net-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 11px 15px;
    margin-bottom: 26px;
}
.net-inline .ni-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.net-inline .ni-label svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.net-inline .cn-op { background: var(--surface-2); }

/* ── Real flag images (replaces broken emoji flags) ── */
.flag-img {
    width: 30px; height: 21px;
    border-radius: 4px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 0 1px rgba(17, 51, 47, .1);
}
.flag-globe {
    width: 30px; height: 21px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    background: var(--surface-2);
    box-shadow: 0 0 0 1px rgba(17, 51, 47, .1);
}
.flag-globe svg { width: 66%; height: 66%; }
.region-card .flag-globe { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--surface-2)); }

/* ── Hero search autocomplete ── */
.search-ac {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px var(--shadow);
    overflow: hidden;
    z-index: 60;
    text-align: left;
}
.search-ac a {
    display: block;
    padding: 11px 16px;
    color: var(--ink);
    text-decoration: none;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line);
}
.search-ac a:last-child { border-bottom: 0; }
.search-ac a:hover, .search-ac a.on { background: var(--surface-2); color: var(--accent); }

/* ── Destination archive: region/country sections ── */
.dest-section-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; margin: 0 0 16px; }
.dest-section-title::before { content: ""; width: 16px; height: 3px; border-radius: 3px; background: var(--accent); flex-shrink: 0; }
.dest-section-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; margin-bottom: 16px;
}
.dest-section-head .dest-section-title { margin: 0; }
.dest-search-wrap { position: relative; display: flex; align-items: center; }
.dest-search-wrap > svg { position: absolute; left: 14px; width: 15px; height: 15px; stroke: var(--ink-soft); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.dest-search {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 999px; padding: 10px 16px 10px 36px; font-size: 14px;
    color: var(--ink); min-width: 240px;
    box-shadow: 0 6px 16px -12px rgba(17, 51, 47, .3);
    transition: border-color .15s, box-shadow .15s;
}
/* A later rule was flattening the left padding to 15px, dropping the text
   under the magnifier; the wrap selector settles it. */
.dest-search-wrap .dest-search { padding-left: 38px; }
.dest-search:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent); }
.dest-cell { display: contents; }

/* ── Destinations grid: subtle hover lift (no entrance animation) ── */
.dest-arrow { transition: transform .18s, color .15s; }
.dest-card:hover .dest-arrow { transform: translateX(3px); color: var(--accent); }

/* ── Plan filters (data-type toggle + duration) ── */
.plan-filters { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.plan-filters .dur-filter { margin-bottom: 0; }

/* Segmented Unlimited / Standard toggle */
.type-toggle {
    display: flex;
    width: 100%;
    background: var(--chip);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 5px;
    gap: 5px;
}
.type-seg {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink-soft);
    padding: 11px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.type-seg:hover { color: var(--ink); }
.type-seg.active { background: var(--ink); color: var(--bg); }

/* "Unlimited" in the plan data label */
.gb-unlim { color: var(--accent); }

.dur-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.dur-chip {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 20px; padding: 7px 16px;
    font-size: 13px; font-weight: 600; color: var(--ink-soft);
    cursor: pointer; font-family: inherit; transition: border-color .15s, color .15s, background .15s;
}
.dur-chip:hover { border-color: var(--accent); color: var(--ink); }
.dur-chip.active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* ── Wider coverage (region cards at bottom of country page) ── */
.wider-coverage { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }

/* ── Unlimited (FUP) plan markers ── */
.unlim-tag {
    display: inline-block;
    background: var(--save-bg); color: var(--save);
    font-size: 10.5px; font-weight: 700;
    border-radius: 5px; padding: 1px 7px;
    margin-left: 6px; vertical-align: middle;
    letter-spacing: .02em;
}
.pd-unlim {
    background: var(--save-bg); color: var(--save);
    border-radius: 12px; padding: 13px 15px;
    font-size: 12.5px; line-height: 1.55;
    margin-top: 4px;
}
.pd-unlim b { display: block; font-size: 14px; margin-bottom: 3px; }
[data-theme="dark"] .flag-img,
[data-theme="dark"] .flag-globe { box-shadow: 0 0 0 1px rgba(255, 255, 255, .14); }
.dest-card .flag-img, .dest-card .flag-globe { width: 44px; height: 31px; border-radius: 6px; }
.dest-flag .flag-img, .dest-flag .flag-globe { width: 40px; height: 28px; border-radius: 6px; }
.country-head .flag-img, .country-head .flag-globe { width: 54px; height: 38px; border-radius: 8px; }
.cn-flag .flag-img, .cn-flag .flag-globe { width: 26px; height: 18px; }
.pd-op .flag-img, .pd-net .flag-img { width: 20px; height: 14px; border-radius: 3px; }

/* ── Country networks / coverage section (collapsible) ── */
.country-networks {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: 24px;
    overflow: hidden;
}
.country-networks > summary.cn-head {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    margin: 0;
}
.country-networks > summary.cn-head::-webkit-details-marker { display: none; }
.cn-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.cn-chev {
    margin-left: auto;
    width: 8px; height: 8px;
    border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft);
    transform: rotate(45deg);
    transition: transform .2s;
    flex-shrink: 0;
}
.country-networks[open] .cn-chev { transform: rotate(-135deg); }
.cn-body { padding: 0 18px 16px; }
.cn-head h2 { margin: 0; font-size: 17px; }
.cn-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2px 10px;
}
.cn-search {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 14px;
}
.cn-search:focus { outline: none; border-color: var(--accent); }
.cn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
}
.country-networks:not(:has(.cn-search)) .cn-grid { max-height: none; }
.cn-item {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
}
.cn-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.cn-flag { font-size: 18px; line-height: 1; }
.cn-ops { display: flex; flex-wrap: wrap; gap: 6px; }
.cn-op {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 3px 9px;
    font-size: 12px;
    color: var(--ink);
}
.cn-op i {
    font-style: normal;
    font-size: 9.5px;
    font-weight: 700;
    background: var(--save-bg);
    color: var(--save);
    border-radius: 4px;
    padding: 1px 4px;
}

/* ── Operator brand mark: 3D embossed monogram (curated colors in functions.php) ── */
.op-mark {
    width: 18px; height: 18px; flex: 0 0 auto;
    border-radius: 5px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 9.5px; line-height: 1; letter-spacing: -.02em;
    color: #fff;
    background: linear-gradient(157deg,
        color-mix(in srgb, var(--oc) 72%, #fff) 0%,
        var(--oc) 47%,
        color-mix(in srgb, var(--oc) 84%, #000) 100%);
    box-shadow:
        inset 0 1px .5px rgba(255,255,255,.55),
        inset 0 -1.5px 1.5px rgba(0,0,0,.3),
        0 1px 2px rgba(17,51,47,.32);
    text-shadow: 0 1px 1px rgba(0,0,0,.38);
    border: .5px solid rgba(0,0,0,.14);
}
.op-mark.op-dark { color: #1a1a1a; text-shadow: 0 1px 0 rgba(255,255,255,.45); }
/* pills now lead with the mark — tuck the left padding in */
.cn-op { padding-left: 3px; gap: 6px; }

/* ── Plans list (whole row is a link → checkout, no button) ── */
.planlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
@media (max-width: 620px) {
    .planlist { grid-template-columns: 1fr; gap: 9px; margin-bottom: 16px; }
    .planrow { padding: 11px 14px; border-radius: 13px; gap: 8px; }
    .planrow .gb { font-size: 14.5px; }
    .planrow .meta { font-size: 11px; margin-top: 3px; }
    .planrow .price { font-size: 17px; }
    .planrow .sv { font-size: 10.5px; }
}

.planrow {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .16s, box-shadow .16s;
}
.planrow:hover {
    border-color: var(--accent);
    box-shadow: 0 14px 30px -20px var(--shadow);
}
.planrow.pick {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(236, 98, 64, .13);
}
.planrow-main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}
.planrow-main:hover { color: var(--ink); }
.plan-i {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}
.plan-i:hover { border-color: var(--accent); color: var(--accent); }
.planrow .gb { font-weight: 700; font-size: 17px; color: var(--ink); }
.planrow .meta {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--save);
    display: inline-block;
    flex-shrink: 0;
}
.planrow .r { text-align: right; flex-shrink: 0; }
.planrow .price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
}
.planrow .sv { font-size: 11.5px; color: var(--save); font-weight: 600; margin-top: 2px; }
.planrow .was { color: var(--ink-soft); text-decoration: line-through; font-size: 12px; margin-right: 6px; }

.plans-empty {
    margin-top: 40px;
    color: var(--ink-soft);
    font-size: 15px;
}

/* ── Plan details drawer (floating rounded panel) ── */
.plan-drawer { position: fixed; inset: 0; z-index: 9999; }
.plan-drawer[hidden] { display: none; }
.plan-drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(17, 51, 47, .46);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; transition: opacity .24s ease-out;
}
.plan-drawer.open .plan-drawer-backdrop { opacity: 1; }
.plan-drawer-panel {
    position: absolute; top: 12px; right: 12px; bottom: 12px;
    width: min(430px, calc(100vw - 24px));
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 32px 90px -28px rgba(17, 51, 47, .5);
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateX(calc(100% + 32px));
    transition: transform .3s cubic-bezier(.32, .72, .25, 1);
}
.plan-drawer.open .plan-drawer-panel { transform: translateX(0); }
.pd-grab { display: none; }
.plan-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 18px 20px 14px;
    flex-shrink: 0;
}
.plan-drawer-head h2 {
    margin: 0; font-size: 17px; line-height: 1.3;
    font-weight: 700; letter-spacing: -.01em;
}
.plan-drawer-x {
    flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    border: 1px solid var(--line); background: var(--surface);
    color: var(--ink-soft); font-size: 22px; line-height: 1;
    cursor: pointer; transition: border-color .15s, color .15s, transform .15s;
}
.plan-drawer-x:hover { border-color: var(--accent); color: var(--accent); }
.plan-drawer-x:active { transform: scale(.94); }
.plan-drawer-x:focus-visible, .pd-buy:focus-visible, .pd-net-c:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.plan-drawer-body { flex: 1; min-height: 0; overflow-y: auto; padding: 4px 20px 22px; overscroll-behavior: contain; }
.plan-drawer-foot {
    flex-shrink: 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: var(--surface);
}
.pd-buy {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--accent); color: var(--accent-ink);
    font-weight: 700; font-size: 15.5px;
    border-radius: 15px; padding: 15px 0; min-height: 48px;
    text-decoration: none; cursor: pointer;
    box-shadow: 0 12px 26px -14px var(--accent);
    transition: transform .15s, opacity .15s;
    font-variant-numeric: tabular-nums;
}
.pd-buy:hover { opacity: .92; color: var(--accent-ink); }
.pd-buy:active { transform: scale(.98); }

/* Stat card — single rounded container, 2×2 cells with hairline dividers */
.pd-facts {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 6px;
    box-shadow: 0 10px 30px -24px var(--shadow);
}
.pd-facts > div { padding: 13px 16px; }
.pd-facts > div:nth-child(2n) { border-left: 1px solid var(--line); }
.pd-facts > div:nth-child(n+3) { border-top: 1px solid var(--line); }
.pd-facts span {
    display: flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: var(--ink-soft); margin-bottom: 5px;
}
.pd-facts span svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.pd-facts b {
    font-size: 16.5px; color: var(--ink); font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variant-numeric: tabular-nums; line-height: 1.2;
}
.pd-facts b small { font-size: 11px; font-weight: 600; color: var(--ink-soft); margin-left: 2px; }
.pd-fact-price b { color: var(--accent); }

/* Section headers — accent tick + compact uppercase */
.pd-h {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .09em;
    color: var(--ink-soft);
    margin: 22px 0 10px;
}
.pd-h::before { content: ""; width: 14px; height: 3px; border-radius: 3px; background: var(--accent); flex-shrink: 0; }

/* Specs — one card, tight rows */
.pd-specs {
    display: flex; flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 3px 15px;
}
.pd-spec {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 16px; padding: 9px 0;
    border-bottom: 1px solid var(--line);
}
.pd-spec:last-child { border-bottom: 0; }
.pd-spec span { font-size: 12.5px; color: var(--ink-soft); flex-shrink: 0; }
.pd-spec b { font-size: 13px; color: var(--ink); font-weight: 650; text-align: right; font-variant-numeric: tabular-nums; }

.pd-unlim {
    margin-top: 12px;
    background: color-mix(in srgb, var(--accent) 7%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    border-radius: 16px; padding: 13px 15px;
    font-size: 12.5px; line-height: 1.6; color: var(--ink-soft);
}
.pd-unlim b { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink); margin-bottom: 3px; }
.pd-unlim b svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.pd-desc-row { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.pd-desc-row:last-child { border-bottom: 0; }
.pd-desc-t { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.pd-desc-c { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* Coverage — tappable country cards linking to that country's plans */
.pd-nets { display: flex; flex-direction: column; gap: 8px; }
.pd-net {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px; padding: 11px 13px;
    transition: border-color .15s;
}
.pd-net:has(a.pd-net-c:hover) { border-color: var(--accent); }
.pd-net-c {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; font-weight: 650; color: var(--ink);
    text-decoration: none;
}
.pd-net-c + .pd-net-ops { margin-top: 8px; }
a.pd-net-c { cursor: pointer; }
a.pd-net-c:hover { color: var(--accent); }
.pd-net-go { margin-left: auto; flex-shrink: 0; width: 15px; height: 15px; stroke: var(--ink-soft); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .15s, stroke .15s; }
a.pd-net-c:hover .pd-net-go { transform: translateX(2px); stroke: var(--accent); }
.pd-net-ops { display: flex; flex-wrap: wrap; gap: 6px; }
.pd-op {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--surface-2); border: 1px solid var(--line);
    border-radius: 20px; padding: 3px 10px 3px 3px;
    font-size: 11.5px; color: var(--ink);
}
.pd-op i {
    font-style: normal; font-size: 9.5px; font-weight: 700;
    background: var(--save-bg); color: var(--save);
    border-radius: 5px; padding: 1px 5px;
}

/* Mobile — bottom sheet with grabber */
@media (max-width: 640px) {
    .plan-drawer-panel {
        top: auto; left: 10px; right: 10px; bottom: 10px;
        width: auto; max-height: calc(100dvh - 56px);
        border-radius: 24px;
        transform: translateY(calc(100% + 32px));
    }
    .plan-drawer.open .plan-drawer-panel { transform: translateY(0); }
    .pd-grab {
        display: block; flex-shrink: 0;
        width: 44px; height: 5px; border-radius: 99px;
        background: var(--line); margin: 10px auto 0;
    }
    .plan-drawer-head { padding-top: 10px; }
}
@media (prefers-reduced-motion: reduce) {
    .plan-drawer-panel, .plan-drawer-backdrop, .pd-net-go { transition: none; }
}

/* ── Destinations grid (archive + homepage) ── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.dest-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--ink);
    transition: box-shadow .15s, border-color .15s;
}
.dest-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px var(--shadow);
    color: var(--ink);
}
.dest-flag {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.dest-info {
    flex: 1;
    min-width: 0;
}
.dest-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dest-info small {
    color: var(--ink-soft);
    font-size: 12px;
}
.dest-arrow {
    color: var(--ink-soft);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   TURNAA – Checkout & Cart (match design reference)
══════════════════════════════════════════════════════════════════ */

/* Hidden non-essential billing fields */
.turnaa-hidden-field { display: none !important; }

/* Hide unused "Additional information" / order-notes block (digital goods) */
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_comments_field { display: none !important; }

/* Page wrap + heading */
.woocommerce-checkout .ct-container,
.woocommerce-cart .ct-container {
    max-width: var(--maxw) !important;
}
.woocommerce-checkout #turnaa-main,
.woocommerce-cart #turnaa-main { padding-top: 32px; }

.woocommerce-checkout h1.entry-title,
.woocommerce-cart h1.entry-title {
    font-size: clamp(26px, 5vw, 32px);
    margin-bottom: 24px;
}
.checkout-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    margin-bottom: 16px;
}
.checkout-back:hover { color: var(--accent); }

/* ── Checkout: 2-column (.co-grid 1fr .8fr), reference design ── */
.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1fr .8fr;
    column-gap: 28px;
    align-items: start;
}
.woocommerce-checkout #customer_details     { grid-column: 1; grid-row: 1 / span 2; }
.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; margin-top: 0; }
.woocommerce-checkout #order_review         { grid-column: 2; grid-row: 2; }
@media (max-width: 880px) {
    .woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review { grid-column: 1; grid-row: auto; }
}

/* Panels (.panel) */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout .ct-order-review {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    padding: 24px !important;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--ink);
}

/* Right panel sticky */
.woocommerce-checkout #order_review {
    position: sticky;
    top: 24px;
}

/* Form fields (.field) */
.woocommerce form .form-row label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 7px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout .input-text {
    width: 100%;
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: 12px !important;
    padding: 13px 14px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    color: var(--ink) !important;
    box-shadow: none !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus {
    outline: 2px solid var(--accent) !important;
    outline-offset: 1px;
    border-color: var(--accent) !important;
}

/* Order summary table (.summary .srow) */
.woocommerce-checkout .shop_table {
    border: none !important;
    margin: 0 0 4px !important;
}
.woocommerce-checkout .shop_table th,
.woocommerce-checkout .shop_table td {
    border: none !important;
    padding: 7px 0 !important;
    font-size: 14px;
    color: var(--ink);
}
.woocommerce-checkout .shop_table tfoot tr.order-total th,
.woocommerce-checkout .shop_table tfoot tr.order-total td {
    border-top: 1px solid var(--line) !important;
    padding-top: 13px !important;
    margin-top: 9px;
    font-size: 17px;
    font-weight: 700;
}
.woocommerce-checkout .cart-subtotal,
.woocommerce-checkout .cart_item { color: var(--ink-soft); }

/* Payment box */
.woocommerce-checkout #payment,
.woocommerce-checkout .woocommerce-checkout-payment {
    background: transparent !important;
    margin-top: 8px;
}
.woocommerce-checkout #payment ul.payment_methods {
    border: 1px solid var(--line) !important;
    border-radius: 12px !important;
    background: var(--surface-2);
    padding: 14px 16px !important;
}
.woocommerce-checkout #payment div.payment_box {
    background: var(--surface-2) !important;
    color: var(--ink-soft);
    border-radius: 12px;
}
.woocommerce-checkout #payment div.payment_box::before { display: none; }

/* Place-order button (.btn) */
.woocommerce #payment #place_order,
.woocommerce-checkout button#place_order {
    background: var(--accent) !important;
    color: var(--accent-ink) !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    padding: 15px 0 !important;
    width: 100% !important;
    border: none !important;
    margin-top: 12px;
    box-shadow: 0 10px 22px -12px var(--accent);
    transition: opacity .15s;
}
.woocommerce #payment #place_order:hover { opacity: .9; }

/* Secured-by-Stripe note (.secured) */
.woocommerce-checkout .ct-payment-methods,
.woocommerce-checkout .place-order .woocommerce-terms-and-conditions-wrapper {
    font-size: 12.5px;
    color: var(--ink-soft);
}
.woocommerce-checkout .place-order::after {
    content: "🔒 Secured by Stripe";
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 14px;
}

/* Section headers, reassurance, trust, policy links */
.co-sec-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 14px;
}
.co-pay-title { margin-top: 4px; }
.co-reassure {
    background: var(--save-bg);
    color: var(--save);
    font-size: 12.5px;
    line-height: 1.5;
    border-radius: 10px;
    padding: 9px 12px;
    margin-top: 10px;
}
.co-reassure-row td { padding: 0 !important; border: 0 !important; }
.co-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-soft);
}
.co-legal { text-align: center; font-size: 12px; color: var(--ink-soft); margin-top: 10px; }
.co-legal a { color: var(--accent); }

/* ── Cart styling ── */
.woocommerce-cart table.cart {
    border: 1px solid var(--line) !important;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
}
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    border-color: var(--line) !important;
    color: var(--ink);
}
.woocommerce-cart .cart_totals {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    padding: 24px !important;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background: var(--accent) !important;
    color: var(--accent-ink) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 12px 22px !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button { width: 100%; text-align: center; }

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top-color: var(--accent) !important;
    border-radius: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   TURNAA – My Account (login, register, dashboard)
══════════════════════════════════════════════════════════════════ */
.woocommerce-account .ct-container { max-width: var(--maxw) !important; }
.woocommerce-account h1.entry-title { font-size: clamp(24px, 5vw, 30px); margin-bottom: 22px; }
.woocommerce-account h2 { font-size: 18px; margin: 0 0 14px; }

/* ── Logged out: login / register cards ── */
.woocommerce-account:not(.logged-in) .woocommerce { max-width: 880px; margin: 0 auto; }
.woocommerce-account .u-columns { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) {
    .woocommerce-account .col2-set.u-columns { grid-template-columns: 1fr 1fr; }
}
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 { width: 100% !important; float: none !important; margin: 0 !important; }
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    padding: 28px 30px !important;
    margin: 0 !important;
}
.woocommerce-form-login__rememberme,
.woocommerce-form-register__submit { margin-top: 8px; }
.woocommerce-account .lost_password { font-size: 13px; margin-top: 12px; }
.woocommerce-account .lost_password a { color: var(--accent); }

/* ── Logged in: navigation + content ── */
.woocommerce-account.logged-in .woocommerce {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 26px;
    align-items: start;
}
@media (max-width: 780px) {
    .woocommerce-account.logged-in .woocommerce { grid-template-columns: 1fr; }
}
.woocommerce-MyAccount-navigation {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    padding: 10px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li { margin: 0; border: 0; }
.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .15s, color .15s;
}
.woocommerce-MyAccount-navigation li a:hover { background: var(--surface-2); color: var(--ink); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--accent); color: var(--accent-ink); }
.woocommerce-MyAccount-content {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    padding: 26px 30px;
    min-width: 0;
}
.woocommerce-MyAccount-content > p:first-child { margin-top: 0; }
.woocommerce-MyAccount-content a:not(.button):not(.esim-name) { color: var(--accent); }
.woocommerce-MyAccount-content h2 { margin-top: 0; }

/* Account tables (orders / downloads) */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    border: 1px solid var(--line);
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
    background: var(--surface-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--ink-soft);
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
    padding: 12px 14px;
    border-color: var(--line);
}

/* ── Refer & earn tab ── */
.ref-intro { font-size: 15px; color: var(--ink); margin-bottom: 20px; line-height: 1.6; }
.ref-link-box { display: flex; gap: 8px; margin-bottom: 22px; }
.ref-link-box input {
    flex: 1; min-width: 0;
    background: var(--surface-2); border: 1.5px solid var(--line);
    border-radius: 12px; padding: 12px 14px; font-size: 14px; color: var(--ink);
}
.ref-link-box .btn { white-space: nowrap; }
.ref-stats { display: flex; gap: 12px; margin-bottom: 22px; }
.ref-stat {
    flex: 1; background: var(--surface-2); border: 1px solid var(--line);
    border-radius: 14px; padding: 16px 18px; font-size: 13px; color: var(--ink-soft);
}
.ref-stat span {
    display: block; font-size: 24px; font-weight: 700; color: var(--ink);
    font-family: 'Bricolage Grotesque', sans-serif; margin-bottom: 2px;
}
.ref-share { display: flex; gap: 10px; flex-wrap: wrap; }
.ref-share-btn {
    display: inline-block; padding: 10px 18px; border-radius: 12px;
    border: 1.5px solid var(--line); background: var(--surface);
    color: var(--ink); text-decoration: none; font-weight: 600; font-size: 14px;
}
.ref-share-btn:hover { border-color: var(--accent); color: var(--accent); }
.ref-share-btn.wa { background: #25D366; color: #fff; border-color: #25D366; }
.ref-share-btn.wa:hover { color: #fff; opacity: .9; }
.ref-fine { font-size: 12px; color: var(--ink-soft); margin-top: 16px; }

/* ── Plans v2 sade polish (2026-07) ── */
.dur-chip.empty{display:none}
.planrow{position:relative}
.pick-badge{position:absolute;top:-9px;left:14px;background:var(--accent);color:#fff;font-size:10px;font-weight:700;padding:2px 9px;border-radius:999px;letter-spacing:.02em;box-shadow:0 4px 10px -4px var(--accent);z-index:1}
.plan-trust{display:flex;gap:18px;flex-wrap:wrap;margin:8px 2px 10px;padding:12px 2px 0;border-top:1px dashed var(--line)}
.plan-trust span{font-size:12.5px;color:var(--ink-soft);font-weight:500;display:inline-flex;gap:6px;align-items:center}
.dest-intro{margin:44px 0 10px;padding-top:20px;border-top:1px solid var(--line);max-width:760px;font-size:13.5px}
@media(max-width:640px){
  .planrow{padding:10px 12px;gap:8px}
  .planrow .meta{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:58vw}
  .planrow .cov-pill{display:none}
  .pick-badge{left:10px;font-size:9px;top:-8px}
  .plan-trust{gap:12px}
  .plan-trust span{font-size:11px}
  .dest-intro{margin:34px 0 8px;padding-top:16px}
}

/* ── Plans v3: grouped by duration ── */
.planlist .plan-group{display:flex;align-items:center;gap:10px;margin:20px 2px 9px;grid-column:1/-1}
.planlist .plan-group:first-child{margin-top:6px}
.plan-group b{font-family:'Bricolage Grotesque',sans-serif;font-size:12.5px;font-weight:700;letter-spacing:.12em;color:var(--ink-soft);text-transform:uppercase}
.plan-group i{flex:1;height:1px;background:var(--line)}
.plan-group .pg-count{font-size:11px;color:var(--ink-soft);opacity:.7}
.planrow .gb{font-family:'Bricolage Grotesque',sans-serif;font-size:19px}
.planrow .gb small{font-family:'Inter',system-ui,sans-serif;font-size:11px;font-weight:500;color:var(--ink-soft);margin-left:1px}
.planrow .sub{font-size:11px;color:var(--ink-soft);margin-top:3px}
.planrow .price{font-size:18px}
.planrow .sv{background:var(--save-bg);color:var(--save);border-radius:999px;padding:1px 8px;font-size:10px;font-weight:700;display:inline-block;margin-top:2px}
@media(max-width:640px){.planrow .gb{font-size:16px}.planrow .price{font-size:16px}.plan-group{margin:15px 2px 7px}.plan-group b{font-size:11px}}

/* ── Country SEO zone v2: centered + facts ── */
.wider-coverage .sec-head{text-align:center}
.wider-coverage .dest-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;max-width:820px;margin:0 auto}
.wider-coverage .dest-card{flex:0 1 240px}
.wider-coverage .dest-flag .region-flag-map{width:44px;height:32px;display:block}
.dest-facts{max-width:760px;margin:46px auto 0;text-align:center}
.dest-facts h2{font-size:22px;margin:0 0 16px}
.df-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.df-cell{background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:12px 18px;min-width:150px}
.df-cell span{display:block;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--ink-soft);margin-bottom:3px}
.df-cell b{font-size:14.5px;color:var(--ink)}
.df-warn{font-size:12.5px;color:var(--ink-soft);margin:14px auto 0;max-width:560px;line-height:1.6}
.dest-intro{margin:40px auto 10px;text-align:center}
.dest-faq{margin:40px auto 8px}
.dest-faq h2{text-align:center}
@media(max-width:640px){.df-cell{min-width:calc(50% - 5px);padding:10px 12px}.wider-coverage .dest-card{flex-basis:100%}}

/* ── Country page refine (2026-07): plans single-column + slim + softly raised;
     de-boxed "Good to know"; left-aligned FAQ ── */
.plan-filters{max-width:660px;margin-left:auto;margin-right:auto}
.planlist{grid-template-columns:1fr!important;max-width:660px;margin-left:auto;margin-right:auto;gap:10px}
/* tariff cards = same borderless, softly-raised look as the destination cards */
.planrow{padding:14px 18px;border-color:transparent;box-shadow:0 10px 26px -18px rgba(17,51,47,.28);transition:transform .16s ease, box-shadow .18s ease}
.planrow:hover{transform:translateY(-3px);box-shadow:0 22px 44px -20px rgba(17,51,47,.38)}
.planrow.pick{box-shadow:0 0 0 2px color-mix(in srgb, var(--accent) 32%, transparent), 0 12px 28px -18px rgba(17,51,47,.3)}
.planrow.pick:hover{transform:translateY(-3px);box-shadow:0 0 0 2px color-mix(in srgb, var(--accent) 40%, transparent), 0 22px 44px -20px rgba(17,51,47,.4)}
/* Good to know: one clean panel, borderless stats inside (no box-in-box) */
.df-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:12px 30px;background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:18px 24px}
.df-cell{background:transparent!important;border:0!important;border-radius:0!important;padding:0!important;min-width:auto!important;text-align:center}
/* FAQ left-aligned */
.dest-faq h2{text-align:left!important}
@media(max-width:640px){.df-grid{gap:12px 18px;padding:16px}}

/* ── Country page: one unified column width (kill "mushroom": wide head / narrow list) ── */
body.tax-product_cat #turnaa-main > .wrap{max-width:840px;margin-left:auto;margin-right:auto}
body.tax-product_cat .planlist{max-width:none!important;margin-left:0!important;margin-right:0!important}
body.tax-product_cat .plan-filters{max-width:none!important;margin-left:0!important;margin-right:0!important}
body.tax-product_cat .dest-facts,
body.tax-product_cat .dest-faq{max-width:none!important;margin-left:0!important;margin-right:0!important}
body.tax-product_cat .wider-coverage .dest-grid{max-width:none}

/* ── Light 3D "3 easy steps" card on country pages ── */
.turnaa-steps{background:linear-gradient(135deg,#EAF6F3,#E6F0FB);border:1px solid #DCEBE7;border-radius:22px;padding:30px 28px;margin:44px auto 0;box-shadow:0 22px 46px -32px rgba(17,51,47,.30),inset 0 1px 0 rgba(255,255,255,.6)}
.turnaa-steps h2{font-size:24px;color:var(--ink);margin:0 0 22px;text-align:center}
.ts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.ts-card{background:#fff;border:1px solid #E7E2D7;border-radius:16px;padding:22px 20px;box-shadow:0 10px 24px -16px rgba(17,51,47,.22);transition:transform .15s,box-shadow .15s}
.ts-card:hover{transform:translateY(-3px);box-shadow:0 18px 34px -20px rgba(17,51,47,.28)}
.ts-num{font-family:'Bricolage Grotesque',sans-serif;font-size:28px;font-weight:700;color:var(--accent);line-height:1}
.ts-ic{width:40px;height:40px;border-radius:12px;background:var(--save-bg);color:var(--save);display:flex;align-items:center;justify-content:center;margin:12px 0 12px}
.ts-card h3{font-size:16.5px;color:var(--ink);margin:0 0 6px}
.ts-card p{font-size:13.5px;color:var(--ink-soft);line-height:1.65;margin:0}
@media(max-width:720px){.ts-grid{grid-template-columns:1fr}.turnaa-steps{padding:24px 18px}}

/* ── Partners page: hide Blocksy hero title ── */
body.page-id-4562 .hero-section,body.page-id-4562 .entry-header,body.page-id-4562 .page-title,body.page-id-4562 h1.entry-title{display:none!important}

/* ── refine: plan-row number pops, unit small+light ── */
.planrow .gb-n{font-size:22px}
.planrow .gb-u{font-family:'Inter',system-ui,sans-serif;font-size:13px;font-weight:600;color:var(--ink-soft);margin-left:3px;letter-spacing:.2px}
@media(max-width:640px){.planrow .gb-n{font-size:18px}.planrow .gb-u{font-size:12px}}
/* ── refine: 3-steps card tighter (no icons), smaller on mobile ── */
.ts-num{margin-bottom:9px}
@media(max-width:720px){
  .turnaa-steps{padding:20px 14px;margin-top:32px}
  .turnaa-steps h2{font-size:20px;margin-bottom:15px}
  .ts-grid{gap:10px}
  .ts-card{padding:15px 15px}
  .ts-num{font-size:23px;margin-bottom:6px}
  .ts-card h3{font-size:15px;margin-bottom:4px}
  .ts-card p{font-size:12.5px;line-height:1.55}
}

/* ═══ Partner signup: split card (page 4562) ═══ */
body.page-id-4562 .tp-signup{display:grid;grid-template-columns:0.82fr 1fr;max-width:880px;margin:28px auto 0;border:1px solid #ECDFD9;border-radius:20px;overflow:hidden;background:#fff;box-shadow:0 34px 66px -42px rgba(17,51,47,.36)}
body.page-id-4562 .tp-signup-aside{background:linear-gradient(165deg,rgba(168,50,20,.94),rgba(202,74,42,.86)),url(../../uploads/turnaa-dash/partner-signup.jpg) center/cover no-repeat;color:#fff;padding:34px 30px}
body.page-id-4562 .tps-eyebrow{font-size:12px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:#FCE1D7}
body.page-id-4562 .tps-h{font-size:27px;font-weight:700;line-height:1.14;margin:11px 0 8px;color:#fff}
body.page-id-4562 .tps-sub{font-size:14px;line-height:1.6;color:#FCE1D7;margin:0 0 26px}
body.page-id-4562 .tps-b{display:flex;gap:12px;align-items:flex-start;margin-bottom:17px}
body.page-id-4562 .tps-ic{width:37px;height:37px;border-radius:10px;background:rgba(255,255,255,.17);display:flex;align-items:center;justify-content:center;flex-shrink:0}
body.page-id-4562 .tps-ic svg{width:19px;height:19px;stroke:#fff;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
body.page-id-4562 .tps-b b{display:block;font-size:14.5px;font-weight:600;color:#fff;margin-bottom:1px}
body.page-id-4562 .tps-b>div span{font-size:12.5px;color:#FCE1D7;line-height:1.4}
body.page-id-4562 .tp-signup .yith-wcaf-registration-form{margin:0;padding:32px 30px;max-width:none;width:auto;float:none}
body.page-id-4562 .tp-signup .yith-wcaf .forms-container,
body.page-id-4562 .tp-signup .register-form,
body.page-id-4562 .tp-signup form.register{max-width:none;width:auto;margin:0;padding:0;background:none;border:0;box-shadow:none}
body.page-id-4562 .tp-signup .register-title{font-size:19px;font-weight:700;color:#11332F;text-align:left;margin:0 0 15px;padding:0;border:0}
body.page-id-4562 .tp-signup form.register{display:grid;grid-template-columns:1fr 1fr;column-gap:12px;row-gap:13px}
body.page-id-4562 .tp-signup form.register>*{grid-column:1/-1;margin:0}
body.page-id-4562 .tp-signup form.register .form-row{padding:0;margin:0;width:auto;float:none}
body.page-id-4562 .tp-signup #profile_first_name_field{grid-column:1/2}
body.page-id-4562 .tp-signup #profile_last_name_field{grid-column:2/3}
body.page-id-4562 .tp-signup #profile_website_field{grid-column:1/2}
body.page-id-4562 .tp-signup #profile_how_promote_field{grid-column:2/3}
body.page-id-4562 .tp-signup form.register label{font-size:12.5px;font-weight:600;color:#11332F;margin:0 0 5px;display:block}
body.page-id-4562 .tp-signup form.register .required{color:var(--accent);border:0;text-decoration:none}
body.page-id-4562 .tp-signup form.register .woocommerce-input-wrapper{position:relative;display:block;width:100%}
body.page-id-4562 .tp-signup form.register input.input-text,
body.page-id-4562 .tp-signup form.register input[type=text],
body.page-id-4562 .tp-signup form.register input[type=email],
body.page-id-4562 .tp-signup form.register input[type=password],
body.page-id-4562 .tp-signup form.register select{width:100%;box-sizing:border-box;background:#FBF7F4;border:1px solid #E2D8CF;border-radius:10px;padding:11px 13px;font-size:14px;color:#11332F;height:auto;line-height:1.3;margin:0}
body.page-id-4562 .tp-signup form.register input:focus,
body.page-id-4562 .tp-signup form.register select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);background:#fff}
body.page-id-4562 .tp-signup form.register .show-password-input{position:absolute;right:13px;top:12px;cursor:pointer}
body.page-id-4562 .tp-signup .turnaa-social-login{margin-bottom:2px}
body.page-id-4562 .tp-signup .woocommerce-privacy-policy-text{font-size:11.5px;color:#8A9490;line-height:1.5}
body.page-id-4562 .tp-signup .woocommerce-privacy-policy-text p{margin:0}
body.page-id-4562 .tp-signup form.register .terms-label label{font-size:12px;color:#5C6E6A;font-weight:400;display:inline}
body.page-id-4562 .tp-signup form.register input[type=submit],
body.page-id-4562 .tp-signup form.register .button{width:100%;background:var(--accent);border:0;color:#fff;font-size:15px;font-weight:700;border-radius:11px;padding:14px;cursor:pointer;transition:background .15s;box-shadow:none;text-transform:none;letter-spacing:0}
body.page-id-4562 .tp-signup form.register input[type=submit]:hover,
body.page-id-4562 .tp-signup form.register .button:hover{background:#D8481F}
@media(max-width:768px){
  body.page-id-4562 .tp-signup{grid-template-columns:1fr;margin-top:20px;border-radius:16px}
  body.page-id-4562 .tp-signup-aside{padding:26px 22px}
  body.page-id-4562 .tps-h{font-size:23px}
  body.page-id-4562 .tp-signup .yith-wcaf-registration-form{padding:24px 20px}
  body.page-id-4562 .tp-signup form.register{grid-template-columns:1fr}
  body.page-id-4562 .tp-signup #profile_first_name_field,
  body.page-id-4562 .tp-signup #profile_last_name_field,
  body.page-id-4562 .tp-signup #profile_website_field,
  body.page-id-4562 .tp-signup #profile_how_promote_field{grid-column:1/-1}
}
/* ═══ Homepage: Become-a-partner CTA band ═══ */
.partner-cta{background:var(--accent);border-radius:24px;padding:44px 48px;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.partner-cta-txt{flex:1;min-width:280px}
.partner-cta-txt h2{color:#fff;font-size:30px;margin:8px 0 10px}
.partner-cta-txt h2 em{font-style:normal;color:#FFE1D6}
.partner-cta-txt p{color:#FCE1D7;font-size:15px;line-height:1.6;margin:0;max-width:580px}
.partner-cta-btn{background:#fff;color:#A83214;font-weight:700;font-size:15px;padding:15px 30px;border-radius:12px;text-decoration:none;white-space:nowrap;transition:transform .15s,box-shadow .15s}
.partner-cta-btn:hover{transform:translateY(-2px);box-shadow:0 12px 26px -14px rgba(0,0,0,.4)}
@media(max-width:600px){.partner-cta{padding:32px 26px}.partner-cta-txt h2{font-size:24px}.partner-cta-btn{width:100%;text-align:center}}

/* Steps v2: quality photo cards */
.turnaa-steps .ts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.turnaa-steps .ts-card{background:#fff;border:1px solid #E7E2D7;border-radius:16px;padding:0;overflow:hidden;box-shadow:0 12px 26px -20px rgba(17,51,47,.24);transition:transform .15s,box-shadow .15s}
.turnaa-steps .ts-card:hover{transform:translateY(-3px);box-shadow:0 18px 34px -22px rgba(17,51,47,.3)}
.turnaa-steps .ts-img{position:relative;aspect-ratio:16/10;overflow:hidden;background:#F1EEE7}
.turnaa-steps .ts-img img{width:100%;height:100%;object-fit:cover;display:block}
.turnaa-steps .ts-num{position:absolute;left:12px;top:12px;width:30px;height:30px;border-radius:50%;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:15px;font-family:'Bricolage Grotesque',sans-serif;box-shadow:0 5px 14px color-mix(in srgb, var(--accent) 45%, transparent)}
.turnaa-steps .ts-body{padding:15px 18px 18px}
.turnaa-steps .ts-body h3{font-size:16px;color:var(--ink);margin:0 0 5px}
.turnaa-steps .ts-body p{font-size:13.5px;color:var(--ink-soft);line-height:1.6;margin:0}
@media(max-width:720px){
  .turnaa-steps{padding:22px 15px}
  .turnaa-steps .ts-grid{grid-template-columns:1fr;gap:13px}
  .turnaa-steps .ts-img{aspect-ratio:16/9}
  .turnaa-steps .ts-body{padding:14px 16px 16px}
}
/* Good to know v2: icon summary cells */
.dest-facts .gk-head{display:flex;align-items:baseline;gap:10px;margin-bottom:16px;flex-wrap:wrap}
.dest-facts .gk-head h2{margin:0}
.dest-facts .gk-sub{font-size:12.5px;color:var(--ink-soft)}
.dest-facts .df-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(118px,1fr));gap:12px;max-width:none}
.dest-facts .df-cell{display:flex;flex-direction:column;align-items:center;text-align:center;gap:5px;background:#fff;border:1px solid #ECE6DC;border-radius:14px;padding:16px 12px;min-width:0}
.dest-facts .df-ic{color:var(--accent);display:flex;margin-bottom:1px}
.dest-facts .df-ic svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.dest-facts .df-lbl{font-size:11.5px;color:var(--ink-soft);font-weight:500;line-height:1.25}
.dest-facts .df-cell b{font-size:14px;color:var(--ink);font-weight:600;line-height:1.25}
@media(max-width:520px){.dest-facts .df-grid{grid-template-columns:1fr 1fr}}

/* Good to know v3: thin strip (compact, mobile-friendly) */
.dest-facts .gk-strip{display:flex;align-items:center;gap:16px;flex-wrap:wrap;background:#fff;border:1px solid #ECE6DC;border-radius:14px;padding:11px 18px}
.dest-facts .gk-lead{display:flex;flex-direction:column;line-height:1.2;padding-right:16px;border-right:1px solid #EFE9DF}
.dest-facts .gk-lead b{font-size:13px;color:var(--ink);font-weight:600}
.dest-facts .gk-lead span{font-size:10.5px;color:var(--ink-soft)}
.dest-facts .gk-items{display:flex;flex-wrap:wrap;gap:6px 22px;flex:1}
.dest-facts .gk-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:1px;min-width:58px}
.dest-facts .gk-item .df-ic{color:var(--accent);display:flex}
.dest-facts .gk-item .df-ic svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.dest-facts .gk-item .df-lbl{font-size:10px;color:var(--ink-soft);font-weight:500}
.dest-facts .gk-item b{font-size:11.5px;color:var(--ink);font-weight:600;line-height:1.2}
@media(max-width:600px){
  .dest-facts .gk-strip{gap:10px;padding:11px 14px}
  .dest-facts .gk-lead{border-right:0;border-bottom:1px solid #EFE9DF;padding:0 0 8px;width:100%;flex-direction:row;gap:7px;align-items:baseline}
  .dest-facts .gk-items{gap:12px 12px;justify-content:space-between}
  .dest-facts .gk-item{min-width:calc(33.333% - 8px)}
}

/* Steps as a single hero image (user-provided) */
.turnaa-steps-img{background:none;border:0;box-shadow:none;padding:6px 0 0}
.turnaa-steps-img h2{text-align:center;margin:0 0 4px}
.ts-hero{display:block;width:100%;max-width:1040px;height:auto;margin:16px auto 0;border-radius:18px;box-shadow:0 18px 44px -30px rgba(17,51,47,.3)}
@media(max-width:720px){.turnaa-steps-img{padding:2px 0 0}.ts-hero{margin-top:12px;border-radius:14px}}

/* i18n: also-searched-as line */
.dest-aka{margin:20px 0 0;font-size:12.5px;color:var(--ink-soft);line-height:1.7}
.dest-aka span{font-weight:600;color:var(--ink)}

/* ── tighter plan rows (thinner + closer) + smaller aka on mobile ── */
.planlist{gap:7px}
.planrow{padding:9px 16px}
.planlist .plan-group{margin:13px 2px 6px}
.planlist .plan-group:first-child{margin-top:4px}
.dest-aka{font-size:12px;line-height:1.6;margin-top:16px}
@media(max-width:640px){
  .planlist{gap:6px}
  .planrow{padding:8px 13px}
  .planlist .plan-group{margin:10px 2px 5px}
  .dest-aka{font-size:10.5px;line-height:1.5;margin-top:14px}
}

/* ═══════════ 2026-07 homepage reskin v2 ═══════════
   Warm brand canvas (cream/terracotta) — replaces the earlier pastel
   lavender pass the user rejected as "AI-looking".
   Pure override layer — delete this block to restore the previous look. */

/* The hero is a full-bleed band that must meet the header with no gap.
   `.blk{padding:60px 0}` is declared later at equal specificity and was
   winning the padding back, hence both class names here. */
.turnaa-hero-section{background:transparent}
.blk.turnaa-hero-section{padding:0}
.searchbar{border-color:transparent;box-shadow:0 16px 38px -18px rgba(17,51,47,.3)}
.hero-popchips a{border-color:transparent;box-shadow:0 6px 16px -10px rgba(17,51,47,.25)}

/* section rhythm + headings */
.blk{padding:60px 0}
.sec-head h2{font-weight:800;letter-spacing:-.01em}

/* destination + region cards: borderless, soft shadow */
.dest-card{border-color:transparent;box-shadow:0 10px 26px -18px rgba(17,51,47,.28)}
.dest-card:hover{border-color:transparent;box-shadow:0 22px 44px -20px rgba(17,51,47,.38)}

/* how-it-works steps: soft cards + ink number circles */
.step-card{border:0;border-radius:20px;box-shadow:0 10px 28px -18px rgba(17,51,47,.25)}
.step-num{width:40px;height:40px;border-radius:50%;background:var(--ink);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:17px;margin-bottom:14px}

/* why cards: warm tint family + white icon chips (SVG icons, accent stroke) */
.why-grid .why-card{border:0;border-radius:22px;box-shadow:0 10px 30px -18px rgba(17,51,47,.25)}
.why-grid .why-card:nth-child(1){background:linear-gradient(160deg,#FAF0E8,#FBF6EE)}
.why-grid .why-card:nth-child(2){background:linear-gradient(160deg,#EBF4EC,#F4FAF2)}
.why-grid .why-card:nth-child(3){background:linear-gradient(160deg,#F5F1E6,#FAF7EF)}
.why-icon{width:46px;height:46px;border-radius:14px;background:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 16px rgba(17,51,47,.10);margin-bottom:14px}
.why-icon svg{width:22px;height:22px;stroke:var(--accent);fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}

/* comparison band: keep the dark ink contrast, rounder + deeper shadow */
.cmp-band{border-radius:28px;box-shadow:0 26px 56px -30px rgba(17,51,47,.5)}

/* blog cards */
.blog-post{border:0;border-radius:20px;box-shadow:0 10px 28px -18px rgba(17,51,47,.25)}
.blog-post .thumb{height:150px}

/* partner band: terracotta gradient + glow shadow + pill button */
.partner-cta{background:linear-gradient(120deg,#A83214,#CA4A2A);border-radius:28px;box-shadow:0 26px 56px -26px rgba(168,50,20,.5)}
.partner-cta-btn{border-radius:999px}

/* ── Reviews / social proof ── */
.rv-kicker{display:inline-flex;align-items:center;gap:7px;background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 14px;font-size:11.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--ink);margin-bottom:16px;box-shadow:0 4px 14px rgba(17,51,47,.06)}
.rv-kicker svg{width:14px;height:14px;fill:#E9A13B}
.rv-stars{display:inline-flex;gap:2px;line-height:0}
.rv-stars svg{width:14px;height:14px;fill:#E9A13B}
.rv-rating{display:inline-flex;align-items:center;gap:10px;background:#fff;border:1px solid var(--line);border-radius:999px;padding:9px 17px;margin-top:18px;font-size:13px;color:var(--ink-soft);box-shadow:0 8px 20px -14px rgba(17,51,47,.3)}
.rv-rating b{font-family:'Bricolage Grotesque',sans-serif;font-size:15px;color:var(--ink)}
.rv-stats{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 14px 34px -26px rgba(17,51,47,.35);margin:8px 0 32px;overflow:hidden}
.rv-stat{display:flex;align-items:center;gap:12px;padding:18px 22px;border-left:1px solid var(--line);min-width:0}
.rv-stat:first-child{border-left:0}
.rv-ic{width:40px;height:40px;border-radius:12px;background:color-mix(in srgb,var(--accent) 8%,#fff);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rv-ic svg{width:19px;height:19px;stroke:var(--accent);fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.rv-stat b{display:block;font-family:'Bricolage Grotesque',sans-serif;font-size:19px;font-weight:700;color:var(--ink);line-height:1.15;font-variant-numeric:tabular-nums}
.rv-stat span{font-size:12px;color:var(--ink-soft)}
.rv-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.rv-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:20px;box-shadow:0 10px 28px -22px rgba(17,51,47,.3);display:flex;flex-direction:column;gap:9px}
.rv-card h3{font-size:15.5px;margin:0;line-height:1.3}
.rv-card p{font-size:13px;color:var(--ink-soft);line-height:1.6;flex:1;margin:0}
.rv-foot{display:flex;align-items:center;gap:10px;border-top:1px solid var(--line);padding-top:13px;margin-top:3px}
.rv-ava{width:34px;height:34px;border-radius:50%;background:color-mix(in srgb,var(--accent) 10%,#fff);color:var(--accent);font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rv-who{min-width:0}
.rv-who b{display:block;font-size:13px;color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rv-who span{display:block;font-size:11.5px;color:var(--ink-soft);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rv-ver{margin-left:auto;display:inline-flex;align-items:center;gap:4px;font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--save);flex-shrink:0}
.rv-ver svg{width:13px;height:13px;stroke:var(--save);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:1024px){
  .rv-grid{grid-template-columns:1fr 1fr}
  .rv-stats{grid-template-columns:1fr 1fr}
  .rv-stat:nth-child(odd){border-left:0}
  .rv-stat:nth-child(n+3){border-top:1px solid var(--line)}
}
@media(max-width:560px){
  .rv-grid{grid-template-columns:1fr}
  .rv-stats{grid-template-columns:1fr}
  .rv-stat{border-left:0}
  .rv-stat:nth-child(n+2){border-top:1px solid var(--line)}
}

/* footer polish: micro-label headings, roomier links, quieter bottom bar */
.turnaa-footer{padding:52px 0 30px}
.footer-col h4{font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--ink);margin-bottom:14px}
.footer-col a{margin-bottom:9px}
.footer-brand p{max-width:250px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;margin-top:26px;padding-top:20px;border-top:1px solid var(--line)}
.footer-bottom .footer-copy{margin-top:0;text-align:left}
.footer-bottom-links{display:flex;gap:16px;font-size:12.5px}
.footer-bottom-links a{color:var(--ink-soft)}
.footer-bottom-links a:hover{color:var(--accent)}

/* ═══ Destinations grid: hover lift (LAST so its transition wins) ═══ */
.dest-grid .dest-card{transition:transform .18s ease, box-shadow .18s, border-color .15s}
.dest-grid .dest-card:hover{transform:translateY(-4px)}
.dest-grid .dest-card:hover .dest-arrow{transform:translateX(3px);color:var(--accent)}

/* ─── Carrier marquee (under the hero) ─────────────────────
   Two rows drifting left at different speeds over the page's own
   background; the mask fades each end so names appear and leave rather
   than being cut. */
.op-marquee{padding:26px 0 10px;background:transparent;overflow:hidden}
.op-row{display:flex;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 10%,#000 90%,transparent 100%);
          mask-image:linear-gradient(90deg,transparent 0,#000 10%,#000 90%,transparent 100%)}
.op-row + .op-row{margin-top:10px}
.op-track{display:flex;flex:0 0 auto;gap:54px;padding-right:54px;animation:op-slide linear infinite;will-change:transform}
.op-row-a .op-track{animation-duration:64s}
/* The lower row travels the other way; reversing the same keyframes keeps
   the loop seamless because the list is printed twice. */
.op-row-b .op-track{animation-duration:52s;animation-direction:reverse}
.op-track span{white-space:nowrap;font-size:15.5px;font-weight:600;letter-spacing:.01em;color:#C3CAC7}
@keyframes op-slide{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(prefers-reduced-motion:reduce){.op-track{animation:none}}
@media(max-width:780px){.op-track span{font-size:13.5px}.op-track{gap:38px;padding-right:38px}}
