/* compress using https://www.seomagnifier.com/best-css-minifier */
/* =========================================================
   THEME TOKENS
   ========================================================= */
:root{
  --bg:#ffffff; --ink:#111827; --muted:#6b7280; --line:#e5e7eb; --soft:#f5f5f5;
  --brand:#000; --ok:#166534; --ok-bg:#ecfdf5; --warn:#92400e; --warn-bg:#fffbeb;
  --bad:#991b1b; --bad-bg:#fef2f2; --radius:16px;
  --shadow:0 1px 2px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);

  /* Header sizing used for fixed header + anchor offsets */
  --header-height:56px;
  --header-offset:56px;
}
@supports (padding:max(0px)){
  :root{
    --safe-l:env(safe-area-inset-left);
    --safe-r:env(safe-area-inset-right);
  }
}
@media (max-width:600px){
  :root{ --header-height:72px; --header-offset:72px; }
}

/* =========================================================
   Content area from historic systems modified to use new widths
   ========================================================= */
#main_content,
.content_area{
  width:100%;
  max-width:none;
  margin:0 auto;
  padding-left:16px;
  padding-right:16px;
}
@media (min-width:1024px){
  #main_content,
  .content_area{
    max-width:1120px;
    padding-left:16px;
    padding-right:16px;
  }
}

/* (Bug fix) Scope visited links to .content_area only */
.content_area a:link,
.content_area a:visited{
  text-decoration:none;
}

/* =========================================================
   BASE / RESET
   ========================================================= */
*{ box-sizing:border-box; }
html,body{ overflow-x:hidden; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  line-height:1.5;
  color:var(--ink);
  background:var(--bg);
  scroll-padding-top:var(--header-offset);
  padding-top:var(--header-height);
}
a{ color:inherit; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.wrap{ max-width:1120px; margin:auto; padding:0 16px; }
.grid{ display:grid; gap:24px; }
section .wrap{ padding:8px 16px 24px; }
.soft{ background:var(--soft); }

/* =========================================================
   NEW HEADER – fixed, compact, centre brand
   ========================================================= */
.site-header{
  background:#ffffff;
  border-bottom:1px solid #dde2ea;
  text-align:left;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:900;
  margin-bottom:1.5rem;
}
.site-header .header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0.4rem 1rem;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}
.header-left{
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.menu-toggle,
#main span[onclick*="openNav"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid #e5e7eb;
  padding:0.3rem 0.75rem;
  font-size:0.95rem;
  background:#ffffff;
  cursor:pointer;
  gap:0.35rem;
}
.menu-toggle span{ font-size:1.1rem; line-height:1; }
.menu-toggle:hover,
#main span[onclick*="openNav"]:hover{
  background:#f3f4f6;
}
.brand-block{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:8px;
}
.flag-icon img{
  border-radius:6px;
  box-shadow:0 0 0 1px rgba(148,163,184,0.4);
  max-height:24px;
  display:block;
}
.brand-text{
  line-height:1.2;
  text-align:center;
}
.brand-title{
  font-weight:600;
  font-size:0.98rem;
}
.brand-subtitle{
  font-size:0.78rem;
  color:#6b7280;
}
.header-right{
  display:flex;
  align-items:center;
  gap:0.6rem;
}
.header-phone{
  font-size:0.9rem;
  font-weight:500;
  white-space:nowrap;
}
.header-right select,
select[name="language_select"]{
  padding:0.25rem 0.55rem;
  border-radius:999px;
  border:1px solid #cbd5f5;
  font-size:0.88rem;
}
@media (max-width:768px){
  .site-header .header-inner{
    padding:0.35rem 0.75rem;
  }
  .brand-title{
    font-size:0.9rem;
  }
  .brand-subtitle{
    display:none;
  }
  .header-phone{
    display:none;
  }
}
@media (max-width:480px){
  .site-header .header-inner{
    flex-wrap:wrap;
    row-gap:0.15rem;
  }
  .brand-block{
    position:static;
    transform:none;
    margin:0 auto;
    order:1;
  }
  .header-left{
    order:2;
  }
  .header-right{
    order:2;
    margin-left:auto;
  }
}

/* =========================================================
   ANCHOR OFFSET FOR HASH LINKS (#faq, #howto, …)
   ========================================================= */
[id]:target::before{
  content:"";
  display:block;
  height:var(--header-offset);
  margin-top:calc(-1 * var(--header-offset));
  visibility:hidden;
  pointer-events:none;
}
section[id]{ scroll-margin-top:var(--header-offset); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding:0 0 32px;
}
.hero .wrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 16px;
}
.hero-grid{
  display:grid;
  gap:40px;
  align-items:start;
}
@media (min-width:768px){
  .hero-grid{
    grid-template-columns:minmax(0,1.15fr) minmax(0,0.95fr);
  }
}
.hero-text{
  max-width:640px;
  align-self:start;
}
.hero-ctas{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero-media{
  width:100%;
  max-width:100%;
  margin:0;
  align-self:start;
}

.hero-side-copy{
  margin-top:14px;
  font-size:1rem;
  line-height:1.55;
  color:var(--muted);
  max-width:42ch;
}

.hero-side-copy strong{
  color:var(--ink);
}
/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1{
  font-size:clamp(26px,4.2vw,38px);
  line-height:1.12;
  margin:0 0 14px;
}
h2{ font-size:clamp(20px,2.6vw,28px); margin:0; }
h3{ font-size:20px; margin:0; }
p.lead{
  color:var(--muted);
  font-size:clamp(18px,1.5vw,22px);
  line-height:1.6;
  margin:0;
  max-width:36ch;
}

/* (was) prevent overlap — kept; final fix is further below */
#compatibilite h2,
#compatibility h2{ margin-bottom:8px; }

/* =========================================================
   BUTTONS / BADGES
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:999px;
  border:1px solid var(--line); background:#fff;
  cursor:pointer; min-height:44px;
}
.btn.primary{ background:var(--brand); color:#fff; border-color:var(--brand); }
.btn.small{ padding:8px 12px; font-size:14px; }
.pillrow{ display:flex; flex-wrap:wrap; gap:16px; margin-top:16px; color:#374151; font-size:14px; }
.badge{ margin-top:8px; font-size:14px; color:#374151; }

/* -------------------------------------------------
   Stop bullets on lists
   ------------------------------------------------- */
.no-bullets{
  list-style:none;
  padding-left:0;
  margin-left:0;
}
.no-bullets li{
  margin:4px 0;
}

/* =========================================================
   MEDIA / FIGURE FRAME
   ========================================================= */
.frame{
  aspect-ratio:auto;
  background:#fafafa;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:inset 0 1px 0 rgba(0,0,0,.03);
  padding:18px;
  position:relative;
  display:block;
  text-align:center;
  max-width:100%;
}
.frame-figure{ margin:0; }
.frame-figure img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  margin:0 auto;
  border-radius:8px;
}
.frame-caption{
  margin-top:14px;
  line-height:1.35;
  font-size:0.98rem;
}
.responsive-image-100{ max-width:100%; height:auto; }
.note{
  position:absolute; right:-12px; bottom:-12px;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:8px 10px; box-shadow:var(--shadow); font-size:12px;
}

/* =========================================================
   TRUST CARD
   ========================================================= */
#doesitfit .card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:16px;
}
#doesitfit .card > div:first-child{
  font-size:14px;
  font-weight:600;
  margin-bottom:14px;
  line-height:1.35;
  text-align:center;
}
#doesitfit .seg{
  display:flex;
  gap:12px;
}
#doesitfit .seg button{
  min-width:94px;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.cards{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  align-items:stretch;
}
@media (min-width:768px){
  .cards{ grid-template-columns:1fr 1fr; }
}
.prod{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  display:flex;
  flex-direction:column;
  height:100%;
}
.prod > div:last-child{
  margin-top:auto;
}
.products-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  align-items:stretch;
}
@media (min-width:768px){
  .products-grid{
    grid-template-columns:1fr 1fr;
  }
}
.prod-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  display:flex;
  flex-direction:column;
  height:100%;
}
.prod-topline{
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  color:#6b7280;
  text-align:center;
}
.prod-title{
  margin:4px 0 2px 0;
  text-align:center;
  line-height:1.2;
  min-height:0;
}
.prod-sub{
  margin:0 0 10px 0;
  text-align:center;
  color:#111827;
  font-size:18px;
  line-height:1.3;
}
.prod-sub,
.prod-sub p,
.prod-sub div,
.prod-sub center,
.prod-sub span{
  margin:0;
  padding:0;
}
.prod-image-link{
  display:block;
  text-align:center;
  margin-top:10px;
}
.prod-image{
  display:inline-block;
}
.prod-keypoints{
  margin-top:18px;
}
.prod-keypoints ul,
.prod-keypoints ul.clean,
.prod-keypoints ul.no-bullets{
  margin:0;
  padding:0;
  list-style:none;
  text-align:center;
}
.prod-keypoints li{
  margin:8px 0;
}
.prod-meta{
  margin-top:18px;
}
.prod-meta-line{
  display:flex;
  align-items:center;
  gap:8px;
  color:#374151;
  font-size:14px;
  margin:6px 0;
}
.prod-footer{
  margin-top:auto;
  padding-top:18px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:end;
}
.prod-price-wrap{
  min-height:88px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.prod-offer-label{
  color:green;
  font-weight:700;
  font-size:18px;
  line-height:1.2;
  margin-bottom:8px;
}
.prod-offer-spacer{
  height:29px;
  margin-bottom:8px;
}
.prod-price-row{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:10px;
}
.prod-price-old{
  color:red;
  font-size:28px;
  font-weight:800;
  text-decoration:line-through;
  line-height:1.1;
}
.prod-price-new{
  color:green;
  font-size:28px;
  font-weight:800;
  line-height:1.1;
}
.prod-action{
  display:flex;
  align-items:flex-end;
}
.prod-buy-btn{
  white-space:nowrap;
}
@media (max-width:640px){
  .prod-footer{
    grid-template-columns:1fr;
    align-items:start;
  }
  .prod-action{
    justify-content:flex-start;
  }
  .prod-buy-btn{
    width:100%;
    justify-content:center;
  }
}
.price{ font-size:28px; font-weight:800; }
ul.clean{ list-style:none; padding:0; margin:12px 0; }
ul.clean li{ display:flex; gap:8px; align-items:flex-start; margin:6px 0; }
.tick{
  width:18px; height:18px; border-radius:50%;
  border:2px solid #10b981; display:inline-flex; align-items:center; justify-content:center;
  font-size:12px; line-height:1; margin-top:2px;
}

/* =========================================================
   COMPATIBILITY CARDS / STATUS
   ========================================================= */
.card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:16px; }
.seg{ display:flex; gap:8px; }
.seg button{
  flex:0 0 auto; padding:8px 12px; border-radius:12px;
  border:1px solid var(--line); background:#fff; cursor:pointer; min-height:44px;
}
.seg button.active{ background:#000; color:#fff; border-color:#000; }
.status{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid; border-radius:12px; padding:8px 12px; font-weight:600;
}
.ok{ color:var(--ok); background:var(--ok-bg); border-color:#bbf7d0; }
.warn{ color:var(--warn); background:var(--warn-bg); border-color:#fde68a; }
.bad{ color:var(--bad); background:var(--bad-bg); border-color:#fecaca; }

/* =========================================================
   HOW-TO / FAQ
   ========================================================= */
ol.steps{ margin:12px 0 0; padding-left:18px; color:#374151; }
details{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:12px; }
summary{ cursor:pointer; font-weight:600; min-height:44px; display:flex; align-items:center; }

/* =========================================================
   FOOTER
   ========================================================= */
footer .wrap{ padding:40px 16px; }
.footgrid{ display:grid; gap:24px; }
@media (min-width:768px){
  .footgrid{ grid-template-columns:1fr 1fr 1fr; }
}

/***************************************************************/
.buybutton,.soldoutbutton,.infobutton{
  font-size:1.2rem !important;
  padding-left:0.3rem;
  padding-right:0.3rem;
  padding-top:0.2rem;
  padding-bottom:0.2rem;
  background:#f3bb01;
  color:black !important;
  white-space:nowrap;
  border:2px;
  border-style:solid;
  border-color:#847e83;
  webkit-border-radius:10px;
  moz-border-radius:10px;
  border-radius:10px;
}
.buybutton:hover{
  background:#53760D;
}
.soldoutbutton{
  background:#cd5c5c;
  color:black;
  border-color:#847e83;
}
.soldoutbutton:hover{
  background:#cd5c5c;
}
.infobutton{
  background:#f3bb01;
  color:black;
  border-color:#847e83;
}
.infobutton:hover{
  background:#53760D;
}

/* =========================================================
   SIDENAV (overlays header & page)
   ========================================================= */
.sidenav{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  width:320px;
  max-width:90vw;
  background:#1f2937;
  color:#f9fafb;
  padding:18px 0 28px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  z-index:3000;
  transform:translateX(-105%);
  transition:transform .28s ease;
}
.sidenav.is-open{ transform:translateX(0); }
.sidenav .closebtn{
  position:absolute;
  top:10px;
  right:14px;
  padding:8px 10px;
  line-height:1;
  cursor:pointer;
  color:#f9fafb;
  text-decoration:none;
  border-radius:10px;
}
.sidenav .closebtn:hover,
.sidenav .closebtn:focus-visible{
  background:rgba(255,255,255,.10);
  outline:none;
}
.sidenav a{
  display:block;
  padding:12px 14px;
  color:#f9fafb;
  text-decoration:none;
  border-radius:12px;
  margin:3px 10px;
  border-left:4px solid transparent;
  transition:background-color .15s ease,color .15s ease,border-color .15s ease;
}
.sidenav a:hover{
  background:rgba(255,255,255,.22);
  color:#ffffff;
  border-left-color:#ffffff;
}
.sidenav a:focus-visible{
  background:rgba(255,255,255,.26);
  color:#ffffff;
  border-left-color:#ffffff;
  outline:3px solid rgba(255,255,255,.70);
  outline-offset:2px;
}
.sidenav h3{
  margin:10px 14px 6px;
  color:rgba(249,250,251,.85);
  font-size:1.05rem;
  font-weight:600;
}
.sidenav ul{
  list-style:none;
  margin:46px 0 0;
  padding:0;
}
.sidenav li{ margin:0; }
.sidenav-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:2900;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}
.sidenav.is-open + .sidenav-backdrop{
  opacity:1;
  pointer-events:auto;
}
@media (prefers-reduced-motion:reduce){
  .sidenav,.sidenav-backdrop{ transition:none !important; }
}

/* =========================================================
   BLOG ACCORDION
   ========================================================= */
.blog_accordion{
   display:block;
   width:100%;
   position:relative;
   margin:0 0 8px 0;
   padding:14px 46px 14px 16px;
   border:1px solid #d9dee5;
   background:#ffffff;
   color:#4b5563;
   font-size:1rem;
   line-height:1.4;
   font-weight:600;
   text-align:left;
   cursor:pointer;
   outline:none;
   transition:background .2s ease;
   box-sizing:border-box;
}

.blog_accordion:hover,
.blog_accordion.active{
   background:#f3f4f6;
}

.blog_accordion:after{
   content:'\02795';
   position:absolute;
   right:16px;
   top:50%;
   transform:translateY(-50%);
   font-size:16px;
   color:#666;
   line-height:1;
}

.blog_accordion.active:after{
   content:"\2796";
}

.blog_accordion h2,
.blog_accordion h3,
.blog_accordion h4,
.blog_accordion h5,
.blog_accordion h6{
   margin:0;
   font-size:1rem;
   line-height:1.4;
   color:inherit;
   font-weight:600;
   text-align:left;
}

.blog_panel{
   max-height:0;
   overflow:hidden;
   transition:max-height .25s ease-out;
   background:#ffffff;
   width:100%;
   box-sizing:border-box;
   padding:0 16px;
   margin:0 0 10px 0;
   border-left:1px solid #e5e7eb;
   border-right:1px solid #e5e7eb;
   border-bottom:1px solid #e5e7eb;
}

.footer_links{
   width:100%;
}

.footer_links .section-inner{
   max-width:1120px;
   margin:0 auto;
   padding:0 16px 24px;
}

.footer_links .blog-wrap{
   width:100%;
   max-width:1120px;
   margin:0 auto;
}

.footer_links .blog_accordion{
   width:100%;
   max-width:1120px;
   margin:0 auto 8px auto;
}

.footer_links .blog_panel{
   width:100%;
   max-width:1120px;
   margin:0 auto 10px auto;
}

/* =========================================================
   BIZCARD
   ========================================================= */
.bizcard{ max-width:420px; margin:16px auto; border-radius:20px; border:1px solid var(--line); box-shadow:0 1px 2px rgba(0,0,0,.04); padding:16px; }
.bizcard-header{ display:flex; gap:12px; align-items:center; justify-content:center; }
.bizcard-logo{ width:64px; height:64px; object-fit:contain; border-radius:12px; border:1px solid var(--line); background:#fff; display:block; }
.bizcard-title{ font-weight:800; font-size:18px; line-height:1.2; text-align:center; }
.bizcard-tagline{ color:#374151; font-size:14px; margin-top:2px; text-align:center; }
.bizcard-perks{ color:var(--muted); font-size:12px; margin-top:4px; text-align:center; }
.bizcard-body{ display:grid; gap:12px; margin-top:12px; grid-template-columns:1fr; justify-items:center; }
@media (min-width:460px){
  .bizcard-body{ grid-template-columns:1fr 1fr; }
}
.bizcard-col{ font-size:14px; color:var(--ink); text-align:center; }
.bizcard-name{ font-weight:600; }
.bizcard-line{ display:flex; align-items:center; gap:8px; margin:4px 0; justify-content:center; }
.bizcard-actions{ display:flex; gap:8px; margin-top:12px; justify-content:center; }
.bizcard-hours{ margin-top:12px; font-size:12px; color:#374151; background:var(--soft); border:1px solid var(--line); border-radius:12px; padding:8px 10px; text-align:center; }
.bizcard-col > div > div{ justify-content:center; }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible{ outline:3px solid #2563eb; outline-offset:2px; }
@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto; animation:none !important; transition:none !important; }
}

/* =========================================================
   DEVICE-SPECIFIC TYPOGRAPHY TWEAKS (legacy rules kept)
   ========================================================= */
@media screen and (max-device-width:320px) and (orientation:portrait){
  html{ font-size:16px; line-height:16px; }
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.15rem; line-height:1.3rem; }
  h1{ font-size:1.05rem; line-height:1.1rem; max-width:none; }
  .copyright_text{ font-size:.70rem; }
}
@media screen and (max-device-width:320px) and (orientation:landscape){
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.2rem; line-height:1.2rem; }
  h1{ font-size:1.2rem; line-height:1.3rem; max-width:none; }
  .copyright_text{ font-size:.50rem; }
}
@media screen and (min-device-width:321px) and (max-device-width:400px) and (orientation:portrait){
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.2rem; line-height:1.8rem; }
  h1{ font-size:1.1rem; line-height:1.2rem; max-width:none; }
  .copyright_text{ font-size:.70rem; }
}
@media screen and (min-device-width:321px) and (max-device-width:400px) and (orientation:landscape){
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.2rem; line-height:1.8rem; }
  h1{ font-size:1.2rem; line-height:1.3rem; max-width:none; }
  .copyright_text{ font-size:.50rem; }
}
@media screen and (min-device-width:401px) and (max-device-width:640px) and (orientation:portrait){
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.2rem; line-height:1.8rem; }
  h1{ font-size:1.1rem; line-height:1.2rem; max-width:none; }
  .copyright_text{ font-size:.70rem; }
}
@media screen and (min-device-width:401px) and (max-device-width:767px) and (orientation:landscape){
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.2rem; line-height:1.8rem; }
  h1{ font-size:1.2rem; line-height:1.3rem; max-width:none; }
  .copyright_text{ font-size:.50rem; }
}
@media screen and (min-device-width:768px) and (max-device-width:1024px){
  .contact_details{ font-size:.80rem; }
  #header_menu{ font-size:1.2rem; line-height:1.8rem; }
  h1{ font-size:1.2rem; line-height:1.3rem; max-width:none; }
  .copyright_text{ font-size:.70rem; }
}

/* =========================================================
   COMPATIBILITY SECTION OVERLAP FIX (kept)
   ========================================================= */
#compatibilite,#compatibility{
  display:flow-root;
  position:relative;
}
#compatibilite .wrap,#compatibility .wrap{
  padding-top:12px;
}
#compatibilite h2,#compatibility h2{
  margin-top:12px;
  margin-bottom:8px;
  line-height:1.25;
  word-break:break-word;
}

/* =========================================================
   HERO LAYOUT REFINEMENTS
   ========================================================= */
.hero-text h1{
  font-size:clamp(24px,3vw,36px) !important;
  line-height:1.12;
  margin:0 0 14px;
  max-width:22ch;
}
.hero-badges{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hero-badges li{
  background:#f3f4f6;
  border-radius:999px;
  padding:4px 10px 4px 14px;
  font-size:0.88rem;
  color:#374151;
  position:relative;
}
.hero-badges li::before{
  content:"•";
  position:absolute;
  left:6px;
  top:50%;
  transform:translateY(-50%);
  font-size:0.9rem;
  color:#9ca3af;
}

@media (max-width:900px){
  .hero{
    padding-top:0;
  }
  .hero-grid{
    grid-template-columns:1fr !important;
    gap:24px;
  }
  .hero-text{
    max-width:720px;
    margin:0 auto;
    text-align:center;
  }
  .hero-media{
    max-width:620px;
    margin:0 auto;
  }
  h1{
    max-width:none;
  }
  p.lead{
    max-width:none;
  }
  .hero-ctas,
  .hero-badges{
    justify-content:center;
  }
  .hero-side-copy{
    max-width:none;
    text-align:center;
    margin:14px auto 0;
  } 
}
@media (max-width:768px){
  .frame{ margin-bottom:12px; }
  section{ display:flow-root; }
}

/* --------------------------------------------------
   Use case section
-------------------------------------------------- */

.ucase{
  background:var(--cream);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.ucase .wrap{
  padding:18px 16px;
  display:block;
}

.ucase .section-title{
  display:block;
  text-align:center;
  margin:0 0 18px;
}

.ucase .section-title h2,
.ucase .section-title h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.2;
}

.ucase .section-title p{
  margin:0 auto;
  max-width:850px;
  color:var(--muted);
  font-weight:650;
}

.ucase .ucase-grid{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(4, 1fr);
  align-items:stretch;
}

.ucase .u{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:var(--sand);
}

.ucase .u strong{
  display:block;
  font-size:13px;
  margin-bottom:4px;
}

.ucase .u span{
  display:block;
  color:var(--muted);
  font-weight:650;
  font-size:12px;
}

@media (max-width:900px){

  .ucase .ucase-grid{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media (max-width:640px){

  .ucase .ucase-grid{
    grid-template-columns:1fr;
  }

}

/* ---------- Trust strip under hero ---------- */
.trust-strip{
  background:#f9fafb;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:10px 0;
}
.trust-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:0.9rem;
  color:#374151;
}
.trust-list li{
  position:relative;
  padding:4px 10px 4px 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #e5e7eb;
}
.trust-list li::before{
  content:"";
  position:absolute;
  left:7px;
  top:50%;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#9ca3af;
  transform:translateY(-50%);
}
@media (max-width:768px){
  .trust-strip{
    padding:8px 0 10px;
  }
  .trust-list{
    gap:6px;
  }
}

/* ---------- Testimonials block ---------- */
.testimonials{
  padding:32px 0 36px;
  background:#ffffff;
}
.testi-title{
  font-size:1.4rem;
  margin:0 0 18px;
  text-align:center;
}
.testi-grid{
  display:grid;
  gap:18px;
}
.testi-card{
  background:#f9fafb;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px 12px;
  box-shadow:0 6px 20px rgba(15,23,42,0.06);
}
.testi-quote{
  margin:0 0 8px;
  font-size:0.95rem;
  color:#111827;
}
.testi-meta{
  margin:0;
  font-size:0.85rem;
  color:#6b7280;
}
@media (min-width:768px){
  .testi-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

.seo-box{
  background:#f3f4f5;
  padding:2rem;
  border-radius:8px;
  margin-top:3rem;
  line-height:1.6;
}
.seo-box h2,
.seo-box h3{
  margin-top:1.2rem;
  margin-bottom:0.6rem;
}
.seo-box ul{
  list-style:none;
  padding-left:1.5rem;
  margin:1rem 0;
}

.trust-line-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.75rem;
  padding:0;
  margin:1.5rem auto 0;
  list-style:none;
}
.trust-line-list li{
  text-align:center;
  padding:0.4rem 0.9rem;
  border-radius:999px;
  border:1px solid #e0e2e4;
  background:#ffffff;
  font-size:0.9rem;
  white-space:nowrap;
}

/* Legacy Screens */
.request_heading{
  text-decoration:none;
  font-weight:600;
  padding-left:0.25rem;
  padding-right:0.25rem;
}
.request_text{
  text-decoration:none;
  font-weight:normal;
  padding-left:0.25rem;
  padding-right:0.25rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.request_text_medium{
  font-size:0.85rem;
  line-height:0.75rem;
  text-decoration:none;
  font-weight:normal;
  padding-left:0.25rem;
  padding-right:0.25rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.request_commander{
  font-size:0.85rem;
  color:#29088A;
  font-weight:650;
  padding-left:0.40rem;
  padding-right:0.40rem;
  padding-top:0.40rem;
  padding-bottom:0.40rem;
}
.request_commander a{
  font-size:0.85rem;
  color:#29088A;
  font-weight:650;
  padding-left:0.25rem;
  padding-right:0.25rem;
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.request_commander a:hover{
  color:#000000;
  font-weight:850;
}

.recommendation-list{
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

.build-marker{ font-size:11px; opacity:.35; }

/* =========================================================
   MODERN SHARED CATALOGUE
   Shared responsive standard — desktop + mobile
   Ratings remain visible.
   Full product description is expandable on all screen sizes.

   Replace the complete existing catalogue CSS section with
   this block in each KeySafe stylesheet.
   ========================================================= */

/* =========================================================
   CATALOGUE LIST
   ========================================================= */

.catalogue-list{
   width:100%;
   max-width:1120px;
   margin:0 auto 36px;
   display:grid;
   gap:18px;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

.catalogue-card{
   width:100%;
   margin:0;
   padding:22px;
   background:#ffffff;
   border:1px solid #e1e7ef;
   border-radius:20px;
   box-shadow:0 8px 24px rgba(15,23,42,.07);
   overflow:hidden;
}

.catalogue-card-top{
   display:grid;
   grid-template-columns:230px minmax(0,1fr);
   gap:26px;
   align-items:start;
   margin:0;
}

/* =========================================================
   PRODUCT IMAGE AND COLOURS
   ========================================================= */

.catalogue-media{
   min-width:0;
   text-align:center;
}

.catalogue-media > a{
   display:block;
   border-radius:16px;
}

.catalogue-image{
   display:block;
   width:100%;
   max-width:220px;
   aspect-ratio:1 / 1;
   object-fit:contain;
   margin:0 auto;
   padding:12px;
   background:#f7f9fc;
   border:1px solid #e3e8ef;
   border-radius:16px;
}

.catalogue-colours{
   display:flex;
   flex-wrap:wrap;
   justify-content:center;
   gap:8px;
   margin:10px 0 0;
}

.catalogue-colours-label{
   flex:1 0 100%;
   display:block;
   margin:0 0 2px;
   color:#4a596b;
   font-size:13px;
   line-height:1.35;
   font-weight:750;
   text-align:center;
}

.catalogue-colour{
   position:relative;
   top:auto !important;
   display:inline-flex;
   flex-direction:column;
   align-items:center;
   gap:4px;
   margin:0 !important;
   color:#596779;
   font-size:11px;
   line-height:1.2;
   font-weight:650;
}

.catalogue-colour img{
   width:38px;
   height:38px;
   display:block;
   object-fit:cover;
   border:1px solid #d4dbe4;
   border-radius:50%;
   box-shadow:0 2px 5px rgba(15,23,42,.08);
}

/* =========================================================
   PRODUCT SUMMARY
   ========================================================= */

.catalogue-main{
   min-width:0;
   display:flex;
   flex-direction:column;
   align-items:flex-start;
}

.catalogue-ref{
   margin:0 0 5px;
   color:#647184;
   font-size:13px;
   line-height:1.35;
   font-weight:700;
}

.catalogue-title{
   margin:0 0 7px !important;
   color:#111827;
   font-size:clamp(22px,2.2vw,29px);
   line-height:1.16;
   font-weight:850;
   letter-spacing:-.015em;
}

.catalogue-title a{
   color:inherit;
   text-decoration:none;
}

.catalogue-title a:hover{
   text-decoration:underline;
   text-underline-offset:3px;
}

.catalogue-subtitle{
   margin:0 0 10px;
   color:#536174;
   font-size:16px;
   line-height:1.48;
   font-weight:600;
}

/* =========================================================
   PRICE
   ========================================================= */

.catalogue-price-row{
   display:flex;
   align-items:baseline;
   flex-wrap:wrap;
   gap:8px 12px;
   margin:3px 0 2px;
}

.catalogue-price-old{
   color:#7a8492;
   font-size:16px;
   font-weight:650;
   text-decoration:line-through;
}

.catalogue-price-new{
   color:#123f67;
   font-size:clamp(26px,3vw,34px);
   line-height:1;
   font-weight:900;
   letter-spacing:-.025em;
}

/* =========================================================
   BUY AND INFORMATION BUTTONS
   ========================================================= */

.catalogue-cta-row{
   width:100%;
   display:flex;
   flex-wrap:wrap;
   align-items:center;
   gap:10px;
   margin:14px 0 9px;
}

.catalogue-cta-row .buybutton,
.catalogue-cta-row .infobutton,
.catalogue-cta-row .soldoutbutton{
   min-height:46px;
   min-width:150px;
   margin:0 !important;
   padding:11px 18px !important;
   display:inline-flex;
   align-items:center;
   justify-content:center;
   border:1px solid transparent !important;
   border-radius:12px !important;
   box-shadow:none;
   font-family:inherit;
   font-size:16px !important;
   line-height:1.2;
   font-weight:850 !important;
   text-align:center;
   text-decoration:none !important;
   white-space:normal;
}

.catalogue-cta-row .buybutton{
   background:#ea7a1f !important;
   border-color:#d66811 !important;
   color:#ffffff !important;
}

.catalogue-cta-row .buybutton:hover{
   background:#cf640f !important;
   color:#ffffff !important;
}

.catalogue-cta-row .infobutton{
   background:#ffffff !important;
   border-color:#b9c5d2 !important;
   color:#173f63 !important;
}

.catalogue-cta-row .infobutton:hover{
   background:#f3f7fb !important;
   border-color:#8fa2b7 !important;
}

.catalogue-cta-row .soldoutbutton{
   background:#f5e6e6 !important;
   border-color:#ddb7b7 !important;
   color:#8f1f1f !important;
}

/* PayPal-generated controls */
.catalogue-cta-row form{
   margin:0;
}

.catalogue-cta-row input[type="image"]{
   display:block;
   max-width:190px;
   height:auto;
   margin:0;
}

/* =========================================================
   RATINGS — ALWAYS VISIBLE
   ========================================================= */

.catalogue-ratings{
   width:100%;
   margin:18px 0 0;
   padding:16px 0;
   border-top:1px solid #e5eaf0;
   border-bottom:1px solid #e5eaf0;
   color:#172033;
   font-size:16px;
   line-height:1.45;
}

.catalogue-ratings table{
   width:100% !important;
   max-width:100% !important;
   table-layout:fixed;
   border-collapse:collapse;
}

.catalogue-ratings td,
.catalogue-ratings th{
   padding:8px 10px;
   vertical-align:middle;
}

.catalogue-rating-grid{
   display:grid;
   grid-template-columns:repeat(2,minmax(0,1fr));
   gap:10px 18px;
}

/* =========================================================
   EXPANDABLE PRODUCT DESCRIPTION
   ========================================================= */

.catalogue-details{
   width:100%;
   margin:0;
   border-bottom:1px solid #e5eaf0;
}

.catalogue-details-summary{
   width:100%;
   min-height:52px;
   padding:14px 2px;
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:14px;
   color:#173f63;
   cursor:pointer;
   list-style:none;
   font-size:16px;
   line-height:1.3;
   font-weight:800;
   user-select:none;
}

.catalogue-details-summary::-webkit-details-marker{
   display:none;
}

.catalogue-details-summary::marker{
   content:"";
}

.catalogue-details-summary:hover{
   color:#0d2f4d;
}

.catalogue-details-summary:focus-visible{
   outline:3px solid #93c5fd;
   outline-offset:4px;
   border-radius:6px;
}

.catalogue-details-icon{
   position:relative;
   flex:0 0 28px;
   width:28px;
   height:28px;
   border:1px solid #cad4df;
   border-radius:50%;
   background:#f7f9fc;
}

.catalogue-details-icon::before,
.catalogue-details-icon::after{
   content:"";
   position:absolute;
   top:50%;
   left:50%;
   width:12px;
   height:2px;
   border-radius:2px;
   background:#173f63;
   transform:translate(-50%,-50%);
}

.catalogue-details-icon::after{
   transform:translate(-50%,-50%) rotate(90deg);
   transition:transform .18s ease;
}

.catalogue-details[open] .catalogue-details-icon::after{
   transform:translate(-50%,-50%) rotate(0);
}

.catalogue-details-content{
   padding:4px 0 18px;
   color:#273445;
   font-size:16px;
   line-height:1.62;
}

.catalogue-text{
   margin:0;
   padding:0;
}

.catalogue-text p{
   margin:0 0 12px;
}

.catalogue-text ul,
.catalogue-text ol{
   margin:10px 0 14px;
   padding-left:20px;
}

.catalogue-text li{
   margin:6px 0;
}

.catalogue-text table{
   width:100% !important;
   max-width:100% !important;
   table-layout:fixed;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:820px){

   .catalogue-card{
      padding:20px;
   }

   .catalogue-card-top{
      grid-template-columns:190px minmax(0,1fr);
      gap:20px;
   }

   .catalogue-image{
      max-width:180px;
   }

   .catalogue-rating-grid{
      grid-template-columns:1fr;
   }
}

/* =========================================================
   MOBILE CATALOGUE
   Full-width cards, readable type, prominent purchase action
   ========================================================= */

@media (max-width:640px){

   .catalogue-list{
      position:relative;
      left:50%;
      width:100vw;
      max-width:none;
      margin-left:-50vw;
      margin-right:-50vw;
      margin-bottom:24px;
      gap:10px;
      padding:10px 0;
      background:#f2f5f8;
   }

   .catalogue-card{
      width:100%;
      padding:18px 16px;
      border-left:0;
      border-right:0;
      border-radius:0;
      box-shadow:none;
   }

   .catalogue-card-top{
      display:grid;
      grid-template-columns:112px minmax(0,1fr);
      gap:14px;
      align-items:start;
   }

   .catalogue-media{
      width:112px;
   }

   .catalogue-image{
      width:112px;
      max-width:112px;
      padding:7px;
      border-radius:13px;
   }

   .catalogue-colours{
      gap:5px;
      margin-top:7px;
   }

   .catalogue-colours-label{
      font-size:12px;
   }

   .catalogue-colour{
      font-size:0;
      gap:0;
   }

   .catalogue-colour img{
      width:29px;
      height:29px;
   }

   .catalogue-ref{
      margin-bottom:3px;
      font-size:12px;
   }

   .catalogue-title{
      margin-bottom:5px !important;
      font-size:22px;
      line-height:1.14;
   }

   .catalogue-subtitle{
      margin-bottom:7px;
      font-size:16px;
      line-height:1.42;
   }

   .catalogue-price-row{
      margin-top:2px;
   }

   .catalogue-price-old{
      font-size:14px;
   }

   .catalogue-price-new{
      font-size:28px;
   }

   .catalogue-cta-row{
      grid-column:1 / -1;
      display:grid;
      grid-template-columns:1fr;
      gap:9px;
      margin:14px 0 7px;
   }

   .catalogue-cta-row .buybutton,
   .catalogue-cta-row .infobutton,
   .catalogue-cta-row .soldoutbutton,
   .catalogue-cta-row form{
      width:100%;
      max-width:none;
   }

   .catalogue-cta-row .buybutton,
   .catalogue-cta-row .infobutton,
   .catalogue-cta-row .soldoutbutton{
      min-height:48px;
      font-size:16px !important;
   }

   .catalogue-cta-row input[type="image"]{
      width:auto;
      max-width:100%;
      margin:0 auto;
   }

   .catalogue-ratings{
      width:100% !important;
      max-width:100% !important;
      margin-top:14px;
      padding:13px 0;
      overflow:hidden !important;
   }

   .catalogue-ratings table{
      width:100% !important;
      max-width:100% !important;
      min-width:0 !important;
      table-layout:fixed !important;
      border-collapse:collapse !important;
   }

   .catalogue-ratings col,
   .catalogue-ratings td,
   .catalogue-ratings th{
      width:25% !important;
      max-width:25% !important;
   }

   .catalogue-ratings td,
   .catalogue-ratings th{
      padding:7px 4px !important;
      overflow:hidden;
      overflow-wrap:anywhere;
      white-space:normal !important;
      font-size:13px !important;
      line-height:1.22 !important;
      text-align:center !important;
      vertical-align:middle !important;
   }

   .catalogue-ratings td:nth-child(even),
   .catalogue-ratings th:nth-child(even){
      font-size:12px !important;
      letter-spacing:0 !important;
   }

   .catalogue-ratings td span,
   .catalogue-ratings th span{
      max-width:100%;
      white-space:normal !important;
   }

   .catalogue-details-summary{
      min-height:52px;
      padding:14px 2px;
      font-size:16px;
   }

   .catalogue-details-content{
      padding:4px 0 18px;
      font-size:16px;
      line-height:1.65;
   }

   .catalogue-rating-grid{
      grid-template-columns:1fr;
      gap:8px;
   }
}

/* =========================================================
   VERY NARROW PHONES
   ========================================================= */

@media (max-width:390px){

   .catalogue-card-top{
      grid-template-columns:1fr;
   }

   .catalogue-media{
      width:100%;
   }

   .catalogue-image{
      width:150px;
      max-width:150px;
   }

   .catalogue-main{
      width:100%;
   }

   .catalogue-title,
   .catalogue-subtitle,
   .catalogue-ref,
   .catalogue-price-row{
      width:100%;
      text-align:center;
      justify-content:center;
   }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion:reduce){

   .catalogue-details-icon::after{
      transition:none;
   }
}

/* =========================================================
   RESPONSIVE GRID
   ========================================================= */

@media (max-width:1050px){
   .purchase-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
   }
}

@media (max-width:700px){

   .purchase-catalogue{
      position:relative;
      left:50%;
      width:100vw;
      max-width:none;
      margin-left:-50vw;
      margin-right:-50vw;
      margin-bottom:26px;
      padding:10px 0;
      background:#f1f4f7;
   }

   .purchase-group{
      margin:0 0 14px;
   }

   .purchase-group:last-child{
      margin-bottom:0;
   }

   .purchase-group-heading{
      margin:0;
      padding:14px 16px;
      border-radius:0;
      box-shadow:none;
   }

   .purchase-group-heading h2{
      font-size:22px !important;
      text-align:center !important;
   }

   .purchase-grid{
      grid-template-columns:1fr;
      gap:10px;
   }

   .purchase-card{
      display:grid;
      grid-template-columns:132px minmax(0,1fr);
      border-left:0;
      border-right:0;
      border-radius:0;
      box-shadow:none;
      transform:none !important;
   }

   .purchase-image-link{
      padding:16px 0 16px 14px;
   }

   .purchase-image-window{
      height:150px;
      border-radius:13px;
   }

   .purchase-image{
      max-width:90%;
      max-height:134px;
   }

   .purchase-card-body{
      padding:15px 14px 16px;
      align-items:flex-start;
      text-align:left;
   }

   .purchase-card-ref{
      margin-bottom:3px;
      font-size:11px;
   }

   .purchase-card-title{
      width:100%;
      margin-bottom:4px !important;
      font-size:20px !important;
      line-height:1.18;
      text-align:left !important;
   }

   .purchase-card-subtitle{
      min-height:0;
      margin-bottom:8px;
      font-size:15px;
      line-height:1.38;
   }

   .purchase-price-block{
      justify-content:flex-start;
      margin-top:2px;
   }

   .purchase-price-current{
      font-size:27px;
   }

   .purchase-tax-note{
      margin-bottom:8px;
      font-size:12px;
   }

   .purchase-delivery{
      min-height:0;
      margin-bottom:8px;
      font-size:14px;
   }

   .purchase-stock-status{
      margin-bottom:10px;
   }

   .purchase-colours{
      justify-content:flex-start;
      margin-bottom:10px;
   }

   .purchase-colours-label{
      text-align:left;
   }

   .purchase-colour span{
      display:none;
   }

   .purchase-colour img{
      width:30px;
      height:30px;
   }

   .purchase-actions{
      grid-column:1 / -1;
      width:calc(100% + 146px);
      margin-left:-146px;
      padding-top:5px;
   }

   .purchase-order-button,
   .purchase-sold-out{
      min-height:50px;
      font-size:17px !important;
   }
}

/* Extremely narrow screens: image above product information */
@media (max-width:390px){

   .purchase-card{
      display:flex;
   }

   .purchase-image-link{
      padding:16px 16px 0;
   }

   .purchase-image-window{
      width:160px;
      height:160px;
      margin:0 auto;
   }

   .purchase-card-body{
      align-items:center;
      padding:14px 16px 18px;
      text-align:center;
   }

   .purchase-card-title{
      text-align:center !important;
   }

   .purchase-price-block,
   .purchase-colours{
      justify-content:center;
   }

   .purchase-colours-label{
      text-align:center;
   }

   .purchase-actions{
      width:100%;
      margin-left:0;
   }
}

@media (prefers-reduced-motion:reduce){
   .purchase-card,
   .purchase-image{
      transition:none;
   }
}

/* =========================================================
   FINAL MOBILE CATALOGUE RATINGS
   ========================================================= */

@media (max-width:640px){

   .catalogue-ratings{
      width:100% !important;
      max-width:100% !important;
      overflow:hidden !important;
   }

   .catalogue-ratings table{
      width:100% !important;
      max-width:100% !important;
      min-width:0 !important;
      table-layout:fixed !important;
      border-collapse:collapse !important;
   }

   .catalogue-ratings col,
   .catalogue-ratings td,
   .catalogue-ratings th{
      width:25% !important;
      max-width:25% !important;
   }

   .catalogue-ratings td,
   .catalogue-ratings th{
      padding:7px 4px !important;
      overflow:hidden;
      overflow-wrap:anywhere;
      white-space:normal !important;
      font-size:13px !important;
      line-height:1.22 !important;
      text-align:center !important;
      vertical-align:middle !important;
   }

   .catalogue-ratings td:nth-child(even),
   .catalogue-ratings th:nth-child(even){
      font-size:12px !important;
      letter-spacing:0 !important;
   }
}

@media (max-width:390px){

   .catalogue-ratings td,
   .catalogue-ratings th{
      padding:6px 2px !important;
      font-size:12px !important;
   }

   .catalogue-ratings td:nth-child(even),
   .catalogue-ratings th:nth-child(even){
      font-size:11px !important;
   }
}

/* =========================================================
   FULL-WIDTH RECOMMENDATION OUTPUT
   ========================================================= */

.recommendation-page-fullwidth{
   position:static !important;
   left:auto !important;
   right:auto !important;
   width:100% !important;
   max-width:none !important;
   margin:0 !important;
   padding:0 !important;
   transform:none !important;
   box-sizing:border-box !important;
}

.recommendation-page-fullwidth,
.recommendation-page-fullwidth *{
   box-sizing:border-box;
}

.recommendation-page-fullwidth .recommendation-list{
   width:100% !important;
   max-width:1120px !important;
   margin:24px auto 38px !important;
   padding:0 16px !important;
}

/* =========================================================
   COMPACT MOBILE RECOMMENDATION CARDS
   Ratings remain visible; long text stays expandable.
   ========================================================= */

@media (max-width:760px){

   .recommendation-page-fullwidth .recommendation-list{
      position:static !important;
      left:auto !important;
      right:auto !important;
      width:100% !important;
      max-width:none !important;
      margin:12px 0 0 !important;
      padding:8px 0 20px !important;
      gap:8px !important;
      background:#f1f4f7 !important;
      transform:none !important;
   }

   .recommendation-page-fullwidth .recommendation-card{
      width:100% !important;
      max-width:none !important;
      margin:0 !important;
      padding:13px 12px !important;
      border-left:0 !important;
      border-right:0 !important;
      border-radius:0 !important;
      box-shadow:none !important;
   }

   .recommendation-card-top{
      display:grid !important;
      grid-template-columns:96px minmax(0,1fr) !important;
      gap:11px !important;
      align-items:start !important;
      margin-bottom:0 !important;
      padding:0 !important;
   }

   .recommendation-media{
      width:96px !important;
      min-width:96px !important;
      text-align:left !important;
   }

   .recommendation-image{
      display:block !important;
      width:96px !important;
      max-width:96px !important;
      height:96px !important;
      margin:0 !important;
      padding:5px !important;
      object-fit:contain !important;
      border-radius:11px !important;
   }

   .recommendation-main{
      min-width:0 !important;
      text-align:left !important;
   }

   .recommendation-ref{
      margin:0 0 2px !important;
      font-size:11px !important;
      line-height:1.2 !important;
   }

   .recommendation-title{
      display:-webkit-box !important;
      margin:0 0 4px !important;
      overflow:hidden !important;
      font-size:19px !important;
      line-height:1.15 !important;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
   }

   .recommendation-subtitle{
      display:-webkit-box !important;
      margin:0 0 5px !important;
      overflow:hidden !important;
      font-size:14px !important;
      line-height:1.3 !important;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
   }

   .recommendation-price-row{
      justify-content:flex-start !important;
      gap:5px 8px !important;
      margin:5px 0 6px !important;
   }

   .recommendation-price-old{
      font-size:13px !important;
   }

   .recommendation-price-new{
      font-size:23px !important;
   }

   .recommendation-cta-row{
      grid-column:1 / -1 !important;
      width:calc(100% + 107px) !important;
      margin:5px 0 0 -107px !important;
      display:grid !important;
      grid-template-columns:1fr 1fr !important;
      gap:7px !important;
   }

   .recommendation-cta-row .buybutton,
   .recommendation-cta-row .infobutton,
   .recommendation-cta-row .soldoutbutton{
      width:100% !important;
      min-width:0 !important;
      min-height:43px !important;
      margin:0 !important;
      padding:9px 7px !important;
      font-size:15px !important;
      line-height:1.2 !important;
      white-space:normal !important;
   }

   .recommendation-cta-row form{
      width:100% !important;
      max-width:none !important;
      margin:0 !important;
   }

   .recommendation-ratings{
      margin:10px 0 0 !important;
      padding:10px 0 !important;
   }

   .recommendation-score-box{
      margin-bottom:7px !important;
      padding:7px 8px !important;
   }

   .recommendation-rating-grid{
      display:grid !important;
      grid-template-columns:repeat(2,minmax(0,1fr)) !important;
      gap:6px !important;
   }

   .recommendation-rating-item{
      display:flex !important;
      flex-direction:column !important;
      align-items:flex-start !important;
      gap:4px !important;
      min-width:0 !important;
      padding:7px !important;
   }

   .recommendation-rating-label{
      font-size:11px !important;
      line-height:1.2 !important;
   }

   .recommendation-rating-stars{
      font-size:14px !important;
      line-height:1 !important;
      letter-spacing:0 !important;
      white-space:nowrap !important;
   }

   .recommendation-details-summary{
      min-height:45px !important;
      padding:10px 2px !important;
      font-size:15px !important;
   }

   .recommendation-details-icon{
      width:25px !important;
      height:25px !important;
      flex-basis:25px !important;
   }

   .recommendation-details-content{
      padding:2px 0 13px !important;
   }

   .recommendation-text{
      padding:0 !important;
      font-size:15px !important;
      line-height:1.52 !important;
   }
}

@media (max-width:390px){

   .recommendation-card-top{
      grid-template-columns:86px minmax(0,1fr) !important;
      gap:9px !important;
   }

   .recommendation-media{
      width:86px !important;
      min-width:86px !important;
   }

   .recommendation-image{
      width:86px !important;
      max-width:86px !important;
      height:86px !important;
   }

   .recommendation-title{
      font-size:18px !important;
   }

   .recommendation-price-new{
      font-size:21px !important;
   }

   .recommendation-cta-row{
      width:calc(100% + 95px) !important;
      margin-left:-95px !important;
      grid-template-columns:1fr !important;
   }
}

/* =========================================================
   FINAL RECOMMENDATION POSITION SAFEGUARD
   ========================================================= */

.recommendation-page-fullwidth,
.recommendation-page-fullwidth .recommendation-list,
.recommendation-page-fullwidth .recommendation-card{
   float:none !important;
   clear:both !important;
}

@media (max-width:760px){

   #main_content,
   .content_area{
      width:100% !important;
      max-width:100% !important;
      margin-left:0 !important;
      margin-right:0 !important;
   }

   .recommendation-page-fullwidth{
      width:100% !important;
      max-width:100% !important;
      margin:0 !important;
      padding:0 !important;
      overflow:hidden !important;
   }

   .recommendation-page-fullwidth .recommendation-list{
      width:100% !important;
      max-width:100% !important;
      margin:12px 0 0 !important;
      padding:8px 0 20px !important;
      overflow:hidden !important;
   }

   .recommendation-page-fullwidth .recommendation-card{
      width:100% !important;
      max-width:100% !important;
      min-width:0 !important;
      margin:0 !important;
   }
}


/* =========================================================
   LEGACY / SHARED PAGE WIDTH
   Mirrors the Schluesselsafe treatment for historic catalogue,
   product, recommendation, contact and order pages.
   ========================================================= */

#main_wrap,
#main_content{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

#main_content > .content_area{
  width:90% !important;
  max-width:1120px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
  box-sizing:border-box !important;
}

#main_content > .content_area > table{
  width:100% !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  box-sizing:border-box !important;
}

#main_content td,
#main_content th{
  box-sizing:border-box;
}

@media (max-width:900px){
  #main_content > .content_area{
    width:100% !important;
    max-width:100% !important;
    padding-left:12px !important;
    padding-right:12px !important;
  }

  #main_content > .content_area > table{
    display:table !important;
    width:100% !important;
    max-width:100% !important;
    table-layout:fixed;
    overflow:visible !important;
    margin:0 0 16px 0 !important;
  }

  #main_content td,
  #main_content div,
  #main_content li{
    overflow-wrap:break-word;
    word-wrap:break-word;
  }
}

/* =========================================================
   PBOX2511 HOME V4 — CLEAN REPLACEMENT LAYER
   Built directly on the original stylesheet.
   Do not append the earlier V2/V3/V3B layers.
   ========================================================= */

/* ---------- PBOX PAGE WIDTH — NAMESPACED ---------- */

/*
   Legacy pages remain inside the normal centred content wrapper.
   Only the modern PB2511 homepage sections break out to the viewport.
*/
.pbox-hero,
.pbox-trust,
.pbox-fit,
.pbox-chooser,
.pbox-products,
.pbox-dark,
.pbox-disclosures{
  position:relative !important;
  left:50% !important;
  right:auto !important;
  width:100vw !important;
  max-width:none !important;
  margin-left:-50vw !important;
  margin-right:0 !important;
  transform:none !important;
}

.pbox-hero > .wrap,
.pbox-trust > .wrap,
.pbox-fit > .wrap,
.pbox-chooser > .wrap,
.pbox-products > .wrap,
.pbox-dark > .wrap,
.pbox-disclosures > .wrap{
  width:min(100%, 1180px) !important;
  max-width:1180px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:24px !important;
  padding-right:24px !important;
}

/* ---------- SHARED ---------- */

.hero-eyebrow,
.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:#4b5563;
  font-size:13px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.pbox-section-head{
  max-width:760px;
  margin:0 auto 28px;
  text-align:center;
}

.pbox-section-head h2{
  margin:0 0 10px;
  font-size:clamp(32px,3.8vw,52px);
  line-height:1.05;
  letter-spacing:-.025em;
}

.pbox-section-head p{
  margin:0;
  color:#6b7280;
  font-size:17px;
  line-height:1.55;
}

/* ---------- HERO ---------- */

.pbox-hero{
  padding:58px 0 62px !important;
  background:
    radial-gradient(circle at 82% 16%, rgba(15,23,42,.08), transparent 31%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%) !important;
}

.pbox-hero .hero-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr) !important;
  gap:64px !important;
  align-items:center !important;
}

.pbox-hero .hero-text{
  max-width:680px !important;
  text-align:left !important;
}

.pbox-hero .hero-text h1{
  max-width:13ch !important;
  margin:0 0 18px !important;
  font-size:clamp(46px,5.2vw,76px) !important;
  line-height:.98 !important;
  letter-spacing:-.04em !important;
}

.pbox-hero .hero-text .lead{
  max-width:35ch !important;
  margin:0 !important;
  color:#596579 !important;
  font-size:clamp(20px,1.8vw,27px) !important;
  line-height:1.45 !important;
}

.pbox-hero .hero-ctas{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  justify-content:flex-start !important;
  margin-top:28px !important;
}

.pbox-hero .hero-ctas .btn{
  min-height:52px !important;
  padding:13px 21px !important;
  border-radius:999px !important;
  font-size:16px !important;
  font-weight:850 !important;
}

.hero-proof{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px 18px !important;
  margin-top:24px !important;
  color:#374151 !important;
  font-size:14px !important;
  font-weight:750 !important;
}

.pbox-hero .hero-media{
  width:100% !important;
  max-width:560px !important;
  margin-left:auto !important;
}

.pbox-hero .frame{
  padding:18px !important;
  border-radius:26px !important;
  background:#ffffff !important;
  box-shadow:0 24px 60px rgba(15,23,42,.14) !important;
}

.pbox-hero .frame-caption{
  margin-top:12px !important;
  color:#374151 !important;
  font-weight:750 !important;
  text-align:center !important;
}

/* ---------- TRUST BAR ---------- */

.pbox-trust{
  width:100% !important;
  background:#111827 !important;
}

.pbox-trust-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:0 !important;
}

.pbox-trust-item{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:66px !important;
  padding:12px 18px !important;
  border:0 !important;
  border-left:1px solid rgba(255,255,255,.13) !important;
  border-radius:0 !important;
  color:#ffffff !important;
  background:transparent !important;
  font-size:15px !important;
  font-weight:800 !important;
  text-align:center !important;
}

.pbox-trust-item:first-child{
  border-left:0 !important;
}

.pbox-trust-item span{
  margin-right:7px !important;
  color:#86efac !important;
}

/* ---------- COMPATIBILITY WIZARD ---------- */

.pbox-fit{
  padding:78px 0 !important;
  background:#eef2f6 !important;
}

.pbox-fit .pbox-section-head{
  max-width:700px !important;
  margin-left:0 !important;
  text-align:left !important;
}

.fit-wizard{
  width:min(100%, 860px) !important;
  max-width:860px !important;
  margin:34px auto 0 !important;
  padding:34px !important;
  border:1px solid #e1e6ed !important;
  border-radius:28px !important;
  background:#ffffff !important;
  box-shadow:0 20px 56px rgba(15,23,42,.10) !important;
}

.fit-progress{
  width:100% !important;
  height:7px !important;
  margin-bottom:32px !important;
  overflow:hidden !important;
  border-radius:999px !important;
  background:#e5e7eb !important;
}

.fit-progress-bar{
  display:block !important;
  width:0;
  height:100% !important;
  border-radius:999px !important;
  background:linear-gradient(90deg,#111827,#334155) !important;
  transition:width .2s ease !important;
}

.fit-step{
  display:none !important;
  min-height:250px !important;
}

.fit-step.is-active{
  display:block !important;
}

.fit-step-number{
  color:#64748b !important;
  font-size:13px !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
}

.fit-step h3{
  max-width:18ch !important;
  margin:18px 0 30px !important;
  color:#111827 !important;
  font-size:clamp(31px,3.8vw,48px) !important;
  line-height:1.06 !important;
  letter-spacing:-.03em !important;
  text-align:left !important;
}

.fit-choice-row{
  display:flex !important;
  gap:14px !important;
  justify-content:flex-start !important;
}

.fit-choice{
  min-width:156px !important;
  min-height:58px !important;
  padding:13px 22px !important;
  border:2px solid #d4dae2 !important;
  border-radius:16px !important;
  color:#111827 !important;
  background:#ffffff !important;
  font-size:17px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

.fit-choice:hover{
  border-color:#111827 !important;
}

.fit-choice.active{
  color:#ffffff !important;
  background:#111827 !important;
  border-color:#111827 !important;
  box-shadow:0 8px 20px rgba(17,24,39,.18) !important;
}

.fit-back{
  display:inline-flex !important;
  margin-top:24px !important;
  padding:0 !important;
  border:0 !important;
  color:#64748b !important;
  background:transparent !important;
  font-size:14px !important;
  font-weight:800 !important;
}

.fit-result{
  display:none !important;
  grid-template-columns:auto 1fr !important;
  gap:20px !important;
  align-items:start !important;
  padding:26px !important;
  border-radius:20px !important;
}

.fit-result.is-active{
  display:grid !important;
}

.fit-result.is-ok{
  color:#14532d !important;
  background:#ecfdf5 !important;
  border:1px solid #86efac !important;
}

.fit-result.is-warn{
  color:#7c2d12 !important;
  background:#fff7ed !important;
  border:1px solid #fdba74 !important;
}

.fit-result-icon{
  display:grid !important;
  width:56px !important;
  height:56px !important;
  place-items:center !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.82) !important;
  font-size:29px !important;
  font-weight:950 !important;
}

.fit-result-title{
  font-size:30px !important;
  font-weight:950 !important;
}

.fit-result p{
  margin:7px 0 17px !important;
}

/* ---------- RECOMMENDATION ---------- */

.pbox-chooser{
  padding:78px 0 !important;
  background:#ffffff !important;
}

.featured-kit{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) auto !important;
  gap:20px !important;
  align-items:center !important;
  width:min(100%, 1000px) !important;
  max-width:1000px !important;
  margin:32px auto 0 !important;
  padding:30px 32px !important;
  border-radius:24px !important;
  color:#ffffff !important;
  background:linear-gradient(135deg,#0f172a,#27364d) !important;
  box-shadow:0 20px 48px rgba(15,23,42,.22) !important;
  text-decoration:none !important;
}

.featured-kit-badge{
  padding:8px 11px !important;
  border-radius:999px !important;
  color:#111827 !important;
  background:#fde68a !important;
  font-size:12px !important;
  font-weight:950 !important;
  letter-spacing:.06em !important;
  text-transform:uppercase !important;
}

.featured-kit-copy strong,
.featured-kit-copy span{
  display:block !important;
}

.featured-kit-copy strong{
  font-size:29px !important;
  line-height:1.1 !important;
}

.featured-kit-copy span{
  margin-top:8px !important;
  color:rgba(255,255,255,.78) !important;
  font-size:16px !important;
  line-height:1.45 !important;
}

.featured-kit-arrow{
  font-size:34px !important;
}

.alternatives-head{
  width:min(100%, 1000px) !important;
  margin:38px auto 15px !important;
}

.alternatives-head h3{
  margin:0 !important;
  font-size:24px !important;
  text-align:left !important;
}

.alternative-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:16px !important;
  width:min(100%, 1000px) !important;
  margin:0 auto !important;
}

.alternative-card{
  position:relative !important;
  display:block !important;
  min-height:172px !important;
  padding:22px !important;
  border:1px solid #dfe4eb !important;
  border-radius:19px !important;
  background:#ffffff !important;
  text-decoration:none !important;
  box-shadow:0 8px 24px rgba(15,23,42,.04) !important;
}

.alternative-card:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 16px 34px rgba(15,23,42,.09) !important;
}

.alternative-card span,
.alternative-card strong{
  display:block !important;
}

.alternative-fixing{
  margin-bottom:14px !important;
  color:#64748b !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
}

.alternative-card strong{
  color:#111827 !important;
  font-size:20px !important;
  line-height:1.25 !important;
}

.alternative-card span:nth-of-type(2){
  margin-top:8px !important;
  color:#64748b !important;
  line-height:1.4 !important;
}

.alternative-card b{
  position:absolute !important;
  right:18px !important;
  bottom:15px !important;
  color:#111827 !important;
  font-size:23px !important;
}

/* ---------- PRODUCTS ---------- */

.pbox-products{
  padding:84px 0 !important;
  background:#f7f9fc !important;
}

.pbox-products .products-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:24px !important;
}

.pbox-product{
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  min-width:0 !important;
  padding:30px !important;
  border:1px solid #e0e5ec !important;
  border-radius:26px !important;
  background:#ffffff !important;
  box-shadow:0 14px 40px rgba(15,23,42,.06) !important;
  text-align:left !important;
}

.pbox-product.is-featured{
  grid-column:1 / -1 !important;
  display:grid !important;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr) !important;
  column-gap:44px !important;
  align-items:center !important;
  border:2px solid #111827 !important;
}

.pbox-product.is-featured .prod-topline,
.pbox-product.is-featured .prod-title,
.pbox-product.is-featured .pbox-product-reason,
.pbox-product.is-featured .prod-image-link{
  grid-column:1 !important;
}

.pbox-product.is-featured .pbox-product-purchase,
.pbox-product.is-featured .pbox-product-details{
  grid-column:2 !important;
}

.pbox-product .prod-topline{
  color:#64748b !important;
  font-weight:900 !important;
  text-align:left !important;
}

.pbox-product .prod-title{
  margin-top:8px !important;
  font-size:28px !important;
  text-align:left !important;
}

.pbox-product-reason{
  margin:9px 0 18px !important;
  color:#64748b !important;
  font-size:16px !important;
  font-weight:750 !important;
  text-align:left !important;
}

.pbox-product .prod-image-link{
  margin:8px 0 0 !important;
  text-align:center !important;
}

.pbox-product .prod-image{
  width:auto !important;
  max-width:100% !important;
  max-height:280px !important;
}

.pbox-product-purchase{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:14px !important;
  margin-top:20px !important;
}

.pbox-product .prod-price-wrap{
  min-height:0 !important;
}

.pbox-product .prod-offer-label{
  margin-bottom:6px !important;
  color:#15803d !important;
  font-size:18px !important;
  text-align:left !important;
}

.pbox-product .prod-price-row{
  justify-content:flex-start !important;
}

.pbox-product .prod-price-old,
.pbox-product .prod-price-new{
  font-size:31px !important;
}

.pbox-product .prod-buy-btn{
  width:100% !important;
  min-height:54px !important;
  justify-content:center !important;
  font-size:17px !important;
  font-weight:900 !important;
}

.pbox-product-details{
  margin-top:14px !important;
  padding:0 !important;
  overflow:hidden !important;
  border:1px solid #dfe4eb !important;
  border-radius:15px !important;
  background:#ffffff !important;
}

.pbox-product-details > summary{
  min-height:58px !important;
  padding:15px 46px 15px 16px !important;
  color:#111827 !important;
  font-size:16px !important;
  font-weight:850 !important;
  text-align:left !important;
}

/* ---------- DARK BENEFIT SECTION ---------- */

.pbox-dark{
  padding:78px 0 !important;
  color:#ffffff !important;
  background:#111827 !important;
}

.pbox-dark-grid{
  display:grid !important;
  grid-template-columns:1.15fr .85fr !important;
  gap:54px !important;
  align-items:center !important;
}

.pbox-dark h2{
  max-width:11ch !important;
  margin:0 !important;
  color:#ffffff !important;
  font-size:clamp(42px,5vw,70px) !important;
  line-height:1 !important;
  letter-spacing:-.035em !important;
}

.pbox-dark p{
  max-width:36ch !important;
  margin-top:20px !important;
  color:rgba(255,255,255,.72) !important;
  font-size:20px !important;
  line-height:1.55 !important;
}

.section-kicker-light{
  color:#a7f3d0 !important;
}

.pbox-dark-points{
  display:grid !important;
  gap:14px !important;
}

.pbox-dark-points div{
  padding:19px 21px !important;
  border:1px solid rgba(255,255,255,.13) !important;
  border-radius:16px !important;
  color:#ffffff !important;
  background:rgba(255,255,255,.055) !important;
  font-size:18px !important;
  font-weight:800 !important;
}

/* ---------- DISCLOSURES ---------- */

.pbox-disclosures{
  padding:76px 0 !important;
  background:#ffffff !important;
}

.pbox-disclosures > .wrap{
  max-width:1000px !important;
}

.content-disclosure{
  width:100% !important;
  margin:0 0 13px !important;
  overflow:hidden !important;
  border:1px solid #dfe4eb !important;
  border-radius:18px !important;
  background:#ffffff !important;
  box-shadow:0 10px 28px rgba(15,23,42,.045) !important;
}

.content-disclosure > summary{
  min-height:72px !important;
  padding:20px 58px 20px 22px !important;
  color:#111827 !important;
  font-size:20px !important;
  font-weight:850 !important;
  text-align:left !important;
}

/* ---------- FINAL CTA / LOWER PAGE ---------- */

#postbox-cta{
  width:100% !important;
  margin:0 !important;
  padding:76px 24px !important;
  background:#eef2f6 !important;
}

#postbox-cta .seo-box{
  width:min(100%, 980px) !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:46px 54px !important;
  border-radius:28px !important;
  background:#ffffff !important;
  box-shadow:0 18px 50px rgba(15,23,42,.09) !important;
}

.bizcard{
  width:min(100%, 900px) !important;
  max-width:900px !important;
  margin:34px auto !important;
  padding:30px 34px !important;
}

.footer_links .section-inner,
footer .wrap,
.site-footer .wrap{
  width:min(100%, 1120px) !important;
  max-width:1120px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* ---------- TABLET ---------- */

@media (max-width:900px){

  .pbox-hero .hero-grid{
    grid-template-columns:1fr !important;
    gap:32px !important;
  }

  .pbox-hero .hero-text{
    max-width:760px !important;
    margin:0 auto !important;
    text-align:center !important;
  }

  .pbox-hero .hero-text h1,
  .pbox-hero .hero-text .lead{
    max-width:none !important;
  }

  .pbox-hero .hero-ctas,
  .hero-proof{
    justify-content:center !important;
  }

  .pbox-hero .hero-media{
    margin:0 auto !important;
  }

  .pbox-trust-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .alternative-grid{
    grid-template-columns:1fr !important;
  }

  .pbox-product.is-featured{
    grid-template-columns:1fr !important;
  }

  .pbox-product.is-featured .prod-topline,
  .pbox-product.is-featured .prod-title,
  .pbox-product.is-featured .pbox-product-reason,
  .pbox-product.is-featured .prod-image-link,
  .pbox-product.is-featured .pbox-product-purchase,
  .pbox-product.is-featured .pbox-product-details{
    grid-column:1 !important;
  }

  .pbox-dark-grid{
    grid-template-columns:1fr !important;
  }
}

/* ---------- MOBILE FULL-WIDTH ---------- */

@media (max-width:640px){

  html,
  body,
  #page,
  #main,
  #main_wrap,
  #main_content,
  .content_area{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
  }

  #main_content,
  .content_area{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .pbox-hero > .wrap,
  .pbox-fit > .wrap,
  .pbox-chooser > .wrap,
  .pbox-products > .wrap,
  .pbox-dark > .wrap,
  .pbox-disclosures > .wrap{
    width:100% !important;
    max-width:none !important;
    padding-left:16px !important;
    padding-right:16px !important;
  }

  .pbox-hero{
    padding:30px 0 34px !important;
  }

  .pbox-hero .hero-grid{
    gap:24px !important;
  }

  .pbox-hero .hero-text h1{
    font-size:clamp(35px,10vw,48px) !important;
    line-height:1.02 !important;
  }

  .pbox-hero .hero-text .lead{
    font-size:18px !important;
    line-height:1.5 !important;
  }

  .pbox-hero .hero-ctas{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
  }

  .pbox-hero .hero-ctas .btn{
    width:100% !important;
    justify-content:center !important;
  }

  .hero-proof{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:8px !important;
    justify-content:start !important;
    text-align:left !important;
  }

  .pbox-trust{
    display:none !important;
  }

  .pbox-fit,
  .pbox-chooser,
  .pbox-products,
  .pbox-dark,
  .pbox-disclosures{
    padding:48px 0 !important;
  }

  .pbox-fit .pbox-section-head{
    margin-left:auto !important;
    text-align:center !important;
  }

  .fit-wizard{
    width:100% !important;
    max-width:none !important;
    padding:22px !important;
    border-radius:21px !important;
  }

  .fit-step{
    min-height:225px !important;
  }

  .fit-step h3{
    max-width:none !important;
    font-size:30px !important;
    text-align:center !important;
  }

  .fit-choice-row{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    width:100% !important;
  }

  .fit-choice{
    width:100% !important;
    min-width:0 !important;
  }

  .fit-result{
    grid-template-columns:1fr !important;
    text-align:center !important;
  }

  .fit-result-icon{
    margin:0 auto !important;
  }

  .featured-kit{
    grid-template-columns:1fr auto !important;
    width:100% !important;
    padding:23px !important;
  }

  .featured-kit-badge{
    grid-column:1 / -1 !important;
    justify-self:start !important;
  }

  .featured-kit-copy{
    grid-column:1 !important;
  }

  .featured-kit-copy strong{
    font-size:24px !important;
  }

  .featured-kit-arrow{
    grid-column:2 !important;
  }

  .alternative-grid{
    width:100% !important;
  }

  .pbox-products .products-grid{
    grid-template-columns:1fr !important;
    width:100% !important;
  }

  .pbox-product{
    width:100% !important;
    min-width:0 !important;
    padding:21px !important;
  }

  .pbox-product .prod-title{
    font-size:25px !important;
  }

  .pbox-product.is-featured{
    grid-column:auto !important;
  }

  .pbox-dark h2{
    max-width:none !important;
    font-size:42px !important;
  }

  .content-disclosure > summary{
    min-height:62px !important;
    padding:16px 48px 16px 16px !important;
    font-size:17px !important;
  }

  #postbox-cta{
    padding:48px 12px !important;
  }

  #postbox-cta .seo-box{
    width:100% !important;
    padding:28px 18px !important;
    border-radius:20px !important;
  }

  .bizcard{
    width:calc(100% - 24px) !important;
    max-width:none !important;
    margin:24px auto !important;
    padding:22px 18px !important;
  }
}

/* =========================================================
   PBOX2511 HOME V5 — RESTRAINED DESKTOP REFINEMENT
   Smaller typography, calmer colours, tighter spacing.
   ========================================================= */

:root{
  --pbox-ink:#172033;
  --pbox-muted:#667085;
  --pbox-line:#dde3ea;
  --pbox-soft:#f7f8fa;
  --pbox-soft-2:#f1f3f5;
  --pbox-accent:#2f5d50;
  --pbox-accent-soft:#edf5f1;
}

.pbox-section-head{max-width:700px!important;margin-bottom:22px!important}
.pbox-section-head h2{color:var(--pbox-ink)!important;font-size:clamp(30px,3vw,38px)!important;line-height:1.12!important;letter-spacing:-.02em!important}
.pbox-section-head p{color:var(--pbox-muted)!important;font-size:16px!important;line-height:1.5!important}
.hero-eyebrow,.section-kicker{margin-bottom:9px!important;color:#6d7686!important;font-size:11px!important;letter-spacing:.09em!important}

.pbox-hero{padding:40px 0 44px!important;background:radial-gradient(circle at 84% 18%,rgba(17,24,39,.045),transparent 31%),linear-gradient(180deg,#fff 0%,#fafbfc 100%)!important}
.pbox-hero .hero-grid{grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr)!important;gap:44px!important}
.pbox-hero .hero-text h1{max-width:15ch!important;margin-bottom:14px!important;color:var(--pbox-ink)!important;font-size:clamp(40px,4.4vw,54px)!important;line-height:1.02!important;letter-spacing:-.03em!important}
.pbox-hero .hero-text .lead{max-width:38ch!important;color:var(--pbox-muted)!important;font-size:19px!important;line-height:1.5!important}
.pbox-hero .hero-ctas{margin-top:22px!important}
.pbox-hero .hero-ctas .btn{min-height:46px!important;padding:10px 17px!important;font-size:14px!important;font-weight:800!important}
.hero-proof{gap:8px 16px!important;margin-top:18px!important;color:#4b5563!important;font-size:12px!important}
.pbox-hero .frame{padding:14px!important;border-radius:20px!important;border:1px solid var(--pbox-line)!important;box-shadow:0 12px 30px rgba(15,23,42,.08)!important}
.pbox-hero .frame-caption{margin-top:9px!important;color:#4b5563!important;font-size:13px!important;font-weight:700!important}

.pbox-trust{background:#f7f8fa!important;border-top:1px solid var(--pbox-line)!important;border-bottom:1px solid var(--pbox-line)!important}
.pbox-trust-item{min-height:50px!important;padding:10px 14px!important;border-left:1px solid var(--pbox-line)!important;color:#344054!important;background:transparent!important;font-size:13px!important;font-weight:750!important}
.pbox-trust-item span{color:var(--pbox-accent)!important}

.pbox-fit{padding:50px 0!important;background:var(--pbox-soft-2)!important}
.pbox-fit .pbox-section-head{max-width:620px!important}
.fit-wizard{max-width:760px!important;margin-top:24px!important;padding:24px!important;border-radius:20px!important;border:1px solid var(--pbox-line)!important;box-shadow:0 10px 28px rgba(15,23,42,.06)!important}
.fit-progress{height:5px!important;margin-bottom:22px!important}
.fit-progress-bar{background:var(--pbox-accent)!important}
.fit-step{min-height:190px!important}
.fit-step-number{font-size:11px!important;color:#7a8494!important}
.fit-step h3{max-width:22ch!important;margin:14px 0 22px!important;color:var(--pbox-ink)!important;font-size:clamp(26px,3vw,34px)!important;line-height:1.12!important}
.fit-choice-row{gap:10px!important}
.fit-choice{min-width:130px!important;min-height:48px!important;padding:10px 18px!important;border:1px solid #cfd6df!important;border-radius:12px!important;font-size:15px!important;background:#fff!important}
.fit-choice.active{background:var(--pbox-accent)!important;border-color:var(--pbox-accent)!important;box-shadow:none!important}
.fit-back{margin-top:18px!important;font-size:13px!important}
.fit-result{padding:20px!important;border-radius:16px!important}
.fit-result.is-ok{color:#285445!important;background:var(--pbox-accent-soft)!important;border-color:#b9d7ca!important}
.fit-result-icon{width:46px!important;height:46px!important;font-size:23px!important}
.fit-result-title{font-size:24px!important}
.fit-result p{margin:5px 0 14px!important;font-size:14px!important}

.pbox-chooser{padding:50px 0!important;background:#fff!important}
.featured-kit{max-width:900px!important;margin-top:24px!important;padding:22px 24px!important;border:1px solid #c9d8d1!important;border-radius:18px!important;color:var(--pbox-ink)!important;background:var(--pbox-accent-soft)!important;box-shadow:none!important}
.featured-kit-badge{color:#285445!important;background:#dcebe4!important;font-size:10px!important}
.featured-kit-copy strong{color:var(--pbox-ink)!important;font-size:23px!important}
.featured-kit-copy span{margin-top:5px!important;color:var(--pbox-muted)!important;font-size:14px!important}
.featured-kit-arrow{color:var(--pbox-accent)!important;font-size:27px!important}
.alternatives-head{max-width:900px!important;margin:28px auto 12px!important}
.alternatives-head h3{color:var(--pbox-ink)!important;font-size:20px!important}
.alternative-grid{max-width:900px!important;gap:12px!important}
.alternative-card{min-height:132px!important;padding:18px!important;border-color:var(--pbox-line)!important;border-radius:15px!important;box-shadow:none!important}
.alternative-card:hover{box-shadow:0 8px 20px rgba(15,23,42,.06)!important}
.alternative-fixing{margin-bottom:10px!important;font-size:10px!important}
.alternative-card strong{font-size:17px!important}
.alternative-card span:nth-of-type(2){font-size:13px!important}

.pbox-products{padding:54px 0!important;background:var(--pbox-soft)!important}
.pbox-products .products-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px!important}
.pbox-product,.pbox-product.is-featured{grid-column:auto!important;display:flex!important;flex-direction:column!important;padding:22px!important;border:1px solid var(--pbox-line)!important;border-radius:18px!important;box-shadow:0 6px 18px rgba(15,23,42,.035)!important}
.pbox-product.is-featured{border:1px solid #b8cec4!important;background:#fbfdfc!important}
.pbox-product.is-featured .prod-topline,.pbox-product.is-featured .prod-title,.pbox-product.is-featured .pbox-product-reason,.pbox-product.is-featured .prod-image-link,.pbox-product.is-featured .pbox-product-purchase,.pbox-product.is-featured .pbox-product-details{grid-column:auto!important}
.pbox-product .prod-topline{color:#7a8494!important;font-size:10px!important}
.pbox-product .prod-title{margin-top:6px!important;font-size:22px!important;line-height:1.2!important}
.pbox-product-reason{margin:7px 0 14px!important;font-size:14px!important}
.pbox-product .prod-image{max-height:220px!important}
.pbox-product-purchase{margin-top:16px!important;gap:10px!important}
.pbox-product .prod-offer-label{font-size:15px!important}
.pbox-product .prod-price-old,.pbox-product .prod-price-new{font-size:27px!important}
.pbox-product .prod-buy-btn{min-height:46px!important;font-size:15px!important}
.pbox-product-details{margin-top:10px!important;border-radius:12px!important}
.pbox-product-details>summary{min-height:50px!important;padding:12px 42px 12px 14px!important;font-size:14px!important}

.pbox-dark{padding:50px 0!important;color:var(--pbox-ink)!important;background:#f3f5f7!important}
.pbox-dark-grid{gap:36px!important}
.pbox-dark h2{max-width:14ch!important;color:var(--pbox-ink)!important;font-size:clamp(32px,3.8vw,42px)!important;line-height:1.08!important;letter-spacing:-.025em!important}
.pbox-dark p{margin-top:14px!important;color:var(--pbox-muted)!important;font-size:16px!important}
.section-kicker-light{color:var(--pbox-accent)!important}
.pbox-dark-points{gap:10px!important}
.pbox-dark-points div{padding:14px 16px!important;border:1px solid var(--pbox-line)!important;border-radius:13px!important;color:#344054!important;background:#fff!important;font-size:15px!important;font-weight:750!important}

.pbox-disclosures{padding:48px 0!important}
.pbox-disclosures>.wrap{max-width:920px!important}
.content-disclosure{margin-bottom:10px!important;border-radius:14px!important;box-shadow:none!important}
.content-disclosure>summary{min-height:58px!important;padding:15px 50px 15px 18px!important;font-size:16px!important}

#postbox-cta{padding:52px 24px!important;background:var(--pbox-soft-2)!important}
#postbox-cta .seo-box{max-width:900px!important;padding:34px 38px!important;border-radius:20px!important;box-shadow:0 8px 24px rgba(15,23,42,.05)!important}
#postbox-cta .seo-box h2,#postbox-cta .seo-box h3{font-size:24px!important}
#postbox-cta .seo-box p,#postbox-cta .seo-box li{font-size:14px!important;line-height:1.5!important}
.bizcard{max-width:820px!important;padding:24px 28px!important;border-radius:18px!important}
.footer_links{padding-top:34px!important}
.footer_links .blog_accordion{min-height:52px!important;padding:14px 48px 14px 16px!important;border-radius:10px!important;font-size:14px!important}

@media (min-width:901px){
  .pbox-products .products-grid{align-items:stretch!important}
  .pbox-product{min-height:100%!important}
  .pbox-product .prod-image-link{min-height:230px!important;display:flex!important;align-items:center!important;justify-content:center!important}
  .pbox-product-purchase{margin-top:auto!important}
}


/* =========================================================
   V5B — REMOVE DUPLICATED BENEFIT STRIP + FINAL HERO TUNING
   ========================================================= */

/* The hero already carries the essential product benefits. */
.pbox-trust{
  display:none !important;
}

/* Slightly quieter hero proportions on desktop. */
.pbox-hero{
  padding-top:36px !important;
  padding-bottom:38px !important;
}

.pbox-hero .hero-text h1{
  font-size:clamp(38px,4vw,50px) !important;
  max-width:16ch !important;
}

.pbox-hero .hero-text .lead{
  font-size:18px !important;
}

.hero-proof{
  margin-top:16px !important;
  gap:8px 15px !important;
}

.hero-proof span{
  font-size:12px !important;
}

/* Pull the compatibility section upward now the strip is gone. */
.pbox-fit{
  padding-top:44px !important;
}

/* Keep the hero balanced at wide desktop sizes. */
@media (min-width:1100px){
  .pbox-hero .hero-grid{
    gap:40px !important;
  }

  .pbox-hero .hero-media{
    max-width:540px !important;
  }
}


/* =========================================================
   V5C — TRANSLATION / COMPATIBILITY / PRODUCT GRID FIXES
   ========================================================= */

/* Compatibility question: stop unnecessary narrow wrapping. */
.fit-step h3{
  width:100% !important;
  max-width:none !important;
  text-align:left !important;
}

.fit-step{
  width:100% !important;
}

.fit-choice-row{
  width:100% !important;
}

/* Product cards must keep their own natural height.
   Opening one details panel must not stretch the adjacent card. */
.pbox-products .products-grid{
  align-items:start !important;
  grid-auto-rows:auto !important;
}

.pbox-product,
.pbox-product.is-featured{
  height:auto !important;
  min-height:0 !important;
  align-self:start !important;
}

.pbox-product .prod-image-link{
  min-height:0 !important;
}

.pbox-product-purchase{
  margin-top:16px !important;
}

/* Keep expanded product information left aligned and contained. */
.pbox-product-details[open]{
  height:auto !important;
}

.pbox-details-body{
  width:100% !important;
  padding:14px 16px 16px !important;
  text-align:left !important;
}

.pbox-details-body .prod-sub,
.pbox-details-body .prod-keypoints,
.pbox-details-body .prod-meta,
.pbox-details-body p,
.pbox-details-body li{
  text-align:left !important;
}

.pbox-details-body .prod-keypoints ul,
.pbox-details-body .prod-keypoints ul.clean,
.pbox-details-body .prod-keypoints ul.no-bullets{
  text-align:left !important;
}

.pbox-details-body .prod-keypoints li{
  display:block !important;
  margin:7px 0 !important;
}

/* The benefit cards should inherit the page language cleanly. */
.pbox-dark-points div{
  text-align:left !important;
}

/* Remove the old desktop equal-height rule from the previous layer. */
@media (min-width:901px){
  .pbox-product{
    min-height:0 !important;
  }

  .pbox-product .prod-image-link{
    min-height:0 !important;
  }

  .pbox-product-purchase{
    margin-top:16px !important;
  }
}


/* =========================================================
   V5D — HERO BENEFIT LINE + HEADER HOME BUTTON
   ========================================================= */

/* Keep the three short hero benefits on one line on desktop.
   The previous flex container was allowed to wrap, which is why
   the compatibility phrase dropped onto a second line. */
@media (min-width:901px){
  .hero-proof{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:16px !important;
    white-space:nowrap !important;
  }

  .hero-proof span{
    flex:0 0 auto !important;
    white-space:nowrap !important;
  }
}

/* Header home control */
.header-home{
  display:inline-flex;
  width:38px;
  height:38px;
  flex:0 0 38px;
  align-items:center;
  justify-content:center;
  border:1px solid #e1e5eb;
  border-radius:999px;
  color:#172033;
  background:#ffffff;
  text-decoration:none;
  transition:background-color .15s ease,border-color .15s ease;
}

.header-home:hover,
.header-home:focus-visible{
  background:#f3f4f6;
  border-color:#cbd2dc;
}

.header-home svg{
  display:block;
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.header-right{
  gap:10px !important;
}

/* Keep the house visible on mobile while the telephone remains hidden. */
@media (max-width:768px){
  .header-home{
    width:40px;
    height:40px;
    flex-basis:40px;
  }
}

/* On narrow phones the hero benefits may wrap normally. */
@media (max-width:900px){
  .hero-proof{
    white-space:normal !important;
  }

  .hero-proof span{
    white-space:normal !important;
  }
}


/* =========================================================
   V5E — INTEGRATED DESKTOP COMPATIBILITY PANEL
   Heading and question now form one deliberate two-column unit.
   ========================================================= */

@media (min-width:901px){

  .pbox-fit{
    padding-top:42px !important;
    padding-bottom:42px !important;
  }

  .pbox-fit > .wrap{
    display:grid !important;
    grid-template-columns:minmax(280px,.9fr) minmax(520px,1.35fr) !important;
    gap:44px !important;
    align-items:center !important;
  }

  .pbox-fit .pbox-section-head{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    text-align:left !important;
  }

  .pbox-fit .pbox-section-head h2{
    max-width:11ch !important;
    margin:0 0 12px !important;
    white-space:normal !important;
    font-size:34px !important;
    line-height:1.08 !important;
  }

  .pbox-fit .pbox-section-head p{
    max-width:32ch !important;
    margin:0 !important;
    font-size:15px !important;
    line-height:1.5 !important;
  }

  .fit-wizard{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:24px 28px !important;
    border-radius:18px !important;
    box-shadow:none !important;
  }

  .fit-progress{
    display:none !important;
  }

  .fit-step{
    min-height:0 !important;
  }

  .fit-step-number{
    margin-bottom:10px !important;
  }

  .fit-step h3{
    max-width:none !important;
    margin:0 0 20px !important;
    font-size:25px !important;
    line-height:1.18 !important;
    text-align:left !important;
  }

  .fit-choice-row{
    width:auto !important;
    justify-content:flex-start !important;
  }

  .fit-choice{
    min-width:118px !important;
    min-height:46px !important;
    padding:9px 16px !important;
  }

  .fit-back{
    margin-top:16px !important;
  }

  .fit-result{
    min-height:0 !important;
    padding:20px !important;
  }
}

/* Keep tablet and mobile stacked and full width. */
@media (max-width:900px){
  .pbox-fit > .wrap{
    display:block !important;
  }
}


/* =========================================================
   V5F — MOBILE REBUILD
   Desktop remains unchanged. Mobile is reset and rebuilt cleanly.
   ========================================================= */

@media (max-width:640px){

  /* ---------- HEADER ---------- */

  .site-header{
    position:relative !important;
    z-index:50 !important;
    min-height:0 !important;
    background:#ffffff !important;
  }

  .header-inner{
    display:grid !important;
    grid-template-columns:auto minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;
    gap:8px 10px !important;
    align-items:center !important;
    width:100% !important;
    max-width:none !important;
    min-height:0 !important;
    padding:10px 14px 12px !important;
  }

  .header-inner > .menu-button,
  .header-inner > .menu-left,
  .header-inner > nav,
  .header-inner > div:first-child{
    grid-column:1 !important;
    grid-row:1 !important;
    align-self:center !important;
  }

  .brand-block{
    grid-column:2 / 4 !important;
    grid-row:1 !important;
    display:flex !important;
    min-width:0 !important;
    align-items:center !important;
    justify-content:center !important;
    gap:9px !important;
    margin:0 !important;
    padding:0 !important;
  }

  .brand-block .flag-icon{
    flex:0 0 auto !important;
  }

  .brand-block .flag-icon img{
    width:32px !important;
    height:32px !important;
  }

  .brand-text{
    min-width:0 !important;
  }

  .brand-title{
    margin:0 !important;
    font-size:20px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
  }

  .brand-subtitle{
    display:none !important;
  }

  .header-right{
    grid-column:1 / 4 !important;
    grid-row:2 !important;
    display:flex !important;
    width:100% !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:10px !important;
    margin:0 !important;
  }

  .header-phone{
    display:none !important;
  }

  .header-home{
    width:38px !important;
    height:38px !important;
    flex:0 0 38px !important;
    font-size:1.25em !important;
  }

  .header-right select{
    min-height:40px !important;
    max-width:180px !important;
    padding:6px 34px 6px 14px !important;
    font-size:16px !important;
  }

  /* ---------- GLOBAL MOBILE WIDTH ---------- */

  html,
  body,
  #page,
  #main,
  #main_wrap,
  #main_content,
  .content_area{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    overflow-x:hidden !important;
  }

  .pbox-hero > .wrap,
  .pbox-fit > .wrap,
  .pbox-chooser > .wrap,
  .pbox-products > .wrap,
  .pbox-dark > .wrap,
  .pbox-disclosures > .wrap{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    padding-left:16px !important;
    padding-right:16px !important;
  }

  /* ---------- HERO ---------- */

  .pbox-hero{
    padding:26px 0 34px !important;
  }

  .pbox-hero .hero-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:20px !important;
    width:100% !important;
    min-width:0 !important;
  }

  .pbox-hero .hero-text{
    order:1 !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    text-align:center !important;
  }

  .pbox-hero .hero-media{
    order:2 !important;
    position:static !important;
    inset:auto !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    transform:none !important;
  }

  .pbox-hero .frame{
    position:static !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    padding:10px !important;
    overflow:hidden !important;
    border-radius:16px !important;
    transform:none !important;
  }

  .pbox-hero .frame-figure,
  .pbox-hero .frame-figure img,
  .pbox-hero .hero-media img{
    display:block !important;
    position:static !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    height:auto !important;
    margin:0 !important;
    object-fit:contain !important;
    transform:none !important;
  }

  .hero-eyebrow{
    margin-bottom:8px !important;
    font-size:10px !important;
    text-align:center !important;
  }

  .pbox-hero .hero-text h1{
    max-width:none !important;
    margin:0 auto 13px !important;
    font-size:36px !important;
    line-height:1.05 !important;
    letter-spacing:-.025em !important;
    text-align:center !important;
  }

  .pbox-hero .hero-text .lead{
    max-width:34ch !important;
    margin:0 auto !important;
    font-size:17px !important;
    line-height:1.48 !important;
    text-align:center !important;
  }

  .pbox-hero .hero-ctas{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    width:100% !important;
    max-width:360px !important;
    margin:20px auto 0 !important;
  }

  .pbox-hero .hero-ctas .btn{
    width:100% !important;
    min-height:48px !important;
    padding:10px 15px !important;
    justify-content:center !important;
    font-size:15px !important;
  }

  .hero-proof{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:7px !important;
    width:100% !important;
    max-width:360px !important;
    margin:17px auto 0 !important;
    text-align:left !important;
  }

  .hero-proof span{
    font-size:13px !important;
    line-height:1.35 !important;
    white-space:normal !important;
  }

  .pbox-hero .frame-caption{
    padding:0 4px !important;
    font-size:13px !important;
    line-height:1.35 !important;
  }

  /* ---------- COMPATIBILITY ---------- */

  .pbox-fit{
    padding:40px 0 !important;
  }

  .pbox-fit > .wrap{
    display:block !important;
  }

  .pbox-fit .pbox-section-head{
    max-width:none !important;
    margin:0 auto 20px !important;
    text-align:center !important;
  }

  .pbox-fit .pbox-section-head h2{
    max-width:none !important;
    margin:0 0 10px !important;
    font-size:31px !important;
    line-height:1.12 !important;
    text-align:center !important;
  }

  .pbox-fit .pbox-section-head p{
    max-width:34ch !important;
    margin:0 auto !important;
    font-size:16px !important;
    line-height:1.45 !important;
    text-align:center !important;
  }

  .fit-wizard{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:20px !important;
    border-radius:18px !important;
    box-shadow:none !important;
  }

  .fit-progress{
    display:block !important;
    height:4px !important;
    margin-bottom:20px !important;
  }

  .fit-step{
    min-height:0 !important;
    padding-bottom:2px !important;
  }

  .fit-step-number{
    margin-bottom:10px !important;
    font-size:11px !important;
    text-align:center !important;
  }

  .fit-step h3{
    width:100% !important;
    max-width:none !important;
    margin:0 0 18px !important;
    font-size:25px !important;
    line-height:1.16 !important;
    text-align:center !important;
  }

  .fit-choice-row{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    width:100% !important;
  }

  .fit-choice{
    width:100% !important;
    min-width:0 !important;
    min-height:48px !important;
    padding:9px 10px !important;
    font-size:16px !important;
  }

  .fit-back{
    display:block !important;
    margin:14px auto 0 !important;
  }

  /* ---------- RECOMMENDATION ---------- */

  .pbox-chooser{
    padding:40px 0 !important;
  }

  .pbox-chooser .pbox-section-head{
    margin-bottom:18px !important;
  }

  .pbox-chooser .pbox-section-head h2{
    font-size:31px !important;
    line-height:1.12 !important;
  }

  .pbox-chooser .pbox-section-head p{
    font-size:16px !important;
  }

  .featured-kit{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:20px !important;
    border-radius:16px !important;
    text-align:left !important;
  }

  .featured-kit-badge{
    display:inline-block !important;
    margin-bottom:14px !important;
    padding:7px 10px !important;
  }

  .featured-kit-copy strong{
    font-size:24px !important;
    line-height:1.15 !important;
  }

  .featured-kit-copy span{
    margin-top:7px !important;
    font-size:15px !important;
    line-height:1.45 !important;
  }

  .featured-kit-arrow{
    display:block !important;
    margin-top:12px !important;
    font-size:25px !important;
    text-align:right !important;
  }

  .alternatives-head{
    width:100% !important;
    margin:26px 0 12px !important;
  }

  .alternatives-head h3{
    font-size:22px !important;
  }

  .alternative-grid{
    grid-template-columns:1fr !important;
    gap:10px !important;
    width:100% !important;
  }

  .alternative-card{
    min-height:0 !important;
    padding:17px 44px 17px 17px !important;
    text-align:left !important;
  }

  .alternative-card strong{
    font-size:18px !important;
  }

  .alternative-card b{
    right:16px !important;
    top:50% !important;
    bottom:auto !important;
    transform:translateY(-50%) !important;
  }

  /* ---------- PRODUCTS ---------- */

  .pbox-products{
    padding:42px 0 !important;
  }

  .pbox-products .products-grid{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .pbox-product,
  .pbox-product.is-featured{
    width:100% !important;
    padding:18px !important;
    border-radius:16px !important;
  }

  .pbox-product .prod-title{
    font-size:22px !important;
  }

  .pbox-product .prod-image{
    max-height:210px !important;
  }

  .pbox-product .prod-price-old,
  .pbox-product .prod-price-new{
    font-size:25px !important;
  }

  /* ---------- LOWER SECTIONS ---------- */

  .pbox-dark,
  .pbox-disclosures{
    padding:40px 0 !important;
  }

  .pbox-dark h2{
    font-size:31px !important;
    line-height:1.12 !important;
  }

  .pbox-dark-grid{
    gap:22px !important;
  }

  .content-disclosure > summary{
    min-height:54px !important;
    padding:14px 44px 14px 15px !important;
    font-size:16px !important;
  }
}


/* =========================================================
   V5G — MOBILE COMPACT CORRECTION
   Fixes oversized header, hero and compatibility sections.
   Desktop remains unchanged.
   ========================================================= */

@media (max-width:640px){

  .site-header,
  .header-inner,
  .brand-block,
  .header-right{
    min-height:0 !important;
    height:auto !important;
  }

  .site-header{
    padding:0 !important;
  }

  .header-inner{
    display:grid !important;
    grid-template-columns:auto minmax(0,1fr) auto !important;
    grid-template-rows:min-content min-content !important;
    grid-auto-rows:min-content !important;
    gap:6px 8px !important;
    align-items:center !important;
    padding:8px 12px 9px !important;
  }

  .header-inner > .menu-button,
  .header-inner > .menu-left,
  .header-inner > nav,
  .header-inner > div:first-child{
    grid-column:1 !important;
    grid-row:1 !important;
    margin:0 !important;
    align-self:center !important;
  }

  .brand-block{
    grid-column:2 / 4 !important;
    grid-row:1 !important;
    justify-content:center !important;
    margin:0 !important;
    padding:0 !important;
  }

  .brand-block .flag-icon img{
    width:28px !important;
    height:28px !important;
  }

  .brand-title{
    font-size:18px !important;
    line-height:1.05 !important;
  }

  .header-right{
    grid-column:2 / 4 !important;
    grid-row:2 !important;
    justify-content:flex-end !important;
    gap:8px !important;
    margin:0 !important;
    padding:0 !important;
  }

  .header-home{
    width:34px !important;
    height:34px !important;
    flex-basis:34px !important;
    font-size:1.05em !important;
  }

  .header-right select{
    min-height:36px !important;
    max-width:150px !important;
    padding:4px 30px 4px 11px !important;
    font-size:15px !important;
  }

  .pbox-hero{
    padding:20px 0 28px !important;
  }

  .pbox-hero .hero-grid{
    gap:16px !important;
  }

  .hero-eyebrow{
    margin-bottom:6px !important;
    font-size:9px !important;
    letter-spacing:.08em !important;
  }

  .pbox-hero .hero-text h1{
    margin-bottom:10px !important;
    font-size:30px !important;
    line-height:1.06 !important;
    letter-spacing:-.02em !important;
  }

  .pbox-hero .hero-text .lead{
    max-width:32ch !important;
    font-size:15px !important;
    line-height:1.45 !important;
  }

  .pbox-hero .hero-ctas{
    gap:8px !important;
    max-width:330px !important;
    margin-top:16px !important;
  }

  .pbox-hero .hero-ctas .btn{
    min-height:44px !important;
    padding:9px 13px !important;
    font-size:14px !important;
  }

  .hero-proof{
    max-width:330px !important;
    gap:6px !important;
    margin-top:14px !important;
  }

  .hero-proof span{
    font-size:12px !important;
    line-height:1.3 !important;
  }

  .pbox-hero .frame{
    padding:8px !important;
    border-radius:14px !important;
  }

  .pbox-hero .frame-caption{
    font-size:12px !important;
    line-height:1.3 !important;
  }

  .pbox-fit{
    padding:32px 0 !important;
  }

  .pbox-fit .pbox-section-head{
    margin-bottom:16px !important;
  }

  .pbox-fit .pbox-section-head h2{
    font-size:26px !important;
    line-height:1.12 !important;
  }

  .pbox-fit .pbox-section-head p{
    max-width:31ch !important;
    font-size:14px !important;
    line-height:1.4 !important;
  }

  .fit-wizard{
    padding:16px !important;
    border-radius:16px !important;
  }

  .fit-progress{
    margin-bottom:16px !important;
  }

  .fit-step-number{
    margin-bottom:8px !important;
    font-size:10px !important;
  }

  .fit-step h3{
    margin-bottom:14px !important;
    font-size:22px !important;
    line-height:1.15 !important;
  }

  .fit-choice{
    min-height:44px !important;
    font-size:15px !important;
  }

  .pbox-chooser{
    padding:34px 0 !important;
  }

  .pbox-chooser .pbox-section-head h2{
    font-size:27px !important;
  }

  .pbox-chooser .pbox-section-head p{
    font-size:14px !important;
  }

  .featured-kit{
    padding:17px !important;
  }

  .featured-kit-badge{
    margin-bottom:10px !important;
    padding:6px 9px !important;
    font-size:10px !important;
  }

  .featured-kit-copy strong{
    font-size:21px !important;
  }

  .featured-kit-copy span{
    font-size:14px !important;
  }

  .alternatives-head{
    margin-top:22px !important;
  }

  .alternatives-head h3{
    font-size:20px !important;
  }

  .alternative-card{
    padding-top:14px !important;
    padding-bottom:14px !important;
  }
}


/* =========================================================
   V5H — THREE-ROW MOBILE HEADER
   Desktop remains one compact row.
   Mobile: brand / controls / page links.
   ========================================================= */

/* ---------- DESKTOP ---------- */

.site-header-v12{
  position:relative;
  z-index:60;
  width:100%;
  border-bottom:1px solid #e1e5eb;
  background:#ffffff;
}

.site-header-v12 .header-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  width:min(100%,1180px);
  min-height:58px;
  margin:0 auto;
  padding:8px 24px;
}

.header-brand-row{
  display:flex;
  min-width:0;
  align-items:center;
  gap:10px;
}

.header-brand-row .flag-icon{
  flex:0 0 auto;
}

.header-brand-row .flag-icon img{
  display:block;
  width:30px;
  height:30px;
}

.header-brand-row .brand-text{
  min-width:0;
}

.header-brand-row .brand-title{
  margin:0;
  color:#172033;
  font-size:17px;
  line-height:1.15;
  font-weight:850;
}

.header-brand-row .brand-subtitle{
  margin-top:2px;
  color:#667085;
  font-size:12px;
  line-height:1.25;
}

.header-controls-row{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.header-menu{
  display:flex;
  align-items:center;
}

.header-home{
  display:inline-flex;
  width:38px;
  height:38px;
  flex:0 0 38px;
  align-items:center;
  justify-content:center;
  border:1px solid #e1e5eb;
  border-radius:999px;
  color:#172033;
  background:#ffffff;
  font-size:1.25em;
  line-height:1;
  text-decoration:none;
}

.header-phone{
  color:#172033;
  font-size:14px;
  font-weight:750;
  white-space:nowrap;
}

.header-language{
  display:flex;
  align-items:center;
}

.header-page-nav{
  border-top:1px solid #eef1f4;
  background:#ffffff;
}

.header-page-nav-inner{
  display:flex;
  gap:28px;
  width:min(100%,1180px);
  margin:0 auto;
  padding:10px 24px 11px;
}

.header-page-nav a{
  color:#536174;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

.header-page-nav a:hover{
  color:#172033;
}

/* ---------- MOBILE ---------- */

@media (max-width:640px){

  .site-header-v12{
    position:relative !important;
    min-height:0 !important;
    height:auto !important;
  }

  .site-header-v12 .header-inner{
    display:block !important;
    width:100% !important;
    min-height:0 !important;
    height:auto !important;
    padding:0 !important;
  }

  /* Row 1: flag + title + tagline */
  .header-brand-row{
    display:flex !important;
    width:100% !important;
    min-height:0 !important;
    align-items:center !important;
    gap:10px !important;
    padding:10px 14px 8px !important;
  }

  .header-brand-row .flag-icon img{
    width:34px !important;
    height:34px !important;
  }

  .header-brand-row .brand-title{
    font-size:20px !important;
    line-height:1.08 !important;
    white-space:normal !important;
  }

  .header-brand-row .brand-subtitle{
    display:block !important;
    margin-top:3px !important;
    color:#596579 !important;
    font-size:13px !important;
    line-height:1.25 !important;
  }

  /* Row 2: menu / home / phone / language */
  .header-controls-row{
    display:grid !important;
    grid-template-columns:auto auto minmax(0,1fr) auto !important;
    gap:8px !important;
    align-items:center !important;
    width:100% !important;
    min-height:0 !important;
    padding:7px 14px 9px !important;
  }

  .header-menu{
    grid-column:1 !important;
    display:flex !important;
    min-width:0 !important;
    align-items:center !important;
  }

  .header-home{
    grid-column:2 !important;
    width:38px !important;
    height:38px !important;
    flex-basis:38px !important;
    font-size:1.15em !important;
  }

  .header-phone{
    grid-column:3 !important;
    display:block !important;
    min-width:0 !important;
    padding:8px 10px !important;
    overflow:hidden !important;
    border:1px solid #e1e5eb !important;
    border-radius:999px !important;
    font-size:14px !important;
    text-align:center !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
  }

  .header-language{
    grid-column:4 !important;
    min-width:0 !important;
  }

  .header-language select{
    width:auto !important;
    min-width:112px !important;
    min-height:38px !important;
    max-width:145px !important;
    padding:5px 28px 5px 10px !important;
    font-size:15px !important;
  }

  /* Row 3: page links */
  .header-page-nav{
    display:block !important;
    border-top:1px solid #e6eaf0 !important;
    border-bottom:1px solid #e6eaf0 !important;
    background:#ffffff !important;
  }

  .header-page-nav-inner{
    display:flex !important;
    width:100% !important;
    gap:0 !important;
    padding:0 !important;
    overflow-x:auto !important;
    scrollbar-width:none !important;
  }

  .header-page-nav-inner::-webkit-scrollbar{
    display:none !important;
  }

  .header-page-nav a{
    flex:0 0 auto !important;
    padding:10px 14px !important;
    color:#536174 !important;
    font-size:13px !important;
    line-height:1.2 !important;
    font-weight:800 !important;
    white-space:nowrap !important;
  }

  /* Remove the previous experimental mobile header grid rules. */
  .header-inner > .menu-button,
  .header-inner > .menu-left,
  .header-inner > nav,
  .header-inner > div:first-child{
    grid-column:auto !important;
    grid-row:auto !important;
  }
}

/* Very narrow phones: phone stays usable without crushing language. */
@media (max-width:390px){
  .header-controls-row{
    grid-template-columns:auto auto 1fr !important;
  }

  .header-phone{
    display:none !important;
  }

  .header-language{
    grid-column:3 !important;
    justify-self:end !important;
  }
}


/* =========================================================
   STANDARD DESIGN2602 HEADER CLASSES
   Shared by:
   - sesame-ouvre-moi.ch
   - schluesseltresor-schweiz.ch

   Authoritative class names:
   .topbar
   .topbar .wrap
   .menu-left
   .brand
   .site-name
   .top-actions
   .pill
   .nav
   .navlinks
   ========================================================= */

/* Existing page offset now follows the standard fixed header. */
:root{
  --header-height:64px;
  --header-offset:116px;
}

body{
  padding-top:0 !important;
  scroll-padding-top:var(--header-offset);
}

/* ---------- DESKTOP TOPBAR ---------- */

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:2500;
  width:100%;
  background:#ffffff;
  border-bottom:1px solid var(--line);
  box-shadow:0 8px 20px rgba(15,23,42,.08);
}

.topbar .wrap{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  grid-template-areas:"menu brand actions";
  align-items:center;
  gap:12px;
  width:100%;
  max-width:1120px;
  min-height:64px;
  margin:0 auto;
  padding:10px 16px;
}

.menu-left{
  grid-area:menu;
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:flex-start;
  margin:0;
}

.brand{
  grid-area:brand;
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0;
  text-align:left;
}

.brand .flag-icon{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  justify-content:center;
}

.brand .flag-icon img{
  display:block;
  width:30px;
  height:30px;
  border-radius:6px;
  box-shadow:0 0 0 1px rgba(148,163,184,.45);
}

.brand > div{
  min-width:0;
}

.brand .site-name{
  display:block;
  margin:0;
  color:var(--ink);
  font-size:14px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:.1px;
  white-space:normal;
}

.brand small{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:12px;
  line-height:1.2;
  font-weight:650;
}

.top-actions{
  grid-area:actions;
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  margin:0;
}

.pill{
  display:inline-flex;
  min-height:38px;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--ink);
  background:#ffffff;
  font-weight:750;
  text-decoration:none;
  white-space:nowrap;
}

.pill:hover,
.pill:focus-visible{
  color:var(--ink);
  background:#f3f4f6;
}

.header-home-pill{
  width:40px;
  min-width:40px;
  padding:7px;
  font-size:1.35em;
  line-height:1;
}

.header-phone-pill{
  font-size:14px;
}

.top-actions select,
.top-actions #language_select{
  min-height:38px;
  margin:0;
  padding:7px 30px 7px 10px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#ffffff;
  color:var(--ink);
  font-size:14px;
  font-weight:700;
}

/* ---------- DESKTOP PAGE NAVIGATION ---------- */

.nav{
  margin-top:64px;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}

.nav .wrap{
  display:flex;
  width:100%;
  max-width:1120px;
  align-items:center;
  justify-content:flex-start;
  margin:0 auto;
  padding:10px 16px 12px;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.navlinks a{
  padding:7px 9px;
  border-radius:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.15;
  font-weight:800;
  text-decoration:none;
}

.navlinks a:hover,
.navlinks a:focus-visible{
  color:var(--ink);
  background:#f3f4f6;
}

/* ---------- MOBILE ---------- */

@media (max-width:640px){

  :root{
    --header-height:116px;
    --header-offset:158px;
  }

  .topbar .wrap{
    grid-template-columns:auto auto minmax(0,1fr) auto;
    grid-template-rows:auto auto;
    grid-template-areas:
      "brand brand brand brand"
      "menu home phone language";
    gap:9px 8px;
    min-height:0;
    padding:9px 12px 11px;
  }

  /* Row 1: flag + title + subtitle */
  .brand{
    grid-area:brand;
    width:100%;
    justify-content:center;
    text-align:left;
  }

  .brand .flag-icon img{
    width:34px;
    height:34px;
  }

  .brand .site-name{
    font-size:18px;
    line-height:1.08;
  }

  .brand small{
    display:block;
    margin-top:3px;
    font-size:12px;
    line-height:1.2;
  }

  /* Row 2: menu + home + phone + language */
  .menu-left{
    grid-area:menu;
    justify-content:flex-start;
  }

  .top-actions{
    display:contents;
  }

  .header-home-pill{
    grid-area:home;
    justify-self:start;
    width:40px;
    min-width:40px;
    min-height:40px;
    margin:0;
  }

  .header-phone-pill{
    grid-area:phone;
    justify-self:center;
    min-width:0;
    margin:0;
    padding:8px 10px;
    overflow:hidden;
    font-size:14px;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .top-actions select,
  .top-actions #language_select{
    grid-area:language;
    justify-self:end;
    width:auto;
    min-width:104px;
    max-width:122px;
    min-height:40px;
    margin:0;
    padding:7px 28px 7px 10px;
    font-size:14px;
    line-height:1.1;
    border-radius:12px;
  }

  /* Row 3: page links */
  .nav{
    margin-top:116px;
  }

  .nav .wrap{
    padding:8px 12px 9px;
  }

  .navlinks{
    width:100%;
    flex-wrap:nowrap;
    gap:0;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .navlinks::-webkit-scrollbar{
    display:none;
  }

  .navlinks a{
    flex:0 0 auto;
    padding:8px 12px;
    font-size:13px;
    white-space:nowrap;
  }
}

/* Very narrow phones: keep menu, home and language usable. */
@media (max-width:390px){

  .topbar .wrap{
    grid-template-columns:auto auto minmax(0,1fr);
    grid-template-areas:
      "brand brand brand"
      "menu home language";
  }

  .header-phone-pill{
    display:none;
  }
}
/* =========================================================
   FINAL AUTHORITATIVE MOBILE HEADER STANDARD — 2026-07-19
   Sesame / Schluesseltresor shared header

   Mobile row 1: flag + site title + subtitle
   Mobile row 2: menu + Home + telephone + language

   This block deliberately comes last so it overrides all older
   experimental header rules elsewhere in this stylesheet.
   ========================================================= */

@media (max-width:640px){

  :root{
    --header-height:116px !important;
    --header-offset:158px !important;
  }

  .topbar{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    z-index:2500 !important;
    width:100% !important;
    background:#ffffff !important;
  }

  .topbar .wrap{
    display:grid !important;
    grid-template-columns:auto auto minmax(0,1fr) auto !important;
    grid-template-rows:auto auto !important;
    grid-template-areas:
      "brand brand brand brand"
      "menu home phone language" !important;
    align-items:center !important;
    gap:9px 8px !important;
    width:100% !important;
    max-width:none !important;
    min-height:116px !important;
    margin:0 !important;
    padding:9px 12px 11px !important;
  }

  /* Row 1 */
  .topbar .brand{
    grid-area:brand !important;
    display:flex !important;
    width:100% !important;
    min-width:0 !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    margin:0 !important;
    text-align:left !important;
  }

  .topbar .brand .flag-icon{
    display:flex !important;
    flex:0 0 auto !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .topbar .brand .flag-icon img{
    display:block !important;
    width:34px !important;
    height:34px !important;
    max-height:none !important;
  }

  .topbar .brand > div{
    min-width:0 !important;
  }

  .topbar .brand .site-name{
    display:block !important;
    margin:0 !important;
    font-size:18px !important;
    line-height:1.08 !important;
    font-weight:850 !important;
    white-space:normal !important;
  }

  .topbar .brand small{
    display:block !important;
    margin-top:3px !important;
    font-size:12px !important;
    line-height:1.2 !important;
    white-space:normal !important;
  }

  /* Row 2 */
  .topbar .menu-left{
    grid-area:menu !important;
    display:flex !important;
    min-width:0 !important;
    align-items:center !important;
    justify-content:flex-start !important;
    margin:0 !important;
  }

  /* Children become grid items without changing the PHP. */
  .topbar .top-actions{
    display:contents !important;
  }

  .topbar .header-home-pill{
    grid-area:home !important;
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
    justify-self:start !important;
    width:40px !important;
    min-width:40px !important;
    min-height:40px !important;
    margin:0 !important;
    padding:7px !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:1.35em !important;
    line-height:1 !important;
  }

  .topbar .header-phone-pill{
    grid-area:phone !important;
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
    justify-self:center !important;
    align-items:center !important;
    justify-content:center !important;
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    min-height:40px !important;
    margin:0 !important;
    padding:8px 10px !important;
    overflow:visible !important;
    color:var(--ink) !important;
    background:#ffffff !important;
    font-size:14px !important;
    line-height:1 !important;
    font-weight:800 !important;
    text-decoration:none !important;
    text-overflow:clip !important;
    white-space:nowrap !important;
  }

  .topbar .top-actions select,
  .topbar .top-actions #language_select,
  .topbar .top-actions select[name="language_select"]{
    grid-area:language !important;
    display:block !important;
    visibility:visible !important;
    justify-self:end !important;
    width:auto !important;
    min-width:104px !important;
    max-width:122px !important;
    min-height:40px !important;
    margin:0 !important;
    padding:7px 28px 7px 10px !important;
    font-size:14px !important;
    line-height:1.1 !important;
    border-radius:12px !important;
  }

  .nav{
    margin-top:116px !important;
  }

  .nav .wrap{
    width:100% !important;
    max-width:none !important;
    padding:8px 12px 9px !important;
  }

  .navlinks{
    display:flex !important;
    width:100% !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    gap:0 !important;
    overflow-x:auto !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .navlinks::-webkit-scrollbar{
    display:none !important;
  }

  .navlinks a{
    flex:0 0 auto !important;
    padding:8px 12px !important;
    font-size:13px !important;
    white-space:nowrap !important;
  }
}

/* Narrow phones retain all four controls. */
@media (max-width:390px){

  .topbar .wrap{
    grid-template-columns:auto auto minmax(0,1fr) auto !important;
    grid-template-areas:
      "brand brand brand brand"
      "menu home phone language" !important;
    gap:8px 5px !important;
    padding-left:8px !important;
    padding-right:8px !important;
  }

  .topbar .header-home-pill{
    display:inline-flex !important;
    width:38px !important;
    min-width:38px !important;
    min-height:38px !important;
    padding:6px !important;
  }

  .topbar .header-phone-pill{
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
    min-height:38px !important;
    padding:7px 6px !important;
    font-size:12px !important;
    letter-spacing:-.15px !important;
  }

  .topbar .top-actions select,
  .topbar .top-actions #language_select,
  .topbar .top-actions select[name="language_select"]{
    min-width:92px !important;
    max-width:108px !important;
    min-height:38px !important;
    padding-left:7px !important;
    padding-right:23px !important;
    font-size:13px !important;
  }
}

@media (max-width:350px){

  .topbar .wrap{
    gap:6px 3px !important;
    padding-left:6px !important;
    padding-right:6px !important;
  }

  .topbar .header-home-pill{
    width:36px !important;
    min-width:36px !important;
  }

  .topbar .header-phone-pill{
    padding:7px 4px !important;
    font-size:11px !important;
    letter-spacing:-.25px !important;
  }

  .topbar .top-actions select,
  .topbar .top-actions #language_select,
  .topbar .top-actions select[name="language_select"]{
    min-width:84px !important;
    max-width:94px !important;
    padding-left:5px !important;
    padding-right:20px !important;
    font-size:12px !important;
  }
}

/* =========================================================
   FINAL PB2511 WIDTH SAFEGUARD
   No generic .hero full-bleed calculation is used on Sesame.
   ========================================================= */
.hero{
  max-width:none;
}

.pbox-hero,
.pbox-trust,
.pbox-fit,
.pbox-chooser,
.pbox-products,
.pbox-dark,
.pbox-disclosures{
  position:relative !important;
  left:50% !important;
  right:auto !important;
  width:100vw !important;
  max-width:none !important;
  margin-left:-50vw !important;
  margin-right:0 !important;
  transform:none !important;
  box-sizing:border-box !important;
}