:root{
  --lpc-h-navy:#0F1F5C;
  --lpc-h-blue:#2563EB;
  --lpc-h-blue-soft:#EFF6FF;
  --lpc-h-orange:#F97316;
  --lpc-h-amber:#FBBF24;
  --lpc-h-ink:#0F172A;
  --lpc-h-muted:#64748B;
  --lpc-h-border:#E2E8F0;
  --lpc-h-white:#FFFFFF;
  --lpc-h-shadow:0 10px 30px rgba(15,23,42,.08);
  --lpc-h-font:"DM Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
}

html{
  scroll-behavior:smooth;
}

body.lpc-customer-body{
  margin:0;
  padding-top:64px;
  font-family:var(--lpc-h-font);
  overflow-x:hidden;
  background:#fff;
  color:var(--lpc-h-ink);
}

.lpc-site-header,
.lpc-site-header *,
.lpc-site-header *::before,
.lpc-site-header *::after{
  box-sizing:border-box;
}

.lpc-site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:3000;
  width:100%;
  height:64px;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid rgba(226,232,240,.95);
  box-shadow:0 1px 0 rgba(15,23,42,.03);
  font-family:var(--lpc-h-font);
}

.lpc-header-wrap{
  width:100%;
  max-width:none;
  height:64px;
  margin:0;
  padding:0 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.lpc-brand{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
  text-decoration:none;
  min-width:0;
}

.lpc-brand img{
  display:block;
  height:42px;
  width:auto;
  max-width:230px;
  object-fit:contain;
}

.lpc-navbar{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  margin-left:auto;
  flex:1;
}

.lpc-nav-link{
  min-height:40px;
  padding:10px 12px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:#2F3341;
  text-decoration:none;
  font-family:var(--lpc-h-font);
  font-size:14px;
  font-weight:800;
  line-height:1;
  letter-spacing:-.01em;
  white-space:nowrap;
  border:0;
  background:transparent;
  cursor:pointer;
  transition:background .16s ease,color .16s ease,transform .16s ease;
}

.lpc-nav-link:hover,
.lpc-nav-link:focus,
.lpc-nav-link.is-active,
.lpc-nav-dropdown.is-active > .lpc-nav-link{
  color:var(--lpc-h-blue);
  background:var(--lpc-h-blue-soft);
  text-decoration:none;
  outline:none;
}

.lpc-nav-dropdown{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.lpc-dropdown-toggle i{
  font-size:13px;
  transition:transform .16s ease;
}

.lpc-nav-dropdown.is-open .lpc-dropdown-toggle i{
  transform:rotate(180deg);
}

.lpc-dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:220px;
  padding:8px;
  border:1px solid var(--lpc-h-border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--lpc-h-shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity .16s ease,visibility .16s ease,transform .16s ease;
}

.lpc-nav-dropdown.is-open .lpc-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.lpc-dropdown-menu a{
  display:flex;
  align-items:center;
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  color:#2F3341;
  text-decoration:none;
  font-size:13.5px;
  font-weight:800;
  line-height:1.2;
  white-space:nowrap;
}

.lpc-dropdown-menu a:hover,
.lpc-dropdown-menu a:focus,
.lpc-dropdown-menu a.is-active{
  background:var(--lpc-h-blue-soft);
  color:var(--lpc-h-blue);
  text-decoration:none;
  outline:none;
}

.lpc-header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:8px;
}

.lpc-header-btn{
  min-height:40px;
  padding:10px 17px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  transition:background .16s ease,color .16s ease,border-color .16s ease,transform .16s ease;
}

.lpc-header-btn:hover,
.lpc-header-btn:focus{
  text-decoration:none;
  transform:translateY(-1px);
  outline:none;
}

.lpc-header-btn-outline{
  color:var(--lpc-h-blue);
  background:#fff;
  border:1.5px solid var(--lpc-h-blue);
}

.lpc-header-btn-outline:hover,
.lpc-header-btn-outline:focus,
.lpc-header-btn-outline.is-active{
  color:#1D4ED8;
  border-color:#1D4ED8;
  background:var(--lpc-h-blue-soft);
}

.lpc-header-btn-fill{
  color:#0F172A;
  border:1.5px solid transparent;
  background:linear-gradient(135deg,var(--lpc-h-amber),var(--lpc-h-orange));
  box-shadow:0 8px 18px rgba(249,115,22,.18);
}

.lpc-header-btn-fill:hover,
.lpc-header-btn-fill:focus,
.lpc-header-btn-fill.is-active{
  color:#0F172A;
  box-shadow:0 10px 22px rgba(249,115,22,.24);
}

.lpc-menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--lpc-h-border);
  border-radius:12px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:0;
  flex:0 0 auto;
}

.lpc-menu-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--lpc-h-ink);
  transition:transform .18s ease,opacity .18s ease;
}

.lpc-menu-toggle.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.lpc-menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.lpc-menu-toggle.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* MOBILE HEADER */
@media (max-width:991.98px){
  body.lpc-customer-body{
    padding-top:60px;
  }

  body.lpc-menu-open{
    overflow:hidden;
  }

  .lpc-site-header{
    height:60px;
    background:#fff;
    box-shadow:0 4px 18px rgba(15,23,42,.06);
  }

  .lpc-header-wrap{
    height:60px;
    padding:0 14px;
    gap:12px;
  }

  .lpc-brand img{
    height:39px;
    max-width:195px;
  }

  .lpc-menu-toggle{
    display:flex;
    width:42px;
    height:42px;
    border-radius:14px;
    background:#F8FAFC;
    border:1px solid #DDE5F0;
  }

  .lpc-menu-toggle.is-open{
    background:#EFF6FF;
    border-color:#BFDBFE;
  }

  .lpc-navbar{
    position:fixed;
    top:60px;
    left:0;
    right:0;
    bottom:auto;
    display:none;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    margin:0;
    padding:10px 14px 14px;
    background:#fff;
    border-top:1px solid #E2E8F0;
    border-bottom:1px solid #E2E8F0;
    box-shadow:0 22px 45px rgba(15,23,42,.16);
    max-height:calc(100svh - 60px);
    overflow:auto;
    z-index:2999;
  }

  .lpc-navbar.is-open{
    display:flex;
  }

  .lpc-navbar::before{
    content:"Menu";
    display:block;
    padding:4px 4px 10px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#94A3B8;
  }

  .lpc-nav-link{
    width:100%;
    min-height:46px;
    justify-content:flex-start;
    padding:13px 14px;
    border-radius:0;
    border-bottom:1px solid #EEF2F7;
    background:#fff;
    color:#1E293B;
    font-size:15px;
    font-weight:800;
    line-height:1.15;
    position:relative;
  }

  .lpc-nav-link:hover,
  .lpc-nav-link:focus{
    background:#F8FAFC;
    color:#1D4ED8;
  }

  .lpc-nav-link.is-active,
  .lpc-nav-dropdown.is-active > .lpc-nav-link{
    background:#fff;
    color:#1D4ED8;
  }

  .lpc-nav-link.is-active::before,
  .lpc-nav-dropdown.is-active > .lpc-nav-link::before{
    content:"";
    position:absolute;
    left:0;
    top:12px;
    bottom:12px;
    width:4px;
    border-radius:999px;
    background:#2563EB;
  }

  .lpc-nav-dropdown{
    width:100%;
    display:block;
  }

  .lpc-dropdown-toggle{
    width:100%;
  }

  .lpc-dropdown-toggle i{
    margin-left:auto;
    font-size:15px;
  }

  .lpc-dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    margin:0;
    padding:0 0 0 14px;
    border:0;
    border-radius:0;
    box-shadow:none;
    background:#fff;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    display:none;
  }

  .lpc-nav-dropdown.is-open .lpc-dropdown-menu{
    display:block;
  }

  .lpc-dropdown-menu a{
    min-height:42px;
    padding:12px 14px;
    border-radius:0;
    border-bottom:1px solid #EEF2F7;
    background:#fff;
    color:#475569;
    font-size:14px;
    font-weight:800;
  }

  .lpc-dropdown-menu a:hover,
  .lpc-dropdown-menu a:focus,
  .lpc-dropdown-menu a.is-active{
    background:#F8FAFC;
    color:#2563EB;
  }

  .lpc-header-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin:14px 0 0;
    padding:0;
  }

  .lpc-header-btn{
    width:100%;
    min-height:44px;
    padding:12px 12px;
    border-radius:14px;
    font-size:14px;
    font-weight:900;
  }

  .lpc-header-btn-outline{
    background:#fff;
    color:#2563EB;
    border:1.5px solid #2563EB;
  }

  .lpc-header-btn-fill{
    color:#0F172A;
    background:linear-gradient(135deg,#FBBF24,#F97316);
    box-shadow:0 10px 22px rgba(249,115,22,.18);
  }
}

@media (max-width:374.98px){
  .lpc-header-wrap{
    padding:0 10px;
  }

  .lpc-brand img{
    height:36px;
    max-width:172px;
  }

  .lpc-menu-toggle{
    width:40px;
    height:40px;
  }

  .lpc-navbar{
    padding-left:12px;
    padding-right:12px;
  }

  .lpc-header-actions{
    grid-template-columns:1fr;
  }
}
/* Mobile menu blur backdrop */
.lpc-menu-backdrop{
  display:none;
}

@media (max-width:991.98px){
  .lpc-menu-backdrop{
    position:fixed;
    top:60px;
    left:0;
    right:0;
    bottom:0;
    z-index:2998;
    display:block;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    background:rgba(15,23,42,.22);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    transition:opacity .18s ease, visibility .18s ease;
  }

  body.lpc-menu-open .lpc-menu-backdrop{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .lpc-navbar{
    z-index:2999;
  }

  .lpc-site-header{
    z-index:3000;
  }
}
/* Mobile background blur when menu is open - no extra HTML needed */
body.lpc-customer-body::before{
  content:"";
  position:fixed;
  left:0;
  right:0;
  top:60px;
  bottom:0;
  z-index:2998;
  background:rgba(15,23,42,.24);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, visibility .18s ease;
}

@media (max-width:991.98px){
  body.lpc-customer-body.lpc-menu-open::before{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .lpc-site-header{
    z-index:3000;
  }

  .lpc-navbar{
    z-index:3001;
  }
}

@media (min-width:992px){
  body.lpc-customer-body::before{
    display:none;
  }
}