.nav-actions{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.site-nav{
  display:grid;
  grid-template-columns:42px 1fr 42px;
  grid-template-areas:
    "menu logo cart"
    "search search search";
  align-items:center;
  gap:.55rem .75rem;
  padding:.8rem 1rem .9rem;
  border-bottom:1px solid var(--j-border,#1e1e35);
  background:rgba(9,9,15,.97);
  backdrop-filter:blur(10px);
  position:sticky;
  top:0;
  z-index:1000;
}
.site-nav-logo{
  grid-area:logo;
  justify-self:center;
  font-family:'Orbitron',system-ui,sans-serif;
  font-size:1rem;
  font-weight:900;
  color:var(--j-accent,#7B5CF5);
  letter-spacing:2px;
  text-decoration:none;
  white-space:nowrap;
}
.site-nav-logo span{color:var(--j-white,#e8e8f5)}
.site-nav-menu{grid-area:menu;justify-self:start}
.site-nav-cart{grid-area:cart;justify-self:end}
.site-nav-search{
  grid-area:search;
  justify-self:center;
  width:min(100%,460px);
  display:flex;
}
.site-nav-search input{
  width:100%;
  height:40px;
  border:1px solid var(--j-accent,#7B5CF5);
  border-right:0;
  background:transparent;
  color:var(--j-accent,#7B5CF5);
  border-radius:9px 0 0 9px;
  padding:0 .9rem;
  font:inherit;
  outline:none;
}
.site-nav-search input::placeholder{
  color:var(--j-accent,#7B5CF5);
  opacity:.82;
  font-style:italic;
}
.site-nav-search button{
  width:48px;
  height:40px;
  border:1px solid var(--j-accent,#7B5CF5);
  background:var(--j-accent,#7B5CF5);
  color:#fff;
  border-radius:0 9px 9px 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  cursor:pointer;
}
.site-nav-search button i{font-size:1.35rem}
.announcement-bar{
  height:36px;
  border-top:0.5px solid rgba(123,92,245,.22);
  border-bottom:0.5px solid var(--j-border,#1e1e35);
  background:#0d0a1e;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.announcement-track{
  display:flex;
  align-items:center;
  gap:2.4rem;
  white-space:nowrap;
  min-width:max-content;
  animation:announcement-scroll 28s linear infinite;
}
.announcement-item{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:var(--j-white,#e8e8f5);
  font-size:12px;
  letter-spacing:.4px;
}
.announcement-item::before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--j-accent,#7B5CF5);
  box-shadow:0 0 12px var(--j-accent,#7B5CF5);
}
@keyframes announcement-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.jtech-page-back-wrap{
  padding:.75rem 1.5rem 0;
}
.jtech-page-back{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  color:var(--j-muted,#7070a0);
  text-decoration:none;
  font-weight:700;
  transition:color .2s;
}
.jtech-page-back:hover{color:var(--j-accent,#7B5CF5)}
.jtech-page-back i{font-size:1.1rem}
.jtech-cart-toggle{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--j-border,#1e1e35);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  color:var(--j-white,#e8e8f5);
  cursor:pointer;
  transition:border-color .2s, color .2s, background .2s, transform .2s;
}
.jtech-cart-toggle:hover{
  border-color:var(--j-accent,#7B5CF5);
  color:var(--j-accent,#7B5CF5);
  background:rgba(123,92,245,.08);
}
.jtech-cart-toggle i{font-size:1.15rem}
.jtech-cart-count{
  position:absolute;
  top:-7px;
  right:-7px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  display:none;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--j-accent,#7B5CF5);
  color:#fff;
  font-size:11px;
  font-weight:800;
  line-height:1;
}
.jtech-cart-count.is-visible{display:flex}
.jtech-cart-overlay{
  position:fixed;
  inset:0;
  z-index:9998;
  background:rgba(0,0,0,.58);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
.jtech-cart-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}
.jtech-cart-drawer{
  position:fixed;
  top:0;
  right:0;
  z-index:9999;
  width:min(520px,100vw);
  height:100vh;
  background:var(--j-dark,#09090f);
  color:var(--j-white,#e8e8f5);
  border-left:1px solid var(--j-border,#1e1e35);
  box-shadow:-22px 0 60px rgba(0,0,0,.35);
  transform:translateX(100%);
  transition:transform .28s ease;
  display:flex;
  flex-direction:column;
}
.jtech-cart-drawer.is-open{transform:translateX(0)}
.jtech-menu-drawer{
  position:fixed;
  top:0;
  left:0;
  z-index:9999;
  width:min(420px,100vw);
  height:100vh;
  background:var(--j-dark,#09090f);
  color:var(--j-white,#e8e8f5);
  border-right:1px solid var(--j-border,#1e1e35);
  box-shadow:22px 0 60px rgba(0,0,0,.35);
  transform:translateX(-100%);
  transition:transform .28s ease;
  display:flex;
  flex-direction:column;
}
.jtech-menu-drawer.is-open{transform:translateX(0)}
.jtech-menu-head{
  min-height:74px;
  padding:1rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--j-border,#1e1e35);
}
.jtech-menu-title{
  font-family:'Orbitron',system-ui,sans-serif;
  font-size:1rem;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.jtech-menu-body{
  flex:1;
  overflow:auto;
  padding:1.1rem;
}
.jtech-menu-list{
  display:grid;
  gap:.7rem;
}
.jtech-menu-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.85rem;
  border:1px solid var(--j-border,#1e1e35);
  border-radius:14px;
  padding:1rem;
  background:rgba(255,255,255,.03);
  color:var(--j-white,#e8e8f5);
  text-decoration:none;
  font-weight:800;
  text-align:left;
  cursor:pointer;
  transition:border-color .2s, color .2s, background .2s;
}
.jtech-menu-item:hover{
  border-color:var(--j-accent,#7B5CF5);
  color:var(--j-accent,#7B5CF5);
  background:rgba(123,92,245,.08);
}
.jtech-menu-item span{
  color:var(--j-muted,#7070a0);
  font-size:.78rem;
  font-weight:600;
}
.jtech-menu-empty{
  color:var(--j-muted,#7070a0);
  border:1px dashed var(--j-border,#1e1e35);
  border-radius:14px;
  padding:1rem;
}
.jtech-cart-head{
  min-height:74px;
  padding:1rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--j-border,#1e1e35);
}
.jtech-cart-title{
  font-family:'Orbitron',system-ui,sans-serif;
  font-size:1.2rem;
  font-weight:900;
  letter-spacing:1px;
}
.jtech-cart-back{
  border:0;
  background:transparent;
  color:var(--j-muted,#7070a0);
  display:flex;
  align-items:center;
  gap:.4rem;
  font:inherit;
  cursor:pointer;
  padding:.45rem 0;
  transition:color .2s;
}
.jtech-cart-back:hover{color:var(--j-accent,#7B5CF5)}
.jtech-cart-body{
  flex:1;
  overflow:auto;
  padding:1.25rem;
}
.jtech-cart-empty{
  min-height:65vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--j-muted,#7070a0);
  gap:.9rem;
}
.jtech-cart-empty h3{
  color:var(--j-white,#e8e8f5);
  font-size:1.35rem;
  line-height:1.15;
  text-transform:uppercase;
}
.jtech-cart-continue{
  margin-top:.5rem;
  width:min(290px,100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid var(--j-border,#1e1e35);
  border-radius:12px;
  padding:.9rem 1rem;
  background:rgba(255,255,255,.03);
  color:var(--j-white,#e8e8f5);
  cursor:pointer;
}
.jtech-cart-list{display:grid;gap:1rem}
.jtech-cart-item{
  display:grid;
  grid-template-columns:82px 1fr;
  gap:.9rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--j-border,#1e1e35);
}
.jtech-cart-product-image{
  display:block;
  width:82px;
  height:82px;
  border-radius:12px;
  overflow:hidden;
}
.jtech-cart-item img{
  width:82px;
  height:82px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--j-border,#1e1e35);
  background:#111;
}
.jtech-cart-name{
  display:inline-block;
  color:var(--j-white,#e8e8f5);
  text-decoration:none;
  font-weight:800;
  line-height:1.25;
  margin-bottom:.25rem;
  transition:color .2s;
}
.jtech-cart-name:hover{color:var(--j-accent,#7B5CF5)}
.jtech-cart-meta{color:var(--j-muted,#7070a0);font-size:.82rem;line-height:1.45}
.jtech-cart-row{
  margin-top:.75rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
}
.jtech-cart-qty{
  display:flex;
  align-items:center;
  border:1px solid var(--j-border,#1e1e35);
  border-radius:10px;
  overflow:hidden;
}
.jtech-cart-qty button,
.jtech-cart-remove{
  border:0;
  background:transparent;
  color:var(--j-white,#e8e8f5);
  cursor:pointer;
}
.jtech-cart-qty button{
  width:32px;
  height:32px;
  font-size:1rem;
}
.jtech-cart-qty span{
  min-width:34px;
  text-align:center;
  font-weight:800;
}
.jtech-cart-remove{
  color:var(--j-muted,#7070a0);
  font-size:.82rem;
}
.jtech-cart-remove:hover{color:#ff6b6b}
.jtech-cart-foot{
  border-top:1px solid var(--j-border,#1e1e35);
  padding:1rem 1.25rem 1.25rem;
  display:grid;
  gap:.9rem;
}
.jtech-cart-summary{
  display:grid;
  gap:.35rem;
}
.jtech-cart-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:900;
}
.jtech-cart-total strong{color:var(--j-accent,#7B5CF5);font-size:1.15rem}
.jtech-cart-delivery{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--j-muted,#7070a0);
  font-size:.95rem;
  font-weight:800;
}
.jtech-cart-delivery strong{
  color:var(--j-white,#e8e8f5);
  font-size:1rem;
}
.jtech-cart-checkout{
  width:100%;
  border:0;
  border-radius:14px;
  padding:1rem;
  background:var(--j-accent,#7B5CF5);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.jtech-cart-checkout:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.add-cart-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  width:100%;
  padding:1rem;
  margin-bottom:.75rem;
  background:rgba(255,255,255,.03);
  color:var(--j-white,#e8e8f5);
  border:1px solid var(--j-border,#1e1e35);
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
  transition:border-color .2s, color .2s, transform .2s;
}
.add-cart-btn:hover{
  border-color:var(--j-accent,#7B5CF5);
  color:var(--j-accent,#7B5CF5);
  transform:translateY(-2px);
}
body.jtech-cart-locked{overflow:hidden}
@media(max-width:640px){
  .nav-actions{gap:.55rem}
  .site-nav{
    grid-template-columns:38px 1fr 38px;
    padding:.65rem .6rem .7rem;
    gap:.5rem;
  }
  .site-nav-logo{
    font-size:.82rem;
    letter-spacing:1.25px;
  }
  .site-nav-search{width:min(100%,300px)}
  .announcement-bar{height:34px}
  .announcement-track{gap:1.8rem;animation-duration:24s}
  .announcement-item{font-size:11px}
  .jtech-page-back-wrap{
    padding:.65rem 1rem 0;
  }
  .jtech-cart-toggle{width:38px;height:38px;border-radius:10px}
  .jtech-cart-drawer{width:100vw}
  .jtech-menu-drawer{width:100vw}
  .jtech-cart-head{min-height:66px}
  .jtech-menu-head{min-height:66px}
  .jtech-cart-item{grid-template-columns:72px 1fr}
  .jtech-cart-product-image{width:72px;height:72px}
  .jtech-cart-item img{width:72px;height:72px}
}
