/* ── Reset & base ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --brand-yellow:#FDCE00;
  --brand-black:#0d0d0d;
  --brand-dark:#0f0f0f;
  --brand-bg:#f4f4f2;
  --white:#fff;
  --border:rgba(0,0,0,.09);
  --mid:#717171;
  --light:#a0a0a0;
  --radius:14px;
  --shadow:0 2px 12px rgba(0,0,0,.07);
  --shadow-h:0 8px 32px rgba(0,0,0,.13);
  --container:min(1180px,calc(100% - 2rem));
}
html{scroll-behavior:smooth}
body{font-family:"Source Sans 3",Arial,sans-serif;color:#111;background:var(--brand-bg);font-size:15px;line-height:1.5}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:var(--container);margin-inline:auto}
button{font-family:inherit;cursor:pointer}

/* ── Buttons ── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.4rem;padding:.55rem 1.2rem;border-radius:999px;font-weight:700;font-family:inherit;font-size:.88rem;border:1.5px solid transparent;cursor:pointer;transition:.15s;text-decoration:none;white-space:nowrap}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--brand-yellow);color:#000;border-color:var(--brand-yellow)}
.btn-primary:hover{background:#f0c400}
.btn-dark{background:var(--brand-dark);color:#fff;border-color:var(--brand-dark)}
.btn-ghost{background:transparent;border-color:rgba(0,0,0,.18);color:#333}
.btn-ghost:hover{border-color:#999}
.btn-sm{padding:.38rem .85rem;font-size:.82rem}
.btn-lg{padding:.7rem 1.6rem;font-size:1rem}

/* ══ HEADER — exact tools.itverse.co.uk match ══ */
.site-header{
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.08);
  position:sticky;top:0;z-index:200;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:90px;
  width:var(--container);
  margin-inline:auto;
  gap:1rem;
}
.brand{display:flex;align-items:center}
.site-logo{height:52px;width:auto}
.site-logo--footer{height:28px}
.nav-actions{display:flex;align-items:center;gap:.75rem}
.nav-back{font-size:.88rem;font-weight:600;color:#0d0d0d;transition:.15s}
.nav-back:hover{color:#000}
.store-badge{
  background:var(--brand-yellow);color:#000;
  font-size:.65rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.08em;
  padding:.18rem .5rem;border-radius:6px;
  margin-left:.5rem;
  vertical-align:middle;
}

/* ══ FOOTER — exact tools.itverse.co.uk match ══ */
.site-footer{background:var(--brand-dark);color:#fff;padding:2.5rem 0 1.25rem;margin-top:3rem}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:2.5rem;
  margin-bottom:1.75rem;
}
.footer-col p{font-size:.82rem;color:#888;line-height:1.65;margin-top:.55rem;max-width:26ch}
.footer-h{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:#555;margin-bottom:.65rem}
.footer-links{display:flex;flex-direction:column;gap:.4rem}
.footer-links a,.footer-links span{font-size:.83rem;color:#888;line-height:1.5}
.footer-links a:hover{color:#fff}
.footer-contact-item{font-size:.83rem;color:#888;line-height:1.6}
.footer-contact-item a{color:#888}
.footer-contact-item a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  padding-top:1.1rem;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;
  font-size:.73rem;color:#444;
}
.footer-bottom a{color:#555}
.footer-bottom a:hover{color:#888}
.footer-legal-links{display:flex;gap:1.25rem}

/* ── Info strip ── */
.info-strip{background:var(--brand-yellow);padding:.42rem 0}
.info-strip-inner{display:flex;align-items:center;justify-content:center;gap:1.5rem;flex-wrap:wrap;font-size:.78rem;font-weight:700}
.dot{width:4px;height:4px;border-radius:50%;background:rgba(0,0,0,.3);flex-shrink:0}

/* ── Filter bar ── */
.filter-bar{background:#fff;border-bottom:1px solid var(--border)}
.filter-inner{display:flex;overflow-x:auto;scrollbar-width:none;width:var(--container);margin-inline:auto}
.filter-inner::-webkit-scrollbar{display:none}
.flt{display:flex;align-items:center;gap:.4rem;padding:.7rem 1rem;font-size:.83rem;font-weight:700;color:var(--mid);border:none;background:none;border-bottom:3px solid transparent;white-space:nowrap;cursor:pointer;transition:.15s}
.flt:hover{color:#000}
.flt.active{color:#000;border-bottom-color:#000}
.flt svg{width:14px;height:14px;flex-shrink:0}
.flt-count{background:var(--brand-bg);border:1px solid var(--border);color:var(--light);font-size:.67rem;font-weight:800;padding:.04rem .42rem;border-radius:999px}
.flt.active .flt-count{background:#000;color:var(--brand-yellow);border-color:#000}

/* ── Shop layout ── */
.shop-layout{display:grid;grid-template-columns:200px 1fr;gap:1.5rem;padding:1.5rem 0 3rem;width:var(--container);margin-inline:auto}

/* ── Sidebar ── */
.sidebar-box{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:.85rem;margin-bottom:.85rem}
.sb-title{font-size:.67rem;font-weight:800;text-transform:uppercase;letter-spacing:.09em;color:var(--light);margin-bottom:.5rem}
.sb-list{list-style:none;display:flex;flex-direction:column;gap:.08rem}
.sb-btn{display:flex;align-items:center;justify-content:space-between;padding:.4rem .55rem;border-radius:7px;font-size:.82rem;font-weight:600;cursor:pointer;border:none;background:none;width:100%;text-align:left;color:#222;transition:.15s}
.sb-btn:hover{background:var(--brand-bg)}
.sb-btn.active{background:var(--brand-yellow);color:#000}
.sb-count{font-size:.7rem;color:var(--light)}
.sb-btn.active .sb-count{color:rgba(0,0,0,.5)}
.sidebar-callout{background:var(--brand-dark);color:#fff;border-radius:var(--radius);padding:.9rem}
.sidebar-callout-title{font-size:.82rem;font-weight:700;margin-bottom:.35rem}
.sidebar-callout-body{font-size:.76rem;color:#aaa;margin-bottom:.7rem;line-height:1.55}

/* ── Results bar ── */
.results-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:.85rem;flex-wrap:wrap;gap:.5rem}
.results-count{font-size:.82rem;font-weight:700;color:var(--mid)}
.sort-select{border:1px solid var(--border);border-radius:7px;padding:.28rem .6rem;font-family:inherit;font-size:.8rem;background:#fff;cursor:pointer}
.search-wrap{position:relative;flex:1;max-width:320px}
.search-wrap input{width:100%;height:34px;padding:.35rem 1rem .35rem 2.1rem;border:1.5px solid var(--border);border-radius:999px;font-family:inherit;font-size:.84rem;background:#fff}
.search-wrap input:focus{outline:none;border-color:#bbb}
.search-icon{position:absolute;left:.65rem;top:50%;transform:translateY(-50%);color:var(--light);pointer-events:none;width:13px;height:13px}

/* ── Product grid ── */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:.9rem;align-content:start}
.product-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s,transform .15s}
.product-card:hover{box-shadow:var(--shadow-h);transform:translateY(-2px);border-color:#ccc}
.card-logo{height:96px;display:flex;align-items:center;justify-content:center;padding:1rem;border-bottom:1px solid var(--brand-bg)}
.card-logo.security{background:#fdf2ff}
.card-logo.productivity{background:#f0f4ff}
.card-logo.backup{background:#053856}
.card-logo.identity{background:#e8f4fd}
.card-logo.dns{background:#f0fff0}
.card-logo.network{background:#e8eeff}
.card-body{padding:.8rem .9rem .9rem;display:flex;flex-direction:column;gap:.28rem;flex:1}
.card-badge{display:inline-block;font-size:.63rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;padding:.15rem .45rem;border-radius:4px;margin-bottom:.08rem;width:fit-content}
.badge-security{background:#fdf2ff;color:#7c3aed}
.badge-productivity{background:#f0f4ff;color:#2c5cc5}
.badge-backup{background:#e8f0f8;color:#053856}
.badge-identity{background:#e8f4fd;color:#0c447c}
.badge-dns{background:#f0fff0;color:#166534}
.badge-network{background:#f0f0ff;color:#1e3a8a}
.card-vendor{font-size:.67rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:var(--light)}
.card-name{font-size:.9rem;font-weight:800;line-height:1.25;color:#111}
.card-desc{font-size:.76rem;color:#666;line-height:1.5;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:.55rem;border-top:1px solid var(--brand-bg);margin-top:auto}
.price-label{font-size:.62rem;font-weight:700;text-transform:uppercase;color:var(--light);letter-spacing:.04em}
.price-amount{font-size:1.05rem;font-weight:800;line-height:1.1;color:#111}
.price-unit{font-size:.63rem;color:var(--light)}
.card-cta{background:var(--brand-yellow);color:#000;border:none;border-radius:999px;padding:.33rem .75rem;font-size:.75rem;font-weight:800;font-family:inherit;cursor:pointer;white-space:nowrap;transition:.15s}
.card-cta:hover{background:#f0c400}
.card-cta.dark{background:var(--brand-dark);color:#fff}
.card-cta.dark:hover{background:#333}

/* ── Slide-out panel ── */
.panel-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.38);z-index:300;backdrop-filter:blur(2px)}
.panel-overlay.open{display:block}
.panel{position:fixed;top:0;right:0;bottom:0;width:min(560px,100vw);background:#fff;z-index:301;overflow-y:auto;transform:translateX(100%);transition:transform .27s cubic-bezier(.4,0,.2,1);box-shadow:-4px 0 40px rgba(0,0,0,.14)}
.panel.open{transform:translateX(0)}
.panel-hdr{padding:1rem 1.2rem;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;background:#fff;z-index:1}
.panel-hdr-title{font-weight:800;font-size:.88rem;line-height:1.3;max-width:420px}
.panel-close{background:none;border:none;font-size:1.25rem;cursor:pointer;color:var(--mid);padding:.2rem;line-height:1}
.panel-logo-area{height:88px;display:flex;align-items:center;justify-content:center;padding:1.2rem;border-bottom:1px solid var(--brand-bg)}
.panel-logo-area.security{background:#fdf2ff}
.panel-logo-area.productivity{background:#f0f4ff}
.panel-logo-area.backup{background:#053856}
.panel-logo-area.identity{background:#e8f4fd}
.panel-logo-area.dns{background:#f0fff0}
.panel-logo-area.network{background:#e8eeff}
.panel-body{padding:1.2rem}
.panel-vendor{font-size:.69rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:var(--light);margin-bottom:.22rem}
.panel-name{font-size:1.15rem;font-weight:800;margin-bottom:.45rem;line-height:1.2}
.panel-tagline{font-size:.92rem;color:#333;font-weight:600;margin-bottom:.65rem;line-height:1.5}
.panel-desc{font-size:.85rem;color:#555;line-height:1.7;margin-bottom:.9rem}
.panel-tags{display:flex;flex-wrap:wrap;gap:.32rem;margin-bottom:.9rem}
.panel-tag{background:var(--brand-bg);border:1px solid var(--border);border-radius:999px;padding:.18rem .6rem;font-size:.72rem;font-weight:700;color:#444}
.divider{border:none;border-top:1px solid var(--border);margin:.9rem 0}
.sec-label{font-size:.69rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--mid);margin-bottom:.45rem}
.feat-list{list-style:none;display:flex;flex-direction:column;gap:.35rem;margin-bottom:.9rem}
.feat-list li{font-size:.83rem;color:#333;display:flex;align-items:flex-start;gap:.42rem;line-height:1.5}
.feat-list li::before{content:"\2713";font-weight:800;color:#0f6e56;flex-shrink:0}
.tier-row{display:flex;flex-wrap:wrap;gap:.38rem;margin-bottom:.7rem}
.tier-btn{background:var(--brand-bg);border:1.5px solid var(--border);border-radius:999px;padding:.26rem .75rem;font-size:.76rem;font-weight:700;cursor:pointer;transition:.15s;color:#333}
.tier-btn.active{background:#000;color:var(--brand-yellow);border-color:#000}

/* ── Calculator ── */
.calc-box{background:var(--brand-bg);border-radius:13px;padding:.95rem 1.1rem;margin-bottom:.85rem}
.calc-title{font-size:.69rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:var(--mid);margin-bottom:.7rem}
.sldr-row{display:flex;align-items:center;gap:.65rem;margin-bottom:.55rem}
.sldr-label{font-size:.77rem;color:var(--mid);font-weight:700;min-width:54px}
.sldr-row input[type=range]{flex:1;accent-color:#000;cursor:pointer;height:4px}
.sldr-val{font-size:.77rem;font-weight:800;min-width:100px;text-align:right}
.included-row{display:flex;align-items:flex-start;gap:.65rem;padding:.55rem 0;border-bottom:1px solid var(--border)}
.included-row:last-child{border-bottom:none;margin-bottom:.45rem}
.incl-icon{width:28px;height:28px;border-radius:6px;background:#e8f5e9;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.82rem;font-weight:900;color:#0f6e56}
.incl-info{flex:1}
.incl-name{font-size:.82rem;font-weight:700;color:#111}
.incl-desc{font-size:.72rem;color:var(--mid);margin-top:.06rem;line-height:1.45}
.incl-price{font-size:.82rem;font-weight:800;color:#0f6e56;white-space:nowrap;padding-top:.18rem}
.addon-row{display:flex;align-items:flex-start;gap:.65rem;padding:.7rem;border:1.5px solid var(--border);border-radius:10px;margin-bottom:.5rem;cursor:pointer;transition:.2s;background:#fff}
.addon-row:hover{border-color:#bbb}
.addon-row.selected{border-color:#000;background:#fafafa}
.addon-toggle{width:19px;height:19px;border-radius:50%;border:2px solid #ccc;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.1rem;transition:.2s}
.addon-row.selected .addon-toggle{background:#000;border-color:#000}
.addon-tick{display:none;color:#fff;font-size:.7rem;font-weight:900}
.addon-row.selected .addon-tick{display:block}
.addon-info{flex:1}
.addon-name{font-size:.84rem;font-weight:800;color:#111;margin-bottom:.1rem}
.addon-desc{font-size:.73rem;color:#666;line-height:1.5}
.addon-price-col{text-align:right;flex-shrink:0;min-width:65px}
.addon-price{font-size:.9rem;font-weight:800;color:#111}
.addon-price-note{font-size:.67rem;color:var(--light);margin-top:.06rem}
.total-blk{background:#000;color:#fff;border-radius:11px;padding:.95rem 1.1rem;margin-top:.7rem}
.t-label{font-size:.69rem;color:#aaa;font-weight:700;margin-bottom:.12rem}
.t-amount{font-size:1.55rem;font-weight:800;line-height:1}
.t-note{font-size:.67rem;color:#666;margin-top:.12rem}
.bk-rows{border-top:1px solid rgba(255,255,255,.1);padding-top:.6rem;margin-top:.65rem;display:flex;flex-direction:column;gap:.26rem}
.bk-row{display:flex;justify-content:space-between;align-items:center;font-size:.75rem}
.bk-lbl{color:#aaa}
.bk-val{font-weight:700;color:#fff}
.bk-row.bk-tot{border-top:1px solid rgba(255,255,255,.12);padding-top:.32rem;margin-top:.08rem}
.bk-row.bk-tot .bk-lbl{color:#fff;font-weight:700}
.bk-row.bk-tot .bk-val{color:var(--brand-yellow);font-size:.86rem}
.enq-blk{background:var(--brand-yellow);border-radius:10px;padding:.7rem .9rem;display:none;align-items:center;justify-content:space-between;gap:.7rem;flex-wrap:wrap;margin-top:.7rem}
.enq-blk.show{display:flex}
.enq-blk p{font-size:.79rem;font-weight:700;color:#000}
.enquiry-box{background:var(--brand-bg);border-radius:11px;padding:1rem 1.1rem;margin-bottom:.85rem;text-align:center}
.enquiry-box p{font-size:.85rem;color:#555;margin-bottom:.7rem;line-height:1.6}
.panel-actions{display:flex;flex-direction:column;gap:.45rem;margin-top:.25rem}
.view-page-btn{display:flex;align-items:center;justify-content:center;gap:.4rem;padding:.5rem 1rem;border-radius:999px;font-weight:700;font-size:.82rem;border:1.5px solid var(--border);color:#333;transition:.2s}
.view-page-btn:hover{border-color:#aaa;background:var(--brand-bg)}

/* ── Product detail pages ── */
.prod-hero{padding:2.25rem 0;border-bottom:1px solid var(--border);background:#fff}
.prod-hero-inner{display:grid;grid-template-columns:auto 1fr auto;gap:1.4rem;align-items:center}
.prod-hero-logo{width:88px;height:88px;border-radius:18px;display:flex;align-items:center;justify-content:center;padding:1rem;flex-shrink:0}
.prod-hero-logo.security{background:#fdf2ff}
.prod-hero-logo.productivity{background:#f0f4ff}
.prod-hero-logo.backup{background:#053856}
.prod-hero-logo.identity{background:#e8f4fd}
.prod-hero-logo.dns{background:#f0fff0}
.prod-hero-logo.network{background:#e8eeff}
.prod-hero-kicker{font-size:.71rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--mid);margin-bottom:.35rem}
.prod-hero h1{font-size:clamp(1.35rem,3vw,1.9rem);font-weight:800;margin-bottom:.35rem;line-height:1.15}
.prod-hero-tagline{font-size:.96rem;color:#444;font-weight:600;max-width:52ch;line-height:1.55}
.prod-hero-actions{display:flex;gap:.55rem;flex-wrap:wrap;align-items:center}
.prod-breadcrumb{font-size:.77rem;color:var(--mid);padding:.65rem 0;display:flex;gap:.38rem;align-items:center}
.prod-breadcrumb a{color:var(--mid)}
.prod-breadcrumb a:hover{color:#000}
.prod-layout{display:grid;grid-template-columns:1fr 330px;gap:1.75rem;padding:1.75rem 0 3rem;align-items:start;width:var(--container);margin-inline:auto}
.prod-main .prod-section{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.4rem;margin-bottom:1.1rem}
.prod-main h2{font-size:1.2rem;font-weight:800;margin-bottom:.85rem;line-height:1.2}
.prod-main p{font-size:.88rem;color:#444;line-height:1.75;margin-bottom:.9rem}
.prod-main ul{list-style:none;display:flex;flex-direction:column;gap:.45rem;margin-bottom:1.1rem}
.prod-main ul li{font-size:.87rem;color:#333;display:flex;gap:.45rem;align-items:flex-start;line-height:1.5}
.prod-main ul li::before{content:"\2713";font-weight:800;color:#0f6e56;flex-shrink:0}
.benefits-grid{display:grid;grid-template-columns:1fr 1fr;gap:.9rem;margin-bottom:.5rem}
.benefit-card{background:var(--brand-bg);border-radius:10px;padding:.95rem 1rem}
.benefit-icon{font-size:1.25rem;margin-bottom:.35rem}
.benefit-title{font-size:.86rem;font-weight:800;margin-bottom:.22rem}
.benefit-desc{font-size:.77rem;color:#555;line-height:1.55}
.how-steps{display:flex;flex-direction:column;gap:.7rem}
.how-step{display:flex;gap:.85rem;align-items:flex-start}
.step-num{width:27px;height:27px;border-radius:50%;background:#000;color:#fff;font-size:.77rem;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:.12rem}
.step-title{font-size:.87rem;font-weight:800;margin-bottom:.12rem}
.step-text p{font-size:.79rem;color:#555;line-height:1.55;margin:0}
.calc-panel{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.2rem;position:sticky;top:106px}
.calc-panel-title{font-size:.87rem;font-weight:800;margin-bottom:.85rem;display:flex;align-items:center;justify-content:space-between}
.calc-panel-price{font-size:1.35rem;font-weight:800;line-height:1}
.calc-panel-unit{font-size:.74rem;color:var(--mid);font-weight:400}
.trust-badges{display:flex;flex-direction:column;gap:.45rem;margin-top:.9rem;padding-top:.9rem;border-top:1px solid var(--border)}
.trust-badge{display:flex;align-items:center;gap:.45rem;font-size:.75rem;color:#555}
.trust-badge-icon{color:#0f6e56;font-weight:800;font-size:.82rem}

/* ── Responsive ── */
@media(max-width:900px){
  .shop-layout{grid-template-columns:1fr;width:var(--container)}.sidebar{display:none}
  .prod-layout{grid-template-columns:1fr}
  .prod-hero-inner{grid-template-columns:auto 1fr}
  .prod-hero-actions{grid-column:1/-1}
  .benefits-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .nav{min-height:70px}.site-logo{height:40px}
  .panel{width:100vw}
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:440px){
  .product-grid{grid-template-columns:1fr 1fr}
}

/* ── Basket ── */
.basket-btn{position:fixed;bottom:1.5rem;right:1.5rem;z-index:150;background:#000;color:#fff;border:none;border-radius:999px;padding:.6rem 1.1rem;font-family:inherit;font-size:.85rem;font-weight:800;cursor:pointer;display:flex;align-items:center;gap:.5rem;box-shadow:0 4px 20px rgba(0,0,0,.25);transition:transform .15s,background .15s}
.basket-btn:hover{transform:translateY(-2px);background:#222}
.basket-btn.hidden{display:none}
.basket-count{background:var(--brand-yellow);color:#000;border-radius:50%;width:20px;height:20px;font-size:.7rem;font-weight:900;display:inline-flex;align-items:center;justify-content:center}
.basket-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:400;backdrop-filter:blur(2px)}
.basket-overlay.open{display:block}
.basket-drawer{position:fixed;top:0;right:0;bottom:0;width:min(480px,100vw);background:#fff;z-index:401;transform:translateX(100%);transition:transform .27s cubic-bezier(.4,0,.2,1);overflow-y:auto;display:flex;flex-direction:column;box-shadow:-4px 0 40px rgba(0,0,0,.15)}
.basket-drawer.open{transform:translateX(0)}
.basket-hdr{padding:1.1rem 1.25rem;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;background:#fff;z-index:1}
.basket-hdr h2{font-size:1rem;font-weight:800}
.basket-close{background:none;border:none;font-size:1.25rem;cursor:pointer;color:var(--mid);line-height:1}
.basket-body{flex:1;padding:1.1rem 1.25rem;overflow-y:auto}
.basket-empty{text-align:center;padding:3rem 1rem;color:var(--mid)}
.basket-empty p{margin-bottom:1rem;font-size:.88rem}
.basket-item{display:flex;align-items:flex-start;gap:.75rem;padding:.85rem 0;border-bottom:1px solid var(--border)}
.basket-item:last-child{border-bottom:none}
.basket-item-logo{width:40px;height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.65rem;font-weight:800;overflow:hidden}
.basket-item-logo.security{background:#fdf2ff}
.basket-item-logo.productivity{background:#f0f4ff}
.basket-item-logo.backup{background:#053856}
.basket-item-logo.identity{background:#e8f4fd}
.basket-item-logo.dns{background:#f0fff0}
.basket-item-logo.network{background:#e8eeff}
.basket-item-info{flex:1;min-width:0}
.basket-item-name{font-size:.86rem;font-weight:800;margin-bottom:.15rem;line-height:1.3}
.basket-item-meta{font-size:.75rem;color:var(--mid);margin-bottom:.35rem}
.basket-item-tier{display:inline-block;font-size:.7rem;font-weight:700;background:var(--brand-bg);border:1px solid var(--border);border-radius:5px;padding:.08rem .4rem;margin-bottom:.3rem}
.basket-item-users{display:flex;align-items:center;gap:.4rem;font-size:.78rem}
.basket-item-users input[type=number]{width:52px;padding:.25rem .4rem;border:1.5px solid var(--border);border-radius:6px;font-family:inherit;font-size:.78rem;text-align:center}
.basket-item-price{text-align:right;flex-shrink:0;min-width:70px}
.basket-item-price .price{font-size:.92rem;font-weight:800;line-height:1.2}
.basket-item-price .per{font-size:.68rem;color:var(--mid)}
.basket-remove{background:none;border:none;color:#ccc;cursor:pointer;font-size:.85rem;padding:.15rem;line-height:1;margin-top:.05rem;flex-shrink:0}
.basket-remove:hover{color:#e00}
.basket-addons{background:var(--brand-bg);border-radius:10px;padding:.75rem 1rem;margin:.5rem 0}
.basket-addons-title{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--mid);margin-bottom:.5rem}
.basket-addon-item{display:flex;align-items:center;justify-content:space-between;font-size:.8rem;margin-bottom:.3rem}
.basket-addon-item:last-child{margin-bottom:0}
.basket-addon-label{display:flex;align-items:center;gap:.4rem;cursor:pointer}
.basket-addon-label input{cursor:pointer}
.basket-footer{padding:1.1rem 1.25rem;border-top:1px solid var(--border);position:sticky;bottom:0;background:#fff}
.basket-total-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.7rem}
.basket-total-label{font-size:.82rem;font-weight:700;color:var(--mid)}
.basket-total-amount{font-size:1.3rem;font-weight:800}
.basket-total-note{font-size:.7rem;color:var(--light);margin-top:.05rem;text-align:right}
.basket-checkout-btn{width:100%;padding:.7rem 1rem;background:#000;color:#fff;border:none;border-radius:999px;font-family:inherit;font-size:.95rem;font-weight:800;cursor:pointer;transition:.15s}
.basket-checkout-btn:hover{background:#222}
.basket-checkout-btn:disabled{background:#ccc;cursor:not-allowed}

.build-version{font-size:.68rem;color:#444;font-family:monospace;opacity:.65;white-space:nowrap}

/* Nav basket button */
.nav-basket-btn{display:flex;align-items:center;gap:.3rem;font-size:.9rem;color:#0d0d0d;text-decoration:none;font-weight:700;padding:.3rem .65rem;border:1.5px solid var(--border);border-radius:999px;transition:.15s;white-space:nowrap}
.nav-basket-btn:hover{background:#000;color:#FDCE00;border-color:#000}
#nav-basket-count{background:#000;color:#FDCE00;border-radius:50%;width:18px;height:18px;font-size:.68rem;font-weight:900;align-items:center;justify-content:center;line-height:1}

/* usecure brand tint for card logo areas */
.card-logo.security { background: #eef4fe; }
