.zph,
.zph *{
  box-sizing:border-box;
}

.zph{
  position:relative;
  z-index:9999;
  font-family:Shabnam,Tahoma,Arial,sans-serif;
}

.zph a{
  text-decoration:none;
}

.zph-shell{
  width:100%;
  margin:0 auto;
  padding-inline:44px;
}

/* Topbar is NOT sticky */
.zph-top{
  height:36px;
  background:#111;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.zph-top-in{
  height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.zph-top-social,
.zph-top-info{
  display:flex;
  align-items:center;
  gap:18px;
}

.zph-top-social a,
.zph-top-info a,
.zph-top-info p{
  margin:0;
  color:rgba(255,255,255,.82);
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:400;
}

.zph-top-social i,
.zph-top-info i{
  color:#fff;
  font-size:12px;
}

.zph-top-info a:first-child i{
  color:#ffdd00;
}

.zph-top-social span{
  width:1px;
  height:15px;
  background:rgba(255,255,255,.18);
}

.zph-top-social b{
  color:#ffdd00;
  border-bottom:2px solid #ffdd00;
  font-size:12px;
  font-weight:500;
}

/* Only nav is sticky */
.zph-nav{
  position:sticky;
  top:0;
  z-index:10000;
  height:82px;
  background:rgba(255,255,255,.985);
  border-bottom:1px solid #e8ebf0;
  box-shadow:0 10px 28px rgba(15,23,42,.055);
  backdrop-filter:blur(14px);
}

.zph-nav-in{
  height:82px;
  display:flex;
  align-items:center;
  gap:32px;
}

.zph-logo{
  width:170px;
  flex:0 0 170px;
  display:flex;
  align-items:center;
}

.zph-logo img{
  max-height:56px;
  width:auto;
  display:block;
}

/* Menu */
.zph-menu{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}

.zph-menu > a,
.zph-menu-item > a{
  height:82px;
  padding:0 14px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#202020;
  font-size:14px;
  font-weight:400;
  position:relative;
  transition:color .22s ease;
}

.zph-menu > a > i,
.zph-menu-item > a > i:first-child{
  color:#7a808a;
  font-size:13px;
  transition:color .22s ease;
}

.zph-chevron{
  font-size:9px!important;
  color:#7a808a!important;
  transition:transform .22s ease,color .22s ease;
}

.zph-menu > a:after,
.zph-menu-item > a:after{
  content:"";
  position:absolute;
  right:14px;
  bottom:15px;
  width:0;
  height:2px;
  background:#ffdd00;
  border-radius:20px;
  transition:width .32s cubic-bezier(.22,.61,.36,1);
}

.zph-menu > a:hover:after,
.zph-menu-item:hover > a:after,
.zph-menu-item.is-open > a:after,
.zph-menu > a.active:after,
.zph-menu-item > a.active:after{
  width:calc(100% - 28px);
}

.zph-menu > a:hover,
.zph-menu-item:hover > a,
.zph-menu-item.is-open > a,
.zph-menu > a.active,
.zph-menu-item > a.active{
  color:#004e9e;
}

.zph-menu > a:hover > i,
.zph-menu-item:hover > a > i:first-child,
.zph-menu-item.is-open > a > i:first-child,
.zph-menu > a.active > i{
  color:#004e9e;
}

.zph-menu-item:hover .zph-chevron,
.zph-menu-item.is-open .zph-chevron{
  transform:rotate(180deg);
  color:#004e9e!important;
}

.zph-menu-item{
  position:static;
}

/* Actions */
.zph-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.zph-icon,
.zph-burger{
  width:44px;
  height:44px;
  border:1px solid #e8ebf0;
  background:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  cursor:pointer;
  transition:.24s ease;
}

.zph-burger{
  display:none;
}

.zph-icon:hover,
.zph-burger:hover{
  border-color:#ffdd00;
  background:#fffbea;
}

.zph-phone,
.zph-quote{
  height:44px;
  padding:0 16px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:400;
  white-space:nowrap;
  transition:.26s ease;
}

.zph-phone{
  border:1px solid #e8ebf0;
  background:#fff;
  color:#111;
}

.zph-phone:hover{
  background:#f8f9fb;
  border-color:#d9dde5;
}

.zph-quote{
  border:1px solid #ffdd00;
  background:#ffdd00;
  color:#111;
}

.zph-quote:hover{
  background:#004e9e;
  border-color:#004e9e;
  color:#fff;
  transform:translateY(-1px);
}

/* Mega menu: exact attached to nav bottom */
.zph-mega{
  position:absolute;
  top:82px;
  right:0;
  left:0;
  width:100%;
  background:#fff;
  border-top:0;
  border-bottom:1px solid #e8ebf0;
  box-shadow:0 28px 76px rgba(15,23,42,.12);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .14s ease,visibility .14s ease;
  z-index:10001;
}

.zph-menu-item:hover .zph-mega,
.zph-menu-item.is-open .zph-mega,
.zph-mega:hover{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.zph-mega-in{
  width:100%;
  padding:26px 44px;
  display:grid;
  grid-template-columns:390px minmax(0,1fr) 280px;
  gap:24px;
  border-top:1px solid #f0f2f5;
}

/* Product list */
.zph-mega-products{
  display:grid;
  gap:10px;
  align-content:start;
}

.zph-mega-products a{
  min-height:82px;
  display:grid;
  grid-template-columns:42px 78px 1fr;
  align-items:center;
  gap:12px;
  padding:10px;
  border:1px solid #e8ebf0;
  border-radius:16px;
  background:#fff;
  color:#111;
  transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease,background .22s ease;
}

.zph-mega-products a:hover,
.zph-mega-products a.active{
  border-color:#ffdd00;
  background:#fffef5;
}

.zph-mega-products a:hover{
  box-shadow:0 12px 28px rgba(15,23,42,.07);
  transform:translateY(-1px);
}

.zph-no{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#f5f6f8;
  color:#004e9e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:500;
}

.zph-mega-products a.active .zph-no{
  background:#ffdd00;
  color:#111;
}

.zph-mega-products img{
  width:78px;
  height:58px;
  object-fit:contain;
}

.zph-mega-products b{
  display:block;
  color:#111;
  font-size:13px;
  line-height:1.8;
  font-weight:500;
}

.zph-mega-products small{
  color:#6b7280;
  font-size:11px;
  font-weight:400;
}

/* Featured card */
.zph-mega-card{
  border:1px solid #e8ebf0;
  border-radius:20px;
  background:#fff;
  display:grid;
  grid-template-columns:420px minmax(0,1fr);
  gap:22px;
  padding:18px;
  min-height:340px;
}

.zph-mega-img{
  border-radius:16px;
  background:linear-gradient(135deg,rgba(255,221,0,.12),rgba(0,78,158,.04)),#f7f8fa;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.zph-mega-img img{
  width:90%;
  max-height:285px;
  object-fit:contain;
  filter:drop-shadow(0 22px 28px rgba(0,0,0,.14));
}

.zph-mega-copy{
  padding:8px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.zph-mega-copy small{
  width:max-content;
  background:#ffdd00;
  color:#111;
  border-radius:8px;
  padding:5px 10px;
  font-size:11px;
  font-weight:400;
}

.zph-mega-copy h3{
  margin:18px 0 10px;
  color:#111;
  font-size:30px;
  line-height:1.5;
  font-weight:500;
}

.zph-mega-copy p{
  margin:0 0 18px;
  max-width:620px;
  color:#4b5563;
  font-size:14px;
  line-height:2;
  font-weight:400;
}

.zph-mega-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}

.zph-mega-tags span{
  min-height:34px;
  padding:0 12px;
  border:1px solid #e8ebf0;
  border-radius:999px;
  display:flex;
  align-items:center;
  color:#333;
  font-size:12px;
  background:#fff;
}

.zph-mega-actions{
  display:flex;
  gap:10px;
}

.zph-mega-actions a{
  height:42px;
  padding:0 17px;
  border-radius:11px;
  border:1px solid #e8ebf0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-size:13px;
  font-weight:400;
  transition:.22s ease;
}

.zph-mega-actions a:first-child{
  background:#004e9e;
  border-color:#004e9e;
  color:#fff;
}

.zph-mega-actions a:hover{
  transform:translateY(-1px);
}

/* Side note */
.zph-mega-note{
  border:1px solid #e8ebf0;
  border-radius:20px;
  background:linear-gradient(180deg,rgba(33,32,30,.96),rgba(33,32,30,.92));
  color:#fff;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:340px;
  position:relative;
  overflow:hidden;
}

.zph-mega-note:before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  left:-42px;
  top:-42px;
  border-radius:50%;
  background:#ffdd00;
}

.zph-mega-note b{
  position:relative;
  color:#ffdd00;
  font-size:18px;
  font-weight:500;
  margin-bottom:12px;
}

.zph-mega-note p{
  position:relative;
  margin:0 0 18px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:2;
}

.zph-mega-note a{
  position:relative;
  height:42px;
  border-radius:11px;
  background:#ffdd00;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:500;
  transition:.22s ease;
}

.zph-mega-note a:hover{
  background:#fff;
}

/* Search */
.zph-search{
  position:fixed;
  inset:0;
  z-index:12000;
  background:linear-gradient(90deg,rgba(5,10,16,.92),rgba(5,10,16,.72)),url("../images/home/podem-crane-main.jpg") center/cover;
  display:none;
  align-items:center;
  justify-content:center;
}

.zph-search.is-open{
  display:flex;
}

.zph-search-close{
  position:absolute;
  top:30px;
  right:30px;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}

.zph-search-box{
  width:min(760px,92%);
  text-align:center;
  color:#fff;
}

.zph-search-box h2{
  margin:0 0 24px;
  font-size:32px;
  font-weight:500;
}

.zph-search-box h2:after{
  content:"";
  display:block;
  width:50px;
  height:3px;
  background:#ffdd00;
  margin:14px auto 0;
  border-radius:20px;
}

.zph-search-box > div{
  height:64px;
  border-radius:15px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:0 18px;
}

.zph-search-box input{
  flex:1;
  border:0;
  outline:0;
  font-family:inherit;
  font-size:15px;
  text-align:right;
}

.zph-search-box button{
  border:0;
  background:transparent;
  font-size:17px;
  cursor:pointer;
}

/* Drawer */
.zph-drawer,
.zph-backdrop{
  display:none;
}

@media(max-width:1180px){
  .zph-shell{padding-inline:18px}
  .zph-menu,.zph-phone{display:none}
  .zph-burger{display:flex}
  .zph-nav,.zph-nav-in{height:74px}
  .zph-logo{width:145px;flex-basis:145px;margin-left:auto}
  .zph-logo img{max-height:50px}
  .zph-mega{display:none!important}

  .zph-drawer{
    position:fixed;
    top:0;
    right:-330px;
    width:315px;
    max-width:86vw;
    height:100vh;
    background:#fff;
    z-index:13000;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:8px;
    transition:.24s ease;
  }

  .zph-drawer.is-open{right:0}

  .zph-drawer-close{
    position:absolute;
    top:18px;
    left:18px;
    width:42px;
    height:42px;
    border:1px solid #e8ebf0;
    border-radius:12px;
    background:#fff;
  }

  .zph-drawer img{
    width:145px;
    margin:10px auto 24px;
  }

  .zph-drawer a{
    min-height:48px;
    border-bottom:1px solid #eef1f5;
    display:flex;
    align-items:center;
    gap:10px;
    color:#111;
    font-size:14px;
    font-weight:400;
  }

  .zph-drawer a i{
    width:20px;
    color:#004e9e;
  }

  .zph-drawer-quote{
    background:#ffdd00;
    border-radius:12px;
    justify-content:center;
    border-bottom:0!important;
    margin-top:10px;
  }

  .zph-backdrop{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.54);
    z-index:12500;
  }

  .zph-backdrop.is-open{display:block}
}

@media(max-width:720px){
  .zph-top{height:32px;background:#ffdd00;color:#111}
  .zph-top-in{height:32px;justify-content:center}
  .zph-top-social,.zph-top-info a:nth-child(2),.zph-top-info p{display:none}
  .zph-top-info{width:100%;justify-content:center}
  .zph-top-info a{color:#111;font-weight:500}
  .zph-top-info i{color:#111!important}
  .zph-quote{display:none}
  .zph-icon,.zph-burger{width:43px;height:43px}
}

/* ==========================
   CLEAN STICKY LOGIC
   Topbar first, nav after it.
   Nav becomes fixed only after scroll.
   ========================== */

body{
  padding-top:0!important;
}

.zph{
  position:relative!important;
  z-index:9999!important;
  overflow:visible!important;
}

.zph-top{
  position:relative!important;
  top:auto!important;
  right:auto!important;
  left:auto!important;
  margin:0!important;
  z-index:10!important;
}

.zph-nav{
  position:relative!important;
  top:auto!important;
  right:auto!important;
  left:auto!important;
  width:100%!important;
  z-index:9999!important;
  transition:box-shadow .2s ease, background .2s ease;
}

.zph-nav.zph-fixed-now{
  position:fixed!important;
  top:0!important;
  right:0!important;
  left:0!important;
  width:100%!important;
  z-index:999999!important;
  background:rgba(255,255,255,.985)!important;
  box-shadow:0 14px 34px rgba(15,23,42,.12)!important;
}

body.zph-fixed-body{
  padding-top:82px!important;
}

.zph-nav.zph-fixed-now .zph-mega{
  top:82px!important;
}

/* Phone display */
.zph-top-info .zph-top-phone{
  font-size:16px!important;
  font-weight:800!important;
  letter-spacing:.35px;
  direction:ltr;
  unicode-bidi:isolate;
  gap:9px;
}

.zph-top-info .zph-top-phone span,
.zph-phone span{
  direction:ltr;
  unicode-bidi:isolate;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}

.zph-phone span{
  font-size:16px!important;
  font-weight:800!important;
  letter-spacing:.35px;
}

.zph-top-info p{
  font-size:12.5px;
  font-weight:500;
}

/* Search form */
.zph-search-box form{
  height:64px;
  border-radius:15px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:0 18px;
}

.zph-search-box form input{
  flex:1;
  border:0;
  outline:0;
  font-family:inherit;
  font-size:15px;
  text-align:right;
}

.zph-search-box form button{
  border:0;
  background:transparent;
  font-size:17px;
  cursor:pointer;
}

@media(max-width:1180px){
  body.zph-fixed-body{
    padding-top:74px!important;
  }
}

@media(max-width:720px){
  .zph-top-info .zph-top-phone{
    font-size:15px!important;
  }
}
