/* Clean, neat header styles (no global body/* resets) */

:root{
  --wb-bg: #fff;
  --wb-text: #111;
  --wb-muted: #6b7280;
  --wb-border: #e5e7eb;
  --wb-accent: #00ABEA;
  /* True full-width header (no cap) */
  /*--wb-max: 100%;*/
  /* Responsive side padding for full-width header */
  --wb-pad-x: clamp(12px, 4vw, 80px);
}

#navv{
  background-color: red;
}


.wb-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wb-bg);
  border-bottom: 1px solid var(--wb-border);
  box-sizing: border-box;

  /* Full-bleed header even when pages use body padding/centered flex */
  /*width: 100vw;*/
  margin-left: calc(50% - 50vw);
  /*margin-right: calc(50% - 50vw);*/
  align-self: stretch;
}

.wb-inner{
  max-width: var(--wb-max);
  margin: 0 auto;
  padding: 12px var(--wb-pad-x);
  box-sizing: border-box;
}

.wb-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wb-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.wb-logo img{
  height: 46px;
  width: auto;
  display: block;
}

.wb-actions{
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.wb-icon-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--wb-text);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.wb-icon-link:hover{
  border-color: var(--wb-border);
  background: #fafafa;
}

.wb-icon{
  width: 20px;
  height: 20px;
  display: block;
}

.wb-cart{
  position: relative;
}
.wb-cart-count{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wb-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.wb-menu{
  font-size: 20px;
  line-height: 1;
}

/* Search row (medium size, centered) */
.wb-searchrow{
  margin-top: 10px;
  width: 100%;
  gap: 2rem;
  padding-bottom: 1rem;
}
.wb-search{
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.wb-search input{
  height: 42px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--wb-border);
  border-radius: 12px;
  outline: none;
  font-size: 14px;
}
.wb-search input:focus{
  border-color: rgba(0, 171, 234, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 171, 234, 0.12);
}
.wb-search button{
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #00ABEA;
  background: #00ABEA;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.wb-search button:hover{
  background: #111827;
}

/* Nav row */
.wb-nav{
  width: 100%;
  margin: 0 auto;
  padding: 12px 0;
  border-top: 1px solid var(--wb-border);

  display: flex;
  justify-content: center;     /* center horizontally */
  align-items: center;
  gap: 24px;                   /* minimum clean gap */
  flex-wrap: nowrap;           /* force single line */
padding-top: 2rem;
}

.wb-nav-link{
  text-decoration: none;
  color: var(--wb-text);
  font-size: 14px;
  /*font-weight: 600;*/
}
.wb-nav-link:hover{
  color: var(--wb-accent);
}

.wb-nav-item{
  position: relative;
}

.wb-nav-trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  /*font-weight: 600;*/
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--wb-text);
}
.wb-nav-trigger:hover{
  color: var(--wb-accent);
}

.wb-nav-link,
.wb-nav-trigger{
  font-size: 14px;
  white-space: nowrap;   /* prevent text wrapping */
}
.wb-caret{
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -7px;
}

.wb-subnav{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  display: none;
}

.wb-subnav-link{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--wb-text);
  font-size: 14px;
  font-weight: 600;
}
.wb-subnav-link--sub{
  font-weight: 500;
  color: #374151;
  padding-left: 18px;
}
.wb-subnav-link:hover{
  background: #f7f7f8;
}

/* Desktop hover */
.wb-nav-item:hover .wb-subnav{
  display: block;
}

/* Group inside dropdown */
.wb-subnav{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.wb-subnav-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wb-subnav-title{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.wb-subnav-link{
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.wb-subnav-link:hover{
  color: var(--wb-accent);
  background: transparent;
}
.cart-count {
    position: absolute;
    top: -17px;
    right: -7px;
    background: #00ABEA;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}




.icon-svg {
    width: 19px;
    height: 19px;
    stroke: #000;
    display: block;
    justify-self: center;
}

.wb-icon-link {
    text-decoration: none;
    color: #000;        /* important for currentColor */
}


/* Mobile */
@media (max-width: 860px){
  .wb-inner{
    padding: 10px 12px;
  }
  .wb-logo img{
    height: 30px;
  }

  .wb-search{
    max-width: 100%;
  }

  .wb-nav{

    justify-content: center;
    gap: 16px;
  }
  .wb-header.is-open .wb-nav{
    display: flex;
  }

  .wb-nav-item:hover .wb-subnav{
    display: none;
  }
  .wb-subnav{
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 12px;
    width: 100%;
  }
  .wb-nav-item.is-open .wb-subnav{
    display: block;
  }
}










.wb-subnav{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  padding:25px;
  display:none;
  gap:40px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  min-width:600px;
  z-index:1000;
}

.wb-nav-item{
  position:relative;
}

.wb-nav-item:hover .wb-subnav{
  display:flex;
}

.wb-subnav-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.wb-subnav-title{
  font-weight:700;
  margin-bottom:8px;
  font-size:14px;
}

.wb-subnav-link{
  font-size:14px;
  text-decoration:none;
  color:#444;
  transition:0.2s;
}

.wb-subnav-link:hover{
  color:#00ABEA;
}
.cart-container_1 {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #00ABEA;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}




.wb-subnav{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  padding:25px;
  display:none;
  gap:40px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  min-width:600px;
  z-index:1000;
}

.wb-nav-item{
  position:relative;
}

.wb-nav-item:hover .wb-subnav{
  display:flex;
}

.wb-subnav-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.wb-subnav-title{
  font-weight:700;
  margin-bottom:8px;
  font-size:14px;
}

.wb-subnav-link{
  font-size:14px;
  text-decoration:none;
  color:#444;
  transition:0.2s;
}

.wb-subnav-link:hover{
  color:#00ABEA;
}
.cart-container_1 {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #00ABEA;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}




.wb-menu-btn{
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.wb-menu-btn span{
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}



@media (max-width: 1024px){

  .wb-top{
    display: flex;
    align-items: center;
  }

  .wb-logo{
    flex: 0 0 auto;
  }

  .wb-actions{
    margin-left: auto;   /* PUSHES ICONS TO RIGHT */
    display: flex;
    gap: 18px;
  }

  .wb-menu-btn{
    margin-left: 15px;
  }

}

/* ===============================
   TABLET + MOBILE (≤1024px)
================================ */
@media (max-width: 1024px){

  /* Top section becomes clean row */
  .wb-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Search goes to next row */
  .wb-searchrow{
    order: 3;
    width: 100%;
    margin-top: 12px;
    padding-bottom: 0;
  }

  .wb-search{
    max-width: 100%;
  }

  /* Hide nav by default */
  .wb-nav{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  /* Show when hamburger clicked */
  .wb-header.is-open .wb-nav{
    display: flex;
  }

  /* Disable desktop hover dropdown */
 .wb-nav-item:hover .wb-subnav{
    display:block;
  }

  /* Mobile dropdown style */
  .wb-subnav{
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 100%;
    padding: 10px 0 10px 15px;
    display: none;
  }

  .wb-nav-item.is-open .wb-subnav{
    display: block;
  }

}






/* Show at 1024px */
@media (max-width: 1024px){
  .wb-menu-btn{
    display: flex;
  }
 
}
@media (max-width:415px){
   .wb-logo img
 {
    height: 30px;
    width: auto;
    display: block;
}
.icon-svg {
    width: 23px;
    height: 19px;
    stroke: #000;
    display: block;
    justify-self: center;
}
.wb-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 38px;
    border-radius: 10px;
    color: var(--wb-text);
    background: transparent;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
}
.cart-count {
    position: absolute;
    top: -9px;
    right: -9px;
    background: #00ABEA;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}
}


  .wb-header.is-open .wb-menu-btn span:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
  }

  .wb-header.is-open .wb-menu-btn span:nth-child(2){
  opacity: 0;
  }

  .wb-header.is-open .wb-menu-btn span:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
  }