/** Shopify CDN: Minification failed

Line 181:0 Unexpected "}"
Line 752:1 Expected "}" to go with "{"

**/
  /*

.header_wrapper {
 position: relative; 
  align-items: center;
  border-top: 0px solid var(--header-border-color);
  border-bottom: 0px solid var(--header-border-color);
}

.user,
.header {
  position: relative;
}
.disclosure__button {
  color: #fff;
}
.disclosure__button:hover {
  color: var(--primary_hover);
}
.user-block {
  width: 110px;
  z-index: 999;
  background-color: #fff;
  color: #666;
  padding: 1rem;
  position: absolute;
  font-size: 14px;
  top: 100%;
  right: 0;
  border: 0.1rem solid #eaeaea;
  box-shadow: 0 0 3rem #0000000d;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}

.user:hover .user-block {
  opacity: 1;
  visibility: visible;
  top: 100%;
  display: block;
}

.user-icon {
  cursor: pointer;
}

.user-block a:hover {
  color: var(--primary);
}

.mega-menu__inner {
  padding-top: 30px;
}

.header-1 .tap-area:before {
  display: none;
}

*/


/* ----style---new-- 
.header__ap-cartcount ,
.header__ap-wishlistcount {
  position: initial;
  font-size: 10px;

}
.header-cart {
  display: flex;
  border-radius: 30px;
  background: #FF4B5F;
  color: #fff;
  padding: 14px 14px 14px 30px;
  font-weight: bold;
  align-items: center;
  position: relative;
}

.header-cart:hover {
  background: #000;
  color: #fff;
}
.header-cart:hover .bg-black-icon:after {
  background:#FF4B5F;
}
.text_header_cart  {
  display: flex;
  margin-right: 25px;
}
.bg-black-icon {
  z-index: 1;
}
.bg-black-icon:after {
  content: "";
  border-radius: 50px;
  width: 50px;
  height: 52px;
  line-height: 52px;
  background: #000;
  display: block;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: -1;
}*/
/*
.header__icon-list > div, 
.header__icon-list nav  {
   border-left: 1px solid rgb(var(--border-color));
  /* padding: 36px 29px;
  text-align: center;
  text-transform: uppercase;
}

.header__icon-list > div .wrapper-user .show_login {
  justify-content: center;
}
.bubble-count {
  width:18px;
  height: 18px;
}
.cart_empty .header-cart_empty {
    font-weight: 700;
    text-align: center;
    line-height: 1;
    position: relative;
    max-width: 54px;
    margin: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart_empty .header-cart_empty svg {
  min-width: 24px;
  height: 24px;
  position: relative;
}
@media (min-width: 1200px) {
  /* ul.header__linklist {
    justify-content: center;
  } */
  .header__logo {
    flex: 0 0  auto;
  
  }
  .header__inline-wrapper {
    flex: 1;
    /* padding-left: 60px; */
  }
  /* .header__secondary-links {
    flex: 1;
  } 
  .header-icon {
    flex: none;
  }
  .search-icon-text .header__search-bar span{
    display: inline-block;
    padding-top: 10px;
    text-transform: uppercase;
  }
}
@media (max-width: 1500px) {
  .header__inline-wrapper {
    margin-left: 0;
  }
  .header-custom_content {
    display: none;
  }
  /* .header__icon-list>div, .header__icon-list nav {
    padding: 35px 20px;
  } */
}
@media (max-width: 1199px) {
  .header__logo,
  .header__secondary-links {
    min-width: 35%;
    order: 1;
  }
  .header__inline-wrapper {
    order: 0;
    margin-right: 10px;
    width: 33.33%;
  }
  .header__secondary-links {
    order: 2;
  }
  button.mobile-nav__link,
  .vertical-nav__link-1,
  .header__linklist-link {
    padding: 14px 0;
  }
  .header__icon-wrapper {
    align-items: center;
    line-height: 1;
  }
  .header_wrapper {
    padding: 15px 0;
    justify-content: space-between;
  }
  .header__logo-image {
    margin: auto;
  }
  /* .header__icon-list > div, 
  .header__icon-list nav  {
    padding: 17px 10px;
     border: none;
  } 
  .text-icon-count {
    display: none;
  }
}

@media (max-width: 576px) {


  .header__secondary-links {
    padding: 0;
    justify-content: flex-end;
    flex: 1 1 0;
  }
  .header__icon-list {
    justify-content :start;
  }
  .header_wrapper {
    margin-top: 0;
  }
  .menu-vertical {
    flex: 1;
    width: 100%;
  }
  .vertical-title {
    justify-content: space-between;
  }
  .menu-vertical_btn {
    width: 100%;
  }
  .header-menu-bar {
    flex: 1;
    order: 1;
  }
}
@media (max-width: 390px) {

 .header__inline-wrapper {
    width: auto;
  }
 
} 
*/

/* ==================== HEADER RESPONSIVE CSS ==================== */

* {
  box-sizing: border-box;
}

/* ========== GENERAL HEADER STYLES ========== */
ap-headerstore,
.header {
  width: 100%;
  display: block;
}

.container,
.container-fluid,
.full {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
}

.container-fluid {
  padding: 0 15px;
}

.full {
  padding: 0;
}

/* ========== FLEXBOX UTILITIES ========== */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.gap-3 {
  gap: 12px;
}

.gap-2 {
  gap: 8px;
}

/* ========== HEADER LOGO ========== */
.header__logo,
.header-inline-logo,
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header__logo-image {
  display: block;
  height: auto;
  max-width: 100%;
}

/* ========== SEARCH BAR ========== */
.header__search-bar,
.header__search-form {
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}

.predictive-search__input {
  flex: 1;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  font-family: inherit;
}

.predictive-search__input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

/* ========== MENU STYLES ========== */
.header__inline-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.header__linklist {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.header__linklist-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* ========== ICONS ========== */
.header__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-width: 40px;
  min-height: 40px;
}

.header__icon-wrapper:hover {
  background-color: rgba(0,0,0,0.05);
  transform: scale(1.05);
}

.header__icon-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 20px;
  height: 20px;
}

/* ========== CART COUNT ========== */
.header__ap-cartcount,
.bubble-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* ========== WISHLIST ========== */
.header-wishlist {
  position: relative;
}

.icon-count {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
}

.d-none {
  display: none;
}

/* ========== USER MENU ========== */
.header-user {
  position: relative;
}

.wrapper-user {
  position: relative;
}

/* ========== VERTICAL MENU ========== */
.menu-vertical {
  display: none;
}

.menu-vertical_btn {
  display: none;
}

.vertical-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-title_vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* ========== CONTACT INFO ========== */
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.4;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* DESKTOP: 1200px and up */
@media (min-width: 1200px) {
  .header__inline-wrapper {
    gap: 30px;
  }

  .header__icon-list {
    gap: 15px;
  }

  .header__search-bar {
    min-width: 250px;
  }
}

/* TABLET: 768px to 1199px */
@media (max-width: 1199px) and (min-width: 768px) {
  .header__inline-wrapper {
    gap: 20px;
  }

  .header__icon-list {
    gap: 10px;
  }

  .header__search-bar {
    min-width: 180px;
  }

  .hd-pocket {
    display: none !important;
  }

  .header-contact {
    display: none;
  }

  .header__icon-wrapper {
    min-width: 36px;
    min-height: 36px;
    padding: 6px;
  }

  .header__logo-image {
    max-width: 100px !important;
  }
}

/* MOBILE TABLET: 576px to 767px */
@media (max-width: 767px) {
  .menu-vertical {
    display: flex;
  }

  .menu-vertical_btn {
    display: flex;
  }

  .header__inline-wrapper {
    display: none !important;
  }

  .header__icon-list {
    gap: 8px;
  }

  .header__search-bar {
    min-width: 140px;
    padding: 6px 10px;
  }

  .header__icon-wrapper {
    min-width: 36px;
    min-height: 36px;
    padding: 6px;
  }

  .header__logo-image {
    max-width: 90px !important;
  }

  .hd-lap,
  .hd-pocket {
    display: none !important;
  }

  .hd-phone {
    display: block !important;
  }

  .header-contact {
    display: none;
  }

  .header_wrapper {
    padding: 8px;
    gap: 8px;
  }
}

/* MOBILE: Below 576px */
@media (max-width: 575px) {
  .menu-vertical {
    display: flex;
  }

  .menu-vertical_btn {
    display: flex;
  }

  .header__inline-wrapper {
    display: none !important;
  }

  .header__icon-list {
    gap: 6px;
  }

  .header__search-bar {
    min-width: 120px;
    padding: 5px 8px;
  }

  .predictive-search__input {
    font-size: 12px;
    padding: 5px 8px;
  }

  .header__icon-wrapper {
    min-width: 32px;
    min-height: 32px;
    padding: 4px;
  }

  .header__logo-image {
    max-width: 80px !important;
  }

  .header_wrapper {
    padding: 6px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .hd-lap,
  .hd-pocket,
  .hd-phone {
    display: none !important;
  }
}

/* VERY SMALL: Below 360px */
@media (max-width: 359px) {
  .header__icon-list {
    gap: 4px;
  }

  .header__icon-wrapper {
    min-width: 28px;
    min-height: 28px;
    padding: 3px;
  }

  .header__logo-image {
    max-width: 70px !important;
  }

  .header_wrapper {
    padding: 4px;
    gap: 4px;
  }

  .header-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ========== UTILITY CLASSES ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== STICKY HEADER ========== */
ap-headerstore[sticky] {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ========== TRANSPARENT HEADER ========== */
ap-headerstore[transparent] {
  background: transparent;
}

ap-headerstore[transparent]:hover {
  background: var(--header-background, white);
}

/* ========== ANIMATION TRANSITIONS ========== */
.header__icon-wrapper,
.header__linklist-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== PRINT STYLES ========== */
@media print {
  ap-headerstore,
  .header {
    position: static;
    box-shadow: none;
  }

  .header__icon-wrapper:hover {
    background: transparent;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  .header__icon-wrapper,
  .header__linklist-link {
    transition: none;
  }

  .header__icon-wrapper:hover {
    transform: none;
  }
}