@font-face{
  font-family:Shabnam;
  src:url("../fonts/Shabnam.woff") format("woff");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:Shabnam;
  src:url("../fonts/Shabnam-Bold.woff") format("woff");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

:root{
  --juuko-yellow:#fdb73c;
  --juuko-yellow-dark:#d98c00;
  --juuko-black:#101010;
  --juuko-dark:#1e1e1e;
  --juuko-gray:#707070;
  --juuko-light:#f6f6f4;
  --juuko-line:#e5e2dc;
  --juuko-white:#ffffff;
  --juuko-text:#242424;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Shabnam,Tahoma,sans-serif;
  background:#fff;
  color:var(--juuko-text);
}
body.jkh-fixed-body{padding-top:64px}
a{text-decoration:none;color:inherit}
img{max-width:100%}

/* FULL WIDTH */
.jkh,
.jkf{
  width:100%;
  max-width:none;
  font-family:Shabnam,Tahoma,sans-serif;
}
.jkh-shell,
.jkf-shell{
  width:100%;
  max-width:none;
  margin:0;
  padding-left:28px;
  padding-right:28px;
}

/* TOP BAR */
.jkh{
  position:relative;
  z-index:9999;
  background:#fff;
}
.jkh-top{
  width:100%;
  background:
    radial-gradient(circle,rgba(253,183,60,.12) 1px,transparent 1.7px),
    #111;
  background-size:18px 18px;
  color:#fff;
  font-size:10.5px;
}
.jkh-top-in{
  min-height:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.jkh-top-right,
.jkh-top-left{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.jkh-top a,
.jkh-top span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#fff;
  font-size:10.5px;
  font-weight:400;
  opacity:.92;
}
.jkh-top i{
  color:var(--juuko-yellow);
  font-size:10px;
}

/* NAV */
.jkh-nav{
  width:100%;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid var(--juuko-line);
  transition:.22s ease;
}
.jkh-nav.jkh-fixed-now{
  position:fixed;
  top:0;
  right:0;
  left:0;
  box-shadow:0 12px 34px rgba(0,0,0,.11);
}
.jkh-nav-in{
  width:100%;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* LOGO */
.jkh-logo{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:145px;
  flex-shrink:0;
}
.jkh-logo img{
  height:39px;
  width:auto;
  object-fit:contain;
}
.jkh-logo span{
  display:flex;
  flex-direction:column;
  gap:1px;
}
.jkh-logo b{
  font-size:11px;
  font-weight:500;
  color:#111;
  letter-spacing:.2px;
  direction:ltr;
}
.jkh-logo small{
  font-size:9px;
  font-weight:400;
  color:#777;
}

/* MENU */
.jkh-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1px;
  height:100%;
  flex:1;
}
.jkh-menu>a,
.jkh-menu-item>a{
  height:64px;
  display:flex;
  align-items:center;
  gap:5px;
  padding:0 7px;
  font-size:10.8px;
  font-weight:400;
  color:#222;
  border-bottom:2px solid transparent;
  transition:.18s ease;
  white-space:nowrap;
}
.jkh-menu>a i,
.jkh-menu-item>a i{
  color:var(--juuko-yellow-dark);
  font-size:10px;
}
.jkh-menu>a:hover,
.jkh-menu-item:hover>a,
.jkh-menu .active{
  color:#111;
  border-bottom-color:var(--juuko-yellow);
}
.jkh-chevron{
  font-size:8px!important;
  color:#999!important;
}
.jkh-menu-item{
  height:100%;
  display:flex;
  align-items:center;
}

/* ACTIONS */
.jkh-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  flex-shrink:0;
}
.jkh-icon,
.jkh-burger{
  width:34px;
  height:34px;
  border:1px solid var(--juuko-line);
  background:#fff;
  border-radius:10px;
  display:grid;
  place-items:center;
  cursor:pointer;
  color:#111;
  font-size:11px;
}
.jkh-phone,
.jkh-quote{
  height:34px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 9px;
  border-radius:10px;
  font-size:10.5px;
  font-weight:400;
  white-space:nowrap;
}
.jkh-phone{
  background:#f5f5f5;
  color:#111;
  direction:ltr;
}
.jkh-phone i{
  color:var(--juuko-yellow-dark);
  font-size:10px;
}
.jkh-quote{
  background:var(--juuko-yellow);
  color:#111;
  box-shadow:0 8px 20px rgba(253,183,60,.22);
}
.jkh-quote i{
  font-size:10px;
}
.jkh-burger{display:none}

/* MEGA MENU */
.jkh-mega{
  position:absolute;
  right:0;
  left:0;
  top:94px;
  width:100%;
  background:#fff;
  border-top:1px solid var(--juuko-line);
  box-shadow:0 24px 70px rgba(0,0,0,.13);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.2s ease;
  pointer-events:none;
}
.jkh-nav.jkh-fixed-now .jkh-mega{top:64px}
.jkh-menu-item:hover .jkh-mega{
  opacity:1;
  visibility:visible;
  transform:none;
  pointer-events:auto;
}
.jkh-mega-in{
  width:100%;
  padding:20px 28px;
  display:grid;
  grid-template-columns:230px 1.4fr .72fr 230px;
  gap:14px;
}
.jkh-mega-head{
  border-radius:18px;
  padding:18px;
  background:
    linear-gradient(135deg,rgba(253,183,60,.95),rgba(253,183,60,.70)),
    radial-gradient(circle,rgba(0,0,0,.10) 1px,transparent 1.7px);
  background-size:auto,18px 18px;
  color:#111;
}
.jkh-mega-head span{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:500;
  direction:ltr;
}
.jkh-mega-head h3{
  margin:13px 0 8px;
  font-size:16px;
  font-weight:500;
}
.jkh-mega-head p{
  margin:0;
  color:#292929;
  line-height:1.9;
  font-size:11px;
  font-weight:400;
}
.jkh-mega-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  max-height:390px;
  overflow:auto;
  padding-left:3px;
}
.jkh-mega-list a{
  display:grid;
  grid-template-columns:50px 1fr auto;
  align-items:center;
  gap:8px;
  padding:8px;
  border:1px solid var(--juuko-line);
  border-radius:14px;
  background:linear-gradient(180deg,#fff,#fafafa);
  transition:.18s ease;
}
.jkh-mega-list a:hover{
  border-color:rgba(253,183,60,.75);
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(253,183,60,.13);
}
.jkh-mega-list img{
  width:50px;
  height:50px;
  object-fit:contain;
  background:#f7f7f7;
  border-radius:11px;
  padding:6px;
}
.jkh-mega-list b{
  display:block;
  font-size:10.8px;
  font-weight:400;
  color:#171717;
  margin-bottom:2px;
  line-height:1.55;
}
.jkh-mega-list small{
  display:block;
  font-size:9.5px;
  font-weight:400;
  color:#777;
  direction:ltr;
}
.jkh-mega-list em{
  font-style:normal;
  color:var(--juuko-yellow-dark);
  font-weight:500;
  font-size:9.5px;
}
.jkh-mega-feature{
  border-radius:18px;
  overflow:hidden;
  background:#111;
  color:#fff;
  display:grid;
  grid-template-rows:145px 1fr;
}
.jkh-mega-feature img{
  width:100%;
  height:145px;
  object-fit:cover;
  background:#fff;
}
.jkh-mega-feature div{
  padding:15px;
}
.jkh-mega-feature small{
  color:var(--juuko-yellow);
  direction:ltr;
  display:block;
  font-size:10px;
  font-weight:400;
}
.jkh-mega-feature h3{
  margin:7px 0 8px;
  font-size:15px;
  font-weight:500;
}
.jkh-mega-feature p{
  margin:0 0 13px;
  font-size:11px;
  font-weight:400;
  line-height:1.9;
  color:#e8e8e8;
}
.jkh-mega-feature a{
  display:inline-flex;
  padding:9px 12px;
  border-radius:10px;
  background:var(--juuko-yellow);
  color:#111;
  font-weight:500;
  font-size:10.5px;
}
.jkh-mega-cta{
  border-radius:18px;
  background:
    radial-gradient(circle,rgba(253,183,60,.14) 1px,transparent 1.7px),
    #f6f6f4;
  background-size:18px 18px;
  padding:17px;
  border:1px solid var(--juuko-line);
}
.jkh-mega-cta b{
  font-size:14px;
  font-weight:500;
  color:#111;
}
.jkh-mega-cta p{
  font-size:11px;
  font-weight:400;
  line-height:1.9;
  color:#4c4c4c;
}
.jkh-mega-cta a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:6px;
  color:#111;
  background:var(--juuko-yellow);
  padding:9px 12px;
  border-radius:10px;
  font-weight:500;
  font-size:10.5px;
}

/* SEARCH */
.jkh-search,
.jkh-drawer,
.jkh-backdrop{
  position:fixed;
  opacity:0;
  visibility:hidden;
  transition:.22s ease;
}
.jkh-backdrop{
  inset:0;
  background:rgba(0,0,0,.48);
  z-index:9998;
}
.jkh-backdrop.is-open{opacity:1;visibility:visible}
.jkh-search{
  inset:0;
  background:rgba(255,255,255,.97);
  z-index:10000;
  display:grid;
  place-items:center;
  padding:20px;
}
.jkh-search.is-open{opacity:1;visibility:visible}
.jkh-search-close{
  position:absolute;
  top:24px;
  left:24px;
  width:44px;
  height:44px;
  border:0;
  background:#111;
  color:#fff;
  border-radius:14px;
  cursor:pointer;
}
.jkh-search-box{
  width:min(720px,95%);
  text-align:center;
}
.jkh-search-box>span{
  display:inline-flex;
  padding:6px 11px;
  border-radius:999px;
  background:#111;
  color:var(--juuko-yellow);
  font-weight:500;
  direction:ltr;
  font-size:10px;
}
.jkh-search-box h2{
  font-size:24px;
  font-weight:500;
  color:#111;
}
.jkh-search-box form{
  display:flex;
  background:#fff;
  border:1px solid var(--juuko-line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 55px rgba(0,0,0,.09);
}
.jkh-search-box input{
  flex:1;
  border:0;
  padding:16px;
  font-family:inherit;
  font-size:13px;
  outline:0;
}
.jkh-search-box button{
  width:66px;
  border:0;
  background:var(--juuko-yellow);
  color:#111;
  font-size:15px;
  cursor:pointer;
}

/* DRAWER */
.jkh-drawer{
  top:0;
  bottom:0;
  right:0;
  width:min(380px,88vw);
  background:#fff;
  z-index:10001;
  transform:translateX(100%);
  padding:22px;
  overflow:auto;
}
.jkh-drawer.is-open{
  opacity:1;
  visibility:visible;
  transform:none;
}
.jkh-drawer-close{
  width:40px;
  height:40px;
  border:0;
  border-radius:12px;
  background:#111;
  color:#fff;
  margin-bottom:18px;
}
.jkh-drawer>img{
  height:58px;
  object-fit:contain;
  margin-bottom:16px;
}
.jkh-drawer>a{
  display:flex;
  align-items:center;
  gap:9px;
  padding:13px 0;
  border-bottom:1px solid var(--juuko-line);
  font-weight:400;
  font-size:12.5px;
  color:#111;
}
.jkh-drawer>a i{
  color:var(--juuko-yellow-dark);
  font-size:12px;
}
.jkh-drawer-products{
  margin-top:16px;
  padding:14px;
  border:1px solid var(--juuko-line);
  border-radius:18px;
  background:#fafafa;
}
.jkh-drawer-products>b{
  display:block;
  margin-bottom:9px;
  color:#111;
  font-size:13px;
  font-weight:500;
}
.jkh-drawer-products a{
  display:flex;
  align-items:center;
  gap:9px;
  padding:8px 0;
  border-bottom:1px solid #eee;
}
.jkh-drawer-products a:last-child{border-bottom:0}
.jkh-drawer-products img{
  width:38px;
  height:38px;
  object-fit:contain;
  background:#fff;
  border-radius:9px;
  padding:5px;
}
.jkh-drawer-products span{
  font-weight:400;
  font-size:12px;
  direction:ltr;
}
.jkh-drawer-quote{
  margin-top:15px!important;
  justify-content:center;
  background:var(--juuko-yellow);
  color:#111!important;
  border:0!important;
  border-radius:14px;
}

/* FOOTER */
.jkf{
  margin-top:70px;
  background:#111;
  color:#fff;
}
.jkf a{
  display:flex;
  align-items:center;
  gap:8px;
  color:#d9d9d9;
  margin:10px 0;
  font-size:12px;
  font-weight:400;
}
.jkf a:hover{color:var(--juuko-yellow)}
.jkf-cta{
  background:linear-gradient(135deg,rgba(253,183,60,.95),rgba(253,183,60,.74));
  color:#111;
}
.jkf-cta-in{
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:30px;
  padding-bottom:30px;
}
.jkf-cta span{
  display:inline-flex;
  background:rgba(255,255,255,.55);
  padding:6px 11px;
  border-radius:999px;
  font-weight:500;
  direction:ltr;
  font-size:10px;
}
.jkf-cta h2{
  margin:12px 0 9px;
  font-size:24px;
  font-weight:500;
}
.jkf-cta p{
  margin:0;
  line-height:1.9;
  max-width:760px;
  font-size:13px;
  font-weight:400;
}
.jkf-cta-actions{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
}
.jkf-cta-actions a{
  color:#111;
  background:#fff;
  padding:12px 14px;
  border-radius:13px;
  margin:0;
  font-weight:500;
}
.jkf-cta-actions a:first-child{
  background:#111;
  color:#fff;
}
.jkf-main{
  background:
    radial-gradient(circle,rgba(253,183,60,.10) 1px,transparent 1.8px),
    #111;
  background-size:20px 20px;
  padding:44px 0;
}
.jkf-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr .9fr;
  gap:28px;
}
.jkf-brand img{
  height:60px;
  width:auto;
  object-fit:contain;
  background:#fff;
  border-radius:14px;
  padding:8px;
}
.jkf h3,
.jkf h4{
  color:#fff;
  margin:13px 0;
  font-weight:500;
}
.jkf-brand p,
.jkf-time{
  color:#d3d3d3;
  line-height:1.9;
  font-size:12px;
  font-weight:400;
}
.jkf i{color:var(--juuko-yellow)}
.jkf-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  background:#0a0a0a;
}
.jkf-bottom-in{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.jkf-bottom p{
  margin:0;
  color:#aaa;
  font-size:11px;
}

/* RESPONSIVE */
@media(max-width:1220px){
  .jkh-menu>a,
  .jkh-menu-item>a{
    padding:0 5px;
    font-size:10.2px;
  }
  .jkh-phone{
    display:none;
  }
  .jkh-logo{
    min-width:120px;
  }
  .jkh-logo small{
    display:none;
  }
}
@media(max-width:1080px){
  .jkh-menu{display:none}
  .jkh-burger{display:grid}
  .jkh-nav-in{height:62px}
  body.jkh-fixed-body{padding-top:62px}
  .jkh-logo img{height:38px}
  .jkf-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .jkh-shell,
  .jkf-shell{
    padding-left:14px;
    padding-right:14px;
  }
  .jkh-top{display:none}
  .jkh-nav-in{
    height:58px;
    gap:8px;
  }
  body.jkh-fixed-body{padding-top:58px}
  .jkh-logo{
    min-width:auto;
  }
  .jkh-logo img{
    height:34px;
  }
  .jkh-logo span{
    display:none;
  }
  .jkh-icon,
  .jkh-burger,
  .jkh-quote{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:9px;
    font-size:10px;
  }
  .jkh-quote{
    padding:0;
    justify-content:center;
  }
  .jkh-quote span{display:none}
  .jkh-search-box h2{
    font-size:20px;
  }
  .jkh-search-box input{
    padding:14px;
    font-size:12px;
  }
  .jkh-search-box button{
    width:54px;
  }
  .jkf-cta-in{
    display:block;
  }
  .jkf-cta-actions{
    margin-top:18px;
  }
  .jkf-grid{
    grid-template-columns:1fr;
  }
  .jkf-bottom-in{
    justify-content:center;
    text-align:center;
  }
}
@media(max-width:430px){
  .jkh-nav-in{
    height:56px;
  }
  body.jkh-fixed-body{
    padding-top:56px;
  }
  .jkh-logo img{
    height:32px;
  }
  .jkh-actions{
    gap:4px;
  }
  .jkh-icon,
  .jkh-burger,
  .jkh-quote{
    width:31px;
    height:31px;
    min-width:31px;
  }
}

/* Normalize header font sizes */
.jkh-top,
.jkh-top a,
.jkh-top span{
  font-size:12px !important;
}

.jkh-nav-in{
  height:72px !important;
}

.jkh-logo img{
  height:46px !important;
}

.jkh-logo b{
  font-size:13px !important;
  font-weight:500 !important;
}

.jkh-logo small{
  font-size:10px !important;
}

.jkh-menu>a,
.jkh-menu-item>a{
  height:72px !important;
  font-size:13px !important;
  font-weight:400 !important;
  padding:0 9px !important;
  gap:6px !important;
}

.jkh-menu>a i,
.jkh-menu-item>a i{
  font-size:12px !important;
}

.jkh-phone,
.jkh-quote{
  height:38px !important;
  font-size:12px !important;
  font-weight:400 !important;
  padding:0 12px !important;
}

.jkh-icon,
.jkh-burger{
  width:38px !important;
  height:38px !important;
  font-size:12px !important;
}

.jkh-mega{
  top:102px !important;
}

.jkh-nav.jkh-fixed-now .jkh-mega{
  top:72px !important;
}

body.jkh-fixed-body{
  padding-top:72px !important;
}

@media(max-width:1080px){
  .jkh-nav-in{
    height:66px !important;
  }
  body.jkh-fixed-body{
    padding-top:66px !important;
  }
  .jkh-logo img{
    height:42px !important;
  }
}

@media(max-width:760px){
  .jkh-nav-in{
    height:62px !important;
  }
  body.jkh-fixed-body{
    padding-top:62px !important;
  }
  .jkh-logo img{
    height:38px !important;
  }
  .jkh-icon,
  .jkh-burger,
  .jkh-quote{
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
  }
}

/* Fine tune +1 step */

.jkh-menu>a,
.jkh-menu-item>a{
  font-size:14px !important;
}

.jkh-logo b{
  font-size:14px !important;
}

.jkh-phone,
.jkh-quote{
  font-size:13px !important;
}

.jkh-top,
.jkh-top a,
.jkh-top span{
  font-size:12.5px !important;
}

.jkh-mega-list b{
  font-size:12px !important;
}

.jkh-mega-feature h3{
  font-size:17px !important;
}

.jkh-mega-head h3{
  font-size:18px !important;
}

@media(max-width:760px){

  .jkh-menu>a,
  .jkh-menu-item>a{
    font-size:13px !important;
  }

  .jkh-logo b{
    font-size:13px !important;
  }

  .jkh-phone,
  .jkh-quote{
    font-size:12px !important;
  }

}

/* Footer legal copyright */
.jkf-bottom-legal{
  min-height:auto !important;
  padding-top:18px;
  padding-bottom:18px;
  display:flex !important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  text-align:center;
}

.jkf-bottom-legal p{
  margin:0;
  max-width:1100px;
  line-height:1.9;
  color:#b8b8b8;
  font-size:12px;
  font-weight:400;
}

.jkf-bottom-legal .jkf-dev{
  color:#fdb73c;
  direction:ltr;
  font-size:12px;
  letter-spacing:.2px;
}
