

/* start */
.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: #4d8e8f;
    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) {
     .shop-cart-icon:hover .shop-cart{
        display: none;
    }
    .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;
}

.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 */

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    --uib-size: 35px;
    --uib-color: black;
    --uib-speed: 1s;
    --uib-stroke: 3.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: calc(var(--uib-size) * 0.9);
  }

  .bar {
    width: var(--uib-stroke);
    height: 100%;
    background-color: var(--uib-color);
    transition: background-color 0.3s ease;
  }

  .bar:nth-child(1) {
    animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.45)
      infinite;
  }

  .bar:nth-child(2) {
    animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.3)
      infinite;
  }

  .bar:nth-child(3) {
    animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.15)
      infinite;
  }

  .bar:nth-child(4) {
    animation: grow var(--uib-speed) ease-in-out infinite;
  }

  @keyframes grow {
    0%,
    100% {
      transform: scaleY(0.3);
    }

    50% {
      transform: scaleY(1);
    }
  }
.Pop-up{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 600px;
    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: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    line-height: 1.6;
}


#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.global-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    min-height: 70px;
}

.global-header a{
    color: #212121;
}
.gb-menu {
    display: none;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}


.gb-logo {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.gb-logo:hover {
    transform: scale(1.05);
}

.gb-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}


.gb-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.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-nav-list:hover   .gb-nav-sub{
    display: block;
}
.gb-nav-sub-item{
    display: flex;
    padding: 10px ;  
    flex-wrap: wrap;
    justify-content: space-between;
}
.navLink-item{
    margin-top: 10px !important;
    width: 40%;
    display: block;
}
.navLink-item:hover{
   text-decoration: none;
}
.navLink {
    font-weight: 500;
    color: #2d3748;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navLink:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.navLink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navLink:hover::after {
    width: 80%;
}


.gb-cart-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}


.searchPanel {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 5px 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.searchPanel:hover {
    border-color: #667eea;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.searchField {
    outline: none;
    border: none;
    background: transparent;
    padding: 8px 0;
    width: 200px;
    font-size: 14px;
    color: #2d3748;
}

.searchField::placeholder {
    color: #a0aec0;
}

.searchIcon {
    cursor: pointer;
    color: #667eea;
    transition: color 0.3s ease;
    padding: 5px;
}

.searchIcon:hover {
    color: #764ba2;
}


.gb-icon {
    color: #2d3748;
    text-decoration: none;
    padding: 10px; 
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;  
    height: 40px;
}

.gb-icon:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateY(-2px);
}


.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
}


.site-footer {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-wide {
    grid-column: 1;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin-top: 10px;
    border-radius: 2px;
}

.footer-text {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 20px;
}


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}


.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item {
    margin-bottom: 8px;
}

.footer-link {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-link:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-link::before {
    content: '▶';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #667eea;
}

.footer-link:hover::before {
    opacity: 1;
    left: -10px;
}


.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #667eea;
}


@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-column-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .global-header {
        padding: 10px 15px;
        min-height: 60px;
    }
    
    .small-nav {
        display: none;
    }
    
    .gb-menu {
        display: block;
    }
    
    .gb-cart-icon {
        gap: 10px;
    }
    
    .searchPanel {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading::after {
        margin: 10px auto 0;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .global-header {
        padding: 8px 10px;
    }
    
    .gb-logo {
        max-width: 80px;
    }
    
    .gb-icon {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}
     