:root{
  --bg:#0b1220;
  --card:#ffffff;
  --soft:#f6f7fb;
  --ink:#0e1525;
  --muted:#6b7280;
  --brand1:#0a8dea;
  --brand2:#5a2fba;
  --ring: rgba(10,141,234,.25);
  --radius:18px;
  --shadow: 0 12px 28px rgba(0,0,0,.12);
  --shadow2: 0 8px 20px rgba(0,0,0,.10);
  --max: 1180px;
  --ease: cubic-bezier(.2,.9,.2,1);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:#0b1220;
  line-height:1.35;
}

/* Better defaults */
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline: none;
  box-shadow: 0 0 0 6px var(--ring);
  border-radius: 14px;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.row{display:flex;gap:12px;align-items:center;justify-content:space-between}

/* Utility bar */
.utility{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.utility .left, .utility .right{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.social{display:flex;gap:10px;align-items:center}
.social a{display:grid;place-items:center;width:34px;height:34px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}
.social svg{width:18px;height:18px}
.pill{padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:12px;white-space:nowrap}

/* Header */
.header{
  position:sticky;top:0;z-index:30;
  background: linear-gradient(180deg, rgba(11,18,32,.92), rgba(11,18,32,.74));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header .top{display:flex;align-items:center;gap:14px;padding:14px 0}
.brand img{height:36px;width:auto}
.center{flex:1}
.search{
  display:flex;align-items:center;gap:10px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 12px;border-radius:999px;
}
.search svg{width:18px;height:18px;color:rgba(255,255,255,.9)}
.search input{flex:1;background:transparent;border:0;outline:none;color:#fff}
.search input::placeholder{color:rgba(255,255,255,.65)}
.kbd{font-size:12px;color:rgba(255,255,255,.75);padding:3px 8px;border:1px solid rgba(255,255,255,.18);border-radius:8px}
.actions{display:flex;align-items:center;gap:10px}
.iconbtn{
  display:grid;place-items:center;
  width:42px;height:42px;border-radius:14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;cursor:pointer;
  position:relative;
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
}
.iconbtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18)}
.iconbtn svg{width:20px;height:20px}
.iconbtn .count{
  position:absolute; transform: translate(14px,-14px);
  min-width:18px;height:18px;border-radius:999px;
  background: linear-gradient(135deg,var(--brand1),var(--brand2));
  color:#fff;font-size:11px;display:grid;place-items:center;
  padding:0 6px;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;cursor:pointer;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.small{padding:8px 10px;border-radius:12px;font-size:13px}
.btn.primary{
  border:0;
  background: linear-gradient(135deg,var(--brand1),var(--brand2));
  box-shadow: 0 10px 24px rgba(90,47,186,.22);
}
.btn.danger{
  background: rgba(239,68,68,.16);
  border:1px solid rgba(239,68,68,.35);
  color:#fff;
}
.navrow{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:0 0 14px}
.nav{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.nav a{color:rgba(255,255,255,.9);font-weight:700;font-size:14px;opacity:.95}
.nav a.active{color:#fff;text-decoration:underline;text-underline-offset:6px}
.navItem{position:relative}
.navItem > a{display:inline-flex;align-items:center;gap:6px}
.chev{width:14px;height:14px;opacity:.9}
.mega{
  position:absolute;left:0;top:38px;
  min-width:560px;
  background:#0f1a30;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:14px;
  display:none;
}
.navItem:hover .mega{display:grid}
.mega{grid-template-columns: repeat(4, 1fr); gap:12px}
.megaCol{padding:10px;border-radius:14px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.megaTitle{color:#fff;font-weight:900;font-size:12px;margin-bottom:8px;opacity:.95}
.megaCol a{display:block;color:rgba(255,255,255,.86);font-weight:700;font-size:13px;padding:7px 8px;border-radius:10px}
.megaCol a:hover{background:rgba(255,255,255,.08)}
.meta .badge{
  color:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

/* Hero / slider */
.hero{
  padding: 28px 0 8px;
  color:#fff;
  background:
    radial-gradient(900px 420px at 22% 20%, rgba(10,141,234,.28), rgba(11,18,32,0) 65%),
    radial-gradient(900px 420px at 78% 12%, rgba(90,47,186,.26), rgba(11,18,32,0) 60%),
    linear-gradient(180deg, rgba(11,18,32,1), rgba(11,18,32,.96));
}
.heroWrap{
  position:relative;
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero .slides{display:flex;transition: transform .45s var(--ease);will-change: transform}
.hero .slide{min-width:100%}
.hero .inner{display:grid;grid-template-columns: 1.2fr .8fr;gap:18px;align-items:center;padding:22px}
.hero h1{margin:10px 0 10px;font-size: clamp(28px, 3.2vw, 44px);line-height:1.08}
.hero p{margin:0;color: rgba(255,255,255,.85);font-weight:700;max-width: 52ch}
.hero .art{display:grid;place-items:center}
.hero .art img{width: 140px;height: 140px;filter: drop-shadow(0 16px 22px rgba(0,0,0,.28))}
.actions-row{display:flex;gap:10px;align-items:center}

.navArrows{
  position:absolute;inset:0;pointer-events:none;
}
.arrowBtn{
  pointer-events:auto;
  position:absolute;top:50%;transform: translateY(-50%);
  width:44px;height:44px;border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  color:#fff;
  cursor:pointer;
  display:grid;place-items:center;
  backdrop-filter: blur(10px);
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
}
.arrowBtn:hover{transform: translateY(-50%) scale(1.03); background: rgba(0,0,0,.28); border-color: rgba(255,255,255,.28)}
.arrowBtn.left{left: 14px}
.arrowBtn.right{right: 14px}
.arrowBtn span{font-size: 26px;line-height:1}

.dots{
  position:absolute;left:0;right:0;bottom: 14px;
  display:flex;gap:8px;justify-content:center;
}
.dot{
  width: 9px;height: 9px;border-radius: 999px;
  border:1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.22);
  cursor:pointer;
}
.dot.active{width: 22px; background: linear-gradient(135deg,var(--brand1),var(--brand2)); border-color: rgba(255,255,255,.0)}

/* Steps */
.steps{display:grid;grid-template-columns: repeat(6, 1fr);gap:10px;margin-top:14px}
.step{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px;box-shadow: var(--shadow2);padding:12px}
.step strong{display:block;font-weight:1000}
.step span{display:block;margin-top:6px;color:var(--muted);font-weight:700;font-size:13px}

/* Toast */
.toastHost{position:fixed;left:0;right:0;bottom:18px;display:flex;justify-content:center;pointer-events:none;z-index:120}
.toast{
  pointer-events:auto;
  background: rgba(15,26,48,.92);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 12px 14px;
  display:flex;gap:10px;align-items:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transform: translateY(10px);
  opacity:0;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.toast.show{opacity:1;transform: translateY(0)}
.toast .ticon{font-size:16px}
.toast .ttext{font-weight:900}

/* Sections */
.section{background:#fff}
.section.soft{background:var(--soft)}
.section .container{padding-top:34px;padding-bottom:34px}
.sectionTitle{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:14px}
.sectionTitle h3{margin:0;font-size:24px}
.hint{color:var(--muted);font-size:13px;font-weight:700}
.panel{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:var(--radius);box-shadow: var(--shadow2);padding:16px}
.steptitle{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  font-size:12px;font-weight:900;
  background: rgba(10,141,234,.12);
  border:1px solid rgba(10,141,234,.25);
  color:#083a62;
}
.small{font-size:13px;color:var(--muted);font-weight:700}

/* Cards & grids */
.catGrid{display:grid;grid-template-columns: repeat(4, 1fr);gap:14px}
.catCard{
  background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:22px;overflow:hidden;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.catCard:hover{transform: translateY(-2px); box-shadow: var(--shadow)}
.catCard .top{display:flex;align-items:center;justify-content:space-between;padding:14px 14px 0}
.catCard img{width:44px;height:44px}
.catCard .body{padding:12px 14px 14px}
.catCard h4{margin:0 0 6px;font-size:16px}
.catCard p{margin:0 0 10px;color:var(--muted);font-weight:700;font-size:13px}
.catCard .row{display:flex;align-items:center;justify-content:space-between}
.catCard .cta{font-weight:900;color:#0b4fa6}
.grid{display:grid;grid-template-columns: repeat(3, 1fr);gap:14px}
.pcard{
  background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:22px;overflow:hidden;
  box-shadow: var(--shadow2);
}
.pcard:hover{box-shadow: var(--shadow)}
.pimg{padding:16px;background:linear-gradient(135deg, rgba(10,141,234,.10), rgba(90,47,186,.08))}
.pimg img{width:56px;height:56px}
.pmeta{padding:14px}
.ptop{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.ptitle{font-weight:900}
.pprice{font-weight:900;color:#0b4fa6}
.psub{color:var(--muted);font-weight:700;font-size:13px;margin-top:6px}
.pbadges{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.tag{font-size:12px;font-weight:900;color:#0c3b6a;background:rgba(10,141,234,.12);border:1px solid rgba(10,141,234,.22);padding:6px 10px;border-radius:999px}

/* Drawer menu */
.mm-back{
  position:fixed;inset:0;background:rgba(0,0,0,.5);
  opacity:0;pointer-events:none;transition:opacity .15s ease;z-index:60;
}
.mm-back.open{opacity:1;pointer-events:auto}
.mm-drawer{
  position:fixed;right:-360px;top:0;height:100%;width:360px;max-width:88vw;
  background:#fff;color:var(--ink);
  border-left:1px solid rgba(0,0,0,.1);
  box-shadow: var(--shadow);
  transition:right .18s ease;
  z-index:70;
  display:flex;flex-direction:column;
}
.mm-drawer.open{right:0}
.mm-drawer header{display:flex;align-items:center;justify-content:space-between;padding:14px 14px;border-bottom:1px solid rgba(0,0,0,.08)}
.mm-title{font-weight:1000}
.mm-drawer .content{padding:14px;overflow:auto}
.mm-drawer .content a{display:block;padding:10px 12px;border-radius:14px;border:1px solid rgba(0,0,0,.08);margin-bottom:10px}
.mm-drawer .content a.btn{display:inline-flex;margin:0 0 12px}

/* Forms */
.field{margin:12px 0}
.field label{font-size:12px;font-weight:900;color:#111827;display:block;margin-bottom:6px}
.field input, .field textarea, .input{
  width:100%;padding:12px 12px;border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  outline:none;
}
.field input:focus, .field textarea:focus, .input:focus{box-shadow:0 0 0 6px var(--ring);border-color:rgba(10,141,234,.35)}
.two{display:grid;grid-template-columns: 1fr 1fr;gap:12px}

/* Cart / checkout */
.head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:14px}
.head h2{margin:0;font-size:28px}
.sub{margin:6px 0 0;color:var(--muted);font-weight:700}
.headActions{display:flex;gap:10px;flex-wrap:wrap}
.card{
  background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:22px;box-shadow: var(--shadow2);
  padding:16px;
}
.cartLayout, .checkoutLayout{display:grid;grid-template-columns: 1.55fr .85fr;gap:14px}
.cartItem{display:grid;grid-template-columns: 54px 1fr auto;gap:12px;align-items:center;padding:12px;border:1px solid rgba(0,0,0,.08);border-radius:18px;margin-bottom:10px}
.cartItem .ciImg{width:54px;height:54px;border-radius:16px;background:linear-gradient(135deg, rgba(10,141,234,.10), rgba(90,47,186,.08));display:grid;place-items:center}
.cartItem .ciImg svg{width:26px;height:26px;opacity:.9}
.cartItem .ciTitle{font-weight:1000}
.cartItem .ciMeta{color:var(--muted);font-weight:700;font-size:12px;margin-top:4px}
.qtyRow{display:flex;align-items:center;gap:10px;justify-content:flex-end}
.qtyRow button{width:34px;height:34px;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:#fff;cursor:pointer}
.qtyRow input{width:58px;text-align:center}
.sumRow{display:flex;justify-content:space-between;gap:10px;margin:10px 0}

/* Shipping method selector (checkout) */
.shipMethods{display:grid;gap:10px}
.shipOpt{display:flex;align-items:center;gap:10px;padding:10px 12px;border:1px solid rgba(0,0,0,.10);border-radius:14px;background:rgba(255,255,255,.55)}
.shipOpt input{accent-color:var(--brand2)}
.shipOpt b{font-size:14px;color:var(--ink)}
.shipOpt .small{margin-left:auto;color:var(--muted)}
.summary textarea{min-height:92px;resize:vertical}
.payRow{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

/* Trust / work / faq */
.trustGrid{display:grid;grid-template-columns: repeat(4, 1fr);gap:14px}
.trustCard{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:22px;box-shadow: var(--shadow2);padding:16px}
.ticon{font-size:22px}
.trustCard h4{margin:10px 0 6px}
.trustCard p{margin:0;color:var(--muted);font-weight:700;font-size:13px}
.workGrid{display:grid;grid-template-columns: repeat(3, 1fr);gap:14px}
.workCard{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:22px;box-shadow: var(--shadow2);overflow:hidden}
.workImg{height:160px;background:linear-gradient(135deg, rgba(10,141,234,.16), rgba(90,47,186,.12))}
.workBody{padding:14px}
.workBody h4{margin:0 0 6px}
.workBody p{margin:0;color:var(--muted);font-weight:700;font-size:13px}
.faqGrid{display:grid;grid-template-columns: 1fr 1fr;gap:12px}
.faq{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px;padding:12px 14px}
.faq summary{font-weight:1000;cursor:pointer}
.faq p{margin:10px 0 0;color:var(--muted);font-weight:700;font-size:13px}

/* Footer */
.footer{background:#0b1220;color:#fff}
.footer .container{padding-top:30px;padding-bottom:30px}
.footer a{color:rgba(255,255,255,.9)}
.footer h4{margin:0 0 10px}
.footer .cols{display:grid;grid-template-columns: 1.2fr 1fr 1fr 1fr;gap:14px}
.footer .small{color:rgba(255,255,255,.75)}
.footer .social a{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}

/* Responsive */
.mobile-toggle{display:none}
@media (max-width: 980px){
  .mega{min-width: 520px}
  .catGrid{grid-template-columns: repeat(2, 1fr)}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .trustGrid{grid-template-columns: repeat(2, 1fr)}
  .workGrid{grid-template-columns: 1fr}
  .steps{grid-template-columns: repeat(3, 1fr)}
}
@media (max-width: 760px){
  .utility .right{display:none}
  .center{display:none}
  .navrow .meta{display:none}
  .nav{display:none}
  .mobile-toggle{display:grid}
  .brand img{height:34px}
  .sectionTitle{flex-direction:column;align-items:flex-start}
  .catGrid{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .two{grid-template-columns: 1fr}
  .cartLayout, .checkoutLayout{grid-template-columns: 1fr}
  .footer .cols{grid-template-columns: 1fr 1fr;gap:12px}
  .hero .inner{grid-template-columns: 1fr; padding: 16px}
  .hero .art{display:none}
  .arrowBtn{display:none}
  .steps{grid-template-columns: repeat(2, 1fr)}
}

@media (max-width: 420px){
  .steps{grid-template-columns: 1fr}
}



/* ================================
   Web Print Plus — Elegant Gold Theme (v3)
   ================================ */

:root{
  --bg:#0b0b0c;
  --surface:#0f0f12;
  --soft:#f6f3ec;
  --card:#ffffff;
  --ink:#111114;
  --muted:#6a6a74;

  /* Brand (from logo) */
  --brand1:#c0ac75;   /* gold */
  --brand2:#f2e7c7;   /* light gold */
  --ring: rgba(192,172,117,.28);

  --border: rgba(192,172,117,.22);
  --shadow: 0 18px 44px rgba(0,0,0,.14);
  --shadow2: 0 10px 24px rgba(0,0,0,.12);
}

/* Global */
body{
  background: var(--soft);
  color: var(--ink);
}

a{color:inherit}
.kbd{background:rgba(0,0,0,.06); color:rgba(0,0,0,.65); border:1px solid rgba(0,0,0,.08)}

/* Utility bar */
.utility{
  background: radial-gradient(1100px 220px at 40% 0%, rgba(192,172,117,.18), transparent 60%),
              linear-gradient(180deg, rgba(15,15,18,.98), rgba(12,12,14,.98));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility .pill{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
}
.utility .pill b{color:#fff}
.utility .social a{
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.utility .social a:hover{
  border-color: rgba(192,172,117,.55);
  box-shadow: 0 0 0 4px rgba(192,172,117,.12);
}

/* Header + nav */
.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,13,15,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header .top{padding: 14px 0}
.header .brand img{
  height: 44px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.header .navrow{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 10px 0 12px;
}
.header .meta .badge{
  background: rgba(192,172,117,.14);
  border: 1px solid rgba(192,172,117,.28);
  color: rgba(255,255,255,.92);
}

.nav a, .nav .navItem > a{
  color: rgba(255,255,255,.90) !important;
  position: relative;
}
.nav a:hover, .nav .navItem > a:hover{
  color: #fff !important;
}
.nav a::after{
  content:"";
  position:absolute;
  left:10px; right:10px; bottom:-10px;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--brand1), transparent);
  opacity:0;
  transform: translateY(4px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav a:hover::after{opacity:1; transform: translateY(0)}

.mega{
  background: rgba(15,15,18,.98);
  border: 1px solid rgba(192,172,117,.26);
  box-shadow: 0 22px 54px rgba(0,0,0,.35);
}
.mega a{
  color: rgba(255,255,255,.86) !important;
  border-radius: 10px;
}
.mega a:hover{
  background: rgba(192,172,117,.12);
  color:#fff !important;
}
.megaTitle{
  color: rgba(242,231,199,.92);
}

/* Search (header) */
.header .search{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.header .search input{color:#fff}
.header .search input::placeholder{color: rgba(255,255,255,.55)}

/* Icon buttons in header */
.header .iconbtn{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
}
.header .iconbtn:hover{
  border-color: rgba(192,172,117,.55);
  box-shadow: 0 0 0 4px rgba(192,172,117,.12);
}

/* Buttons (site-wide) */
.btn{
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow2);
}
.btn:hover{
  background: #faf7f0;
  transform: translateY(-1px);
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color: #0d0d0f;
  border: 1px solid rgba(0,0,0,.14);
}
.btn.primary:hover{
  box-shadow: 0 18px 40px rgba(192,172,117,.24);
}

/* Ensure buttons look right on dark header */
.header .btn{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  box-shadow:none;
}
.header .btn.primary{
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color:#0b0b0c;
  border-color: rgba(0,0,0,.20);
}

/* Cards + panels */
.card, .panel, .catCard, .productCard{
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.catCard:hover, .productCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0,0,0,.12);
}

/* Badges */
.badge{
  background: rgba(192,172,117,.16);
  border: 1px solid rgba(192,172,117,.30);
  color: #3b3321;
}

/* HERO */
.hero{
  background:
    radial-gradient(1200px 520px at 28% 0%, rgba(192,172,117,.22), transparent 60%),
    radial-gradient(900px 420px at 92% 10%, rgba(242,231,199,.14), transparent 55%),
    linear-gradient(180deg, rgba(13,13,15,1), rgba(13,13,15,1));
  color:#fff;
}
.hero .heroWrap{
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.hero h1{
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
}
.hero p{color: rgba(255,255,255,.78); font-size: 16.5px}
.hero .badge{
  background: rgba(192,172,117,.18);
  border: 1px solid rgba(192,172,117,.34);
  color: rgba(255,255,255,.92);
}
.hero .art{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
}
.hero .art img{
  width: 100%;
  max-width: 360px;
  height:auto;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.35));
}
.hero .dots button{
  background: rgba(255,255,255,.22);
}
.hero .dots button.active{
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
}

/* Section titles */
.sectionTitle h3{
  letter-spacing: -0.01em;
}
.sectionTitle .hint{
  color: rgba(0,0,0,.55);
}

/* Footer */
.footer{
  background: #0d0d0f;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer a{color: rgba(255,255,255,.88)}
.footer a:hover{color:#fff}
.footer .social a{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
}
.footer .social a:hover{
  border-color: rgba(192,172,117,.55);
  box-shadow: 0 0 0 4px rgba(192,172,117,.12);
}

/* Mobile nav polish */
@media (max-width: 900px){
  .header{background: rgba(13,13,15,.92)}
  .header .brand img{height: 40px}
}


.header .brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.header .brand .tagline{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,.62);
  font-weight:800;
  white-space:nowrap;
}
@media (max-width: 980px){
  .header .brand .tagline{display:none}
}

.heroTrust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
  color: rgba(255,255,255,.78);
  font-weight:700;
  font-size:13px;
}
.heroTrust span{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.nav a.active{
  color:#fff !important;
}
.nav a.active::after{
  opacity:1;
  transform: translateY(0);
}


/* ---------------------------
   Product page — clean layout
----------------------------*/
.head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.head h2{margin:0;color:var(--ink)}
.head .sub{margin:8px 0 0;color:rgba(0,0,0,.62);font-weight:700}
.actions-row{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

.nextsteps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.stepcard{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow2);
}
.stepdot{
  width:26px;height:26px;border-radius:999px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, #c0ac75, #8f7a41);
  color:#121212;
  font-weight:900;
  flex:0 0 auto;
}
.steplbl b{display:block;font-size:13px}
.steplbl span{display:block;font-size:12px;color:rgba(0,0,0,.60);font-weight:800;margin-top:2px}

.productLayout{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.mediaCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.gallery{padding:14px}
.mainImg{
  border-radius:16px;
  overflow:hidden;
  background: linear-gradient(135deg, rgba(0,0,0,.08), rgba(192,172,117,.18));
  aspect-ratio: 16/9;
  display:grid;
  place-items:center;
}
.mainImg.noimg::before{
  content:"WPP";
  font-weight:1000;
  letter-spacing:.12em;
  color: rgba(0,0,0,.38);
  font-size:34px;
}
.mainImg img{width:100%;height:100%;object-fit:cover}
.thumbGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.thumb{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
  aspect-ratio: 1/1;
}
.thumb img{width:100%;height:100%;object-fit:cover}

.benefits{
  border-top:1px solid rgba(0,0,0,.06);
  padding:12px 14px 14px;
  display:grid;
  gap:10px;
}
.benefit{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.benefit b{font-size:13px}
.benefit span{color:rgba(0,0,0,.62);font-weight:750;font-size:13px}

.steptitle{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.steptitle h3{margin:0}
.steptitle p{margin:6px 0 0;color:rgba(0,0,0,.62);font-weight:700}

.option-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
.opt{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:12px;
  background: rgba(0,0,0,.02);
}
.opt h4{margin:0 0 10px}
.calcRow{display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:10px}
.field{display:grid;gap:6px}
.label{font-weight:900;color:rgba(0,0,0,.72);font-size:12px}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.help{margin-top:8px;color:rgba(0,0,0,.56);font-weight:700;font-size:12px}

.chips{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  border-radius:999px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), border-color .15s var(--ease);
}
.chip:hover{transform: translateY(-1px);border-color: rgba(192,172,117,.55); box-shadow: 0 0 0 4px rgba(192,172,117,.14)}
.chip.active{
  border-color: rgba(192,172,117,.85);
  box-shadow: 0 0 0 4px rgba(192,172,117,.18);
  background: linear-gradient(135deg, rgba(192,172,117,.20), rgba(255,255,255,.92));
}

.matrix{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}
.matrix th, .matrix td{padding:10px 12px;text-align:left;border-bottom:1px solid rgba(0,0,0,.06);font-weight:800}
.matrix th{background:rgba(0,0,0,.03)}
.matrix tr:last-child td{border-bottom:0}
.matrix .quickAdd{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  cursor:pointer;
  font-weight:900;
}
.matrix .quickAdd:hover{border-color: rgba(192,172,117,.55); box-shadow: 0 0 0 4px rgba(192,172,117,.14)}

.softline{
  height:1px;
  background: rgba(0,0,0,.08);
  margin:14px 0;
}

.form-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}

.faq details{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:10px 12px;
  background: rgba(0,0,0,.02);
  margin-top:10px;
}
.faq summary{cursor:pointer;font-weight:1000}
.faq p{margin:8px 0 0;color:rgba(0,0,0,.62);font-weight:700}

.related{margin-top:16px}
.relatedGrid{display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:12px;margin-top:10px}
.relatedGrid a{
  display:block;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
  padding:12px;
}
.relatedGrid a:hover{border-color: rgba(192,172,117,.55); box-shadow: 0 0 0 4px rgba(192,172,117,.12)}
.relatedGrid .rt{font-weight:1000}
.relatedGrid .rs{color:rgba(0,0,0,.60);font-weight:800;font-size:13px;margin-top:4px}

.stickyRight{position:sticky;top:110px}
.quoteBox{
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  border:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  padding:14px;
}
.quoteTop{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.quoteTop h3{margin:0}
.bigPrice{font-size:34px;font-weight:1100;letter-spacing:-0.02em;margin-top:4px}
.perItem{color:rgba(0,0,0,.62);font-weight:800;margin-top:4px}
.valid{font-size:12px;font-weight:950;color:rgba(0,0,0,.62);background:rgba(0,0,0,.04);border:1px solid rgba(0,0,0,.08);padding:8px 10px;border-radius:999px}
.sumrow{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:10px;color:rgba(0,0,0,.72);font-weight:950}
.pmini{margin-top:10px;color:rgba(0,0,0,.56);font-weight:800;font-size:12px}

.btn.ghost{
  background: rgba(0,0,0,.04);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.10);
}
.btn.ghost:hover{box-shadow: 0 0 0 4px rgba(192,172,117,.14)}

@media (max-width: 980px){
  .head{flex-direction:column}
  .actions-row{justify-content:flex-start}
  .nextsteps{grid-template-columns: repeat(2, minmax(0,1fr))}
  .productLayout{grid-template-columns: 1fr}
  .stickyRight{position:relative;top:auto}
  .calcRow{grid-template-columns: 1fr}
  .option-grid{grid-template-columns: 1fr}
  .relatedGrid{grid-template-columns: 1fr}
}


/* ---- Category pages clarity + anchor offset ---- */
html{scroll-padding-top:120px}
.categoryPage{background: radial-gradient(1200px 600px at 20% 0%, rgba(196,168,98,.12), transparent 60%),
                     radial-gradient(900px 520px at 90% 10%, rgba(196,168,98,.08), transparent 55%),
                     #f7f5f0;}
.categoryPage .container{padding-top:22px;padding-bottom:44px}
.categoryBrowse{
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  margin-bottom: 18px;
}
.categoryBrowse .sectionTitle h3{font-size:26px}
.categoryBrowse .panel{
  background: rgba(11,18,32,.06);
  border: 1px solid rgba(196,168,98,.30);
  box-shadow:none;
}
.categoryBrowse .badge{
  background: rgba(196,168,98,.12);
  border: 1px solid rgba(196,168,98,.35);
  color: #1a1a1a;
}
.categoryDivider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.10), transparent);
  margin: 10px 0 22px;
}
.catCard{
  border-color: rgba(0,0,0,.10);
}
.catCard:hover{transform: translateY(-3px); box-shadow: 0 18px 55px rgba(11,18,32,.14)}
.catCard .cta{color: var(--brand)}



/* =========================
   Vehicle Wrap configurator
   ========================= */
.cardGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 900px){
  .cardGrid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 420px){
  .cardGrid{ grid-template-columns:1fr; }
}
.pickCard{
  border:1px solid rgba(12,18,28,.12);
  background:#fff;
  border-radius:16px;
  padding:12px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  gap:10px;
  align-items:center;
}
.pickCard:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.pickCard.selected{
  border-color: rgba(193,155,73,.75);
  box-shadow:0 12px 30px rgba(193,155,73,.18);
}
.pickCard .thumb{
  width:54px; height:40px;
  display:grid; place-items:center;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(193,155,73,.10), rgba(193,155,73,.04));
  color:#0b0f16;
  flex:0 0 auto;
}
.pickCard .thumb img{ width:100%; height:100%; object-fit:contain; filter:contrast(1.05); }
.pickCard .meta{ min-width:0; }
.pickCard .t{ font-weight:800; font-size:14px; margin:0; color:var(--ink); line-height:1.15; }
.pickCard .d{ font-size:12px; color:var(--muted); margin-top:4px; line-height:1.25; }
.sep{ height:1px; background:rgba(12,18,28,.08); margin:14px 0; }

/* --- Vehicle Wrap premium enhancements --- */
.ba{margin-top:12px}
.baFrame{position:relative; border-radius:16px; overflow:hidden; background:#fff; border:1px solid rgba(0,0,0,.08); box-shadow:0 10px 30px rgba(0,0,0,.08)}
.baFrame img{display:block; width:100%; height:auto}
.baAfter{position:absolute; left:0; top:0; height:100%; width:58%; overflow:hidden}
.baLabel{position:absolute; top:12px; padding:8px 12px; border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.02em; background:rgba(255,255,255,.88); border:1px solid rgba(0,0,0,.08); color:#0f0f0f}
.baL{left:12px}
.baR{right:12px}
.baRange{width:100%; margin-top:10px}
.baHint{margin-top:6px}

.pickCard{position:relative}
.pickBadge{position:absolute; right:12px; top:12px; padding:6px 10px; border-radius:999px; font-size:11px; font-weight:800; background:#111; color:#f6e6b0; border:1px solid rgba(0,0,0,.12)}

/* tighter chips on small screens */
@media (max-width: 640px){
  .baLabel{top:10px}
  .pickBadge{right:10px; top:10px}
}
.wrapMock{width:100%; height:auto; display:block; border-radius:16px; border:1px solid rgba(0,0,0,.08); background:#fff; box-shadow:0 10px 30px rgba(0,0,0,.08); margin-bottom:12px}


/* ============================= */
/* Mega Menu UX Improvements */
/* ============================= */

/* Larger click targets */
.mega a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  line-height:1.2;
}

.mega a:hover,
.mega a:focus-visible{
  background: rgba(194,164,98,.16);
  outline:none;
}

.megaCol{
  gap:6px;
}

/* Hover bridge */
.navItem{
  position:relative;
}

.navItem::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}

/* Click-to-open behavior */
.navItem .mega{ display:none; }
.navItem.open .mega{ display:block; }

.pplaceholder{font-weight:950;color:#fff;opacity:.7}


/* ===== Web Print Plus: Hero Offer Slider ===== */
.hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left{ flex:1; }
.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.offer-slider{
  position:relative;
  width:100%;
  max-width:400px;
}

.offer-slide{
  background:#ffffff;
  border-radius:20px;
  padding:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  display:none;
  transition:opacity .5s ease;
}

.offer-slide.active{ display:block; }

.offer-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#C1AB73;
  margin-bottom:6px;
}

.offer-slide h3{
  margin:10px 0;
  font-size:22px;
  color:#111;
}

.offer-slide p{
  margin:0 0 12px;
  color:#555;
}

.offer-price{
  font-size:20px;
  font-weight:700;
  color:#000;
}

.slider-dots{
  text-align:center;
  margin-top:18px;
}

.slider-dots .dot{
  height:8px;
  width:8px;
  margin:0 5px;
  background:#ddd;
  border-radius:50%;
  display:inline-block;
  cursor:pointer;
}

.slider-dots .dot.active{ background:#C1AB73; }

@media(max-width:900px){
  .hero-inner{
    flex-direction:column;
    text-align:center;
  }
  .hero-right{ width:100%; }
}

