



/* start */
.menu-item-search{
    padding: 13px;
    display: grid;
    gap: 0px;
    background: #f9f9f9;
    align-items: center;
    grid-template-columns: 2fr 1fr;
}
.menu-searchField{
   outline: none;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #212121;
}
.menu-searchIcon{
        width: fit-content;
    background: #d9d9d9;
    padding: 7px 10px;
}
.empty{
    text-align: center;
}
.shop-cart{
    display: none;
    width: 350px;  
    background-color: #fff;
    position: absolute;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    top: 30px;
    right: -27px;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    color: #000;
    padding: 20px;
    z-index: 1002;
}
.shop-delete{
    background: #212121;
    width: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    flex: none;
}
.shop-cart-subtotal{
    font-weight: 600;
}
.shop-cart-icon:hover .shop-cart{
    display: block;
}
.shop-cart-footer .view_cart_btn{
    display: block;
    background-color: transparent;
    border: 1px solid #212121;
    text-align: center; 
}
.shop-cart::after{  
    content: ''; 
    position: absolute;
    top: -7px;
    right: 33px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(44deg);  
}
.shop-cart-total{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.chekc_btn{
    background-color: #212121;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.shop-cart-body{

    max-height: 400px;
    overflow-y: auto;
   
}
.shop-cart-body a{
    text-decoration: none;
    color: #212121;
}
.shop-cart-items{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.shop-cart-footer{
    padding: 10px 20px;
}
.shop-img img{ 
    object-fit: contain;
    width:50px;
    height: 50px;
}
.shop-info{
    padding: 0px 3px;
    text-align: left;
}

#to-top{
    width: 30px;
    line-height: 25px;
    background-color: #212121;
    border-radius: 3px;
    vertical-align: middle;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: none;
}
.mobile-menu-search {
    padding: 10px;
    display: flex;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
}
.mobile-menu-search .search-input {
    flex: 1;
    padding: 8px;
    border: none;
    background-color: transparent;
    outline: none;
}
.mobile-menu-search #jq-search-btn {
    padding: 8px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .search-input {  
        box-shadow: none;
    }
}
.header-action .fas.fa-search {
    position: absolute;
    right: 15px;
    color: #8914a2;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-action .fas.fa-search:hover {
    color: #4a90e2;
}
.cart-count{
    line-height: 20px;
    position: absolute;
    top: -11px;
    left: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: #e05151;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.side-menu {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    left: 0;
}
.big_hide{
    display: none;
}
.side-menu .menu-header {
    height: 50px;  
  color: #212121;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-weight: bold;
}

.side-menu .menu-close {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}

.side-menu .menu-list {
    list-style: none;
    padding: 10px 0;
}

.side-menu .menu-item {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.side-menu .menu-link {
    display: block;
    width: 90%;   
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.side-menu .menu-link:hover {
    background-color: #f9f9f9;
}

.side-menu .menu-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #666;
}

.side-menu .menu-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    transform-origin: center; 
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu .menu-arrow.expanded {
    transform: rotate(90deg);
}

.side-menu .submenu {
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.side-menu .submenu.expanded {
    max-height: 1000px;
}

.side-menu .submenu .menu-link {
    padding-left: 40px;
}

.side-menu .submenu  .menu-link {
    padding-left: 65px;
}


.content {
    margin-top: 60px;
    padding: 15px;
}

.content h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.successful_title{
    color: #58a81e;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px; 
    animation: flash 0.5s ease-in-out;
}
@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}
.Pop-up .quantity-control {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.Pop-up .quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.Pop-up .quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
    outline: none;
    font-size: 12px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* nodel */

.overlay .container {
   --uib-size: 45px;
    --uib-color: black;
    --uib-speed: 1.75s;
    position: relative;
    height: var(--uib-size);
    width: var(--uib-size);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate calc(var(--uib-speed) * 4) linear infinite;
  }

  .particle {
    position: absolute;
    top: 0%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;

    &:nth-child(1) {
      --uib-delay: 0;
      transform: rotate(8deg);
    }
    &:nth-child(2) {
      --uib-delay: -0.4;
      transform: rotate(36deg);
    }

    &:nth-child(3) {
      --uib-delay: -0.9;
      transform: rotate(72deg);
    }
    &:nth-child(4) {
      --uib-delay: -0.5;
      transform: rotate(90deg);
    }
    &:nth-child(5) {
      --uib-delay: -0.3;
      transform: rotate(144deg);
    }
    &:nth-child(6) {
      --uib-delay: -0.2;
      transform: rotate(180deg);
    }
    &:nth-child(7) {
      --uib-delay: -0.6;
      transform: rotate(216deg);
    }
    &:nth-child(8) {
      --uib-delay: -0.7;
      transform: rotate(252deg);
    }
    &:nth-child(9) {
      --uib-delay: -0.1;
      transform: rotate(300deg);
    }
    &:nth-child(10) {
      --uib-delay: -0.8;
      transform: rotate(324deg);
    }
    &:nth-child(11) {
      --uib-delay: -1.2;
      transform: rotate(335deg);
    }
    &:nth-child(12) {
      --uib-delay: -0.5;
      transform: rotate(290deg);
    }
    &:nth-child(13) {
      --uib-delay: -0.2;
      transform: rotate(240deg);
    }
  }

  .particle::before {
    content: '';
    position: absolute;
    height: 17.5%;
    width: 17.5%;
    border-radius: 50%;
    background-color: var(--uib-color);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
    --uib-d: calc(var(--uib-delay) * var(--uib-speed));
    animation: orbit var(--uib-speed) linear var(--uib-d) infinite;
  }

  @keyframes orbit {
    0% {
      transform: translate(calc(var(--uib-size) * 0.5)) scale(0.73684);
      opacity: 0.65;
    }
    5% {
      transform: translate(calc(var(--uib-size) * 0.4)) scale(0.684208);
      opacity: 0.58;
    }
    10% {
      transform: translate(calc(var(--uib-size) * 0.3)) scale(0.631576);
      opacity: 0.51;
    }
    15% {
      transform: translate(calc(var(--uib-size) * 0.2)) scale(0.578944);
      opacity: 0.44;
    }
    20% {
      transform: translate(calc(var(--uib-size) * 0.1)) scale(0.526312);
      opacity: 0.37;
    }
    25% {
      transform: translate(0%) scale(0.47368);
      opacity: 0.3;
    }
    30% {
      transform: translate(calc(var(--uib-size) * -0.1)) scale(0.526312);
      opacity: 0.37;
    }
    35% {
      transform: translate(calc(var(--uib-size) * -0.2)) scale(0.578944);
      opacity: 0.44;
    }
    40% {
      transform: translate(calc(var(--uib-size) * -0.3)) scale(0.631576);
      opacity: 0.51;
    }
    45% {
      transform: translate(calc(var(--uib-size) * -0.4)) scale(0.684208);
      opacity: 0.58;
    }
    50% {
      transform: translate(calc(var(--uib-size) * -0.5)) scale(0.73684);
      opacity: 0.65;
    }
    55% {
      transform: translate(calc(var(--uib-size) * -0.4)) scale(0.789472);
      opacity: 0.72;
    }
    60% {
      transform: translate(calc(var(--uib-size) * -0.3)) scale(0.842104);
      opacity: 0.79;
    }
    65% {
      transform: translate(calc(var(--uib-size) * -0.2)) scale(0.894736);
      opacity: 0.86;
    }
    70% {
      transform: translate(calc(var(--uib-size) * -0.1)) scale(0.947368);
      opacity: 0.93;
    }
    75% {
      transform: translate(0%) scale(1);
      opacity: 1;
    }
    80% {
      transform: translate(calc(var(--uib-size) * 0.1)) scale(0.947368);
      opacity: 0.93;
    }
    85% {
      transform: translate(calc(var(--uib-size) * 0.2)) scale(0.894736);
      opacity: 0.86;
    }
    90% {
      transform: translate(calc(var(--uib-size) * 0.3)) scale(0.842104);
      opacity: 0.79;
    }
    95% {
      transform: translate(calc(var(--uib-size) * 0.4)) scale(0.789472);
      opacity: 0.72;
    }
    100% {
      transform: translate(calc(var(--uib-size) * 0.5)) scale(0.73684);
      opacity: 0.65;
    }
  }
.Pop-up{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 600px;
        min-width: 300px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    animation: modalFadeIn 0.5s;
}
.Pop-up .top_header{
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: end;
}
.Pop-up .products_box{
  padding: 20px;
}
.Pop-up  .box_price .discount_price{
    text-decoration: line-through;
    color: #2a2828;
    font-size: 14px;
}
.Pop-up  .box_price .price{    
    color: #2a2828;
    font-weight: 500;
    font-size: 16px;
    margin-left: 15px;
}
.Pop-up .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Pop-up  .btn  .button{
    padding: 10px;
    background:#212121;
    border-radius: 5px;
    margin: 0px 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.Pop-up select {
    padding: 2px 5px;
    width: 300px;
    height: 2.75rem;
    border: 1px solid #ddd;
    font-size: 12px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 -1.4em 1em 0 rgba(0, 0, 0, .02);
    outline: none;
}
.Pop-up .sku_code{
    margin-top: 10px;
}

.overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;   
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
/* end */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Jost', sans-serif;
    background: #f4f4f4;
    /* height: 100vh; */
}
#header{
     position: sticky;
     top: 0px;   
        z-index: 299;
}
.global-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
    min-height: 36px; 
    box-shadow: 0 0 10px #0000001b;   
 
}
.gb-nav{
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.gb-logo{
    max-width: 140px;
   display: flex;
   align-items: center;
}
.global-header a{
    font-weight: 500;
    color: #212121;
    margin: 0px 10px;
    text-decoration: none;
}
.login-m{
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60px;
}
.gb-nav-list{
    position: relative;
}
.gb-nav-sub{
    width: 300px;    
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001b;
    padding: 10px;
    display: none;
}
.gb-logo img{
  max-width: 100%;
    max-width: 100%;
    object-fit: contain;
}
.gb-nav-list:hover   .gb-nav-sub{
    display: block;
}
.gb-nav-sub-item{
    display: flex;
    padding: 10px ;  
    flex-wrap: wrap;
}
.navLink-item{
    margin-top: 10px !important;
    width: 40%;
    display: block;
}
.navLink-item:hover{
   text-decoration: underline;
}
.gb-cart-icon{
    display: flex;
    align-items: center;
}
.searchPanel{
    display: flex;
    align-items: center;
}
.searchPanel input{
    outline: none;
    border: none;    
}
.searchIcon{
    cursor: pointer;
}
.gb-icon{   
    color: #212121;
    margin: 0px 10px;
    text-decoration: none;
}
.gb-menu{
    display: none;
}
.footer-grid{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.social-links{
    font-size: 16px;
}
.footer-links{
    list-style: none;
}
.site-footer{
    /* background: #ece9e2; */
    padding: 20px 10px;
    color: #212121;
     max-width: 1440px;
    margin: 0 auto;
}
.footer-links .footer-link{
    display: block;
    color: #212121;
    text-decoration: none;
    margin-top: 10px;
}
.footer-links .footer-link:hover{
  text-decoration: underline;
}
.footer-bottom{
    margin-top: 20px;
    text-align: center;
}
.footer-column{
    width: 25%;
    margin-top: 10px;
}
.footer-text{
    margin: 10px 0px;
}
.footer-heading::after{
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #212121;
    margin-top: 10px;
}
/* ===== Category Navigation ===== */
.cat-nav-all {
    position: relative;
    margin-right: 6px;
}
.cat-nav-all-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #212121;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cat-nav-all-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 33, 33, 0.3);
}
.cat-nav-all-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 680px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.cat-nav-all-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 40px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid #ece9e2;
    border-top: 1px solid #ece9e2;
}
.cat-nav-all:hover .cat-nav-all-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cat-nav-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}
.cat-nav-group-title {
    display: block;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 2px solid #212121;
}
.cat-nav-group-title:hover {
    color: #212121;
}
.cat-nav-group-subs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cat-nav-group-subs a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    padding: 3px 0;
    transition: all 0.25s ease;
}
.cat-nav-group-subs a:hover {
    color: #212121;
    padding-left: 5px;
}
.cat-nav-link {
    padding: 6px 10px;
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.cat-nav-link:hover {
    background: #f5f5f5;
    color: #212121;
}
.cat-nav-hot {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff !important;
    border-radius: 20px;
    padding: 4px 12px !important;
    font-weight: 600;
    font-size: 12px;
}
.cat-nav-hot:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.cat-nav-hot i {
    animation: firePulse66 1.5s ease-in-out infinite;
}
@keyframes firePulse66 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
/* Enhance existing gb-nav-sub for header nav */
.gb-nav-sub {
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 14px;
}
.gb-nav-sub-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}
.gb-nav-sub-item .navLink-item {
    width: 100%;
    margin-top: 0;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.25s ease;
    color: #212121;
}
.gb-nav-sub-item .navLink-item:hover {
    background: #f5f5f5;
    color: #212121;
    text-decoration: none;
}
@media (max-width: 768px) {
     .shop-cart-icon:hover .shop-cart{
        display: none;
    }
    .small-nav {  
        display: none;
    }
    .gb-menu {
       display: block;
    }
    .footer-column{
        width: 100%;      
        margin-top: 30px;
    }
    .global-header{
        padding:10px;
    }
}
     