@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&display=swap');
.section-title {
    font-size: 1.5rem;
    color: #844952;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--gs-body-background);
    color: var(--gs-body-text);
}

.cursor-pointer {
    cursor: pointer;
}

.modal {
    border-radius: var(--gs-border-radius);
}

.modal .modal-header {
    border-bottom: 0; 
    padding-bottom: 0; 
}

.modal .modal-footer {
    border-top: 0;
    padding-top: 0;
}

.custom-container {
    width: 92vw;
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .custom-container {
        width: 92vw;
    }
}

.hellobar {
    padding: 4px 0;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--gs-hellobar-background);
    color: var(--gs-hellobar-text);
    overflow: hidden;
    position: relative;
    height: 36px; /* slim height */
}

.scrolling-text-container:hover .scrolling-text {
    animation-play-state: paused;
}

.scrolling-text {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
}

/* Outer wrapper */
.scrolling-text-inner {
    display: flex;
    width: max-content; /* Allow continuous horizontal expansion */
}

/* Animated scrolling content */
.scrolling-text {
    display: inline-flex;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    gap: 40px;
    animation: scroll-left 10s linear infinite;
}

/* Repeat item spacing */
.scrolling-text span {
    padding: 0 24px;
}

/* Keyframes for right-to-left scrolling */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.header {
    background-color: var(--gs-header-background);
    box-shadow: 0 2px 2px rgb(0, 0, 0, .05);
}

.header .logo img {
    height: 60px;
    width: auto;
}

/* Medium screens (Tablet) */
@media (max-width: 992px) {
    .header .logo img {
        height: 60px;
    }
}

/* Small screens (Mobile) */
@media (max-width: 576px) {
    .header .logo img {
        height: 50px;
    }
}

/* ================== UPDATED MENU STYLES START ================== */
.menu { 
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .menu {
        width: 100%;
    }
}

.menu-toggle {
    border: 0;
    width: 50px;
    height: 50px;
    background-color: #fff;
}

.header .menu {
    margin: 0;
    padding: 3px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header .menu li {
    list-style: none;
    position: relative;
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    white-space: nowrap;
}

.header .menu>li>a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--gs-menu-text);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header .menu>li:hover>a {
    background-color: var(--gs-body-background);
    color: var(--gs-body_background);
}

.header .menu > li.has-child > a::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

/* Desktop menu styles */
@media (min-width: 769px) {
    .header .menu > li.has-child:hover > ul {
        display: block;
        animation: fadeIn 0.2s ease-out;
    }
    
    .header .menu > li > ul {
        background-color: var(--gs-body-background);
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 10px 0;
        z-index: 100;
        text-align: left;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: 70vh;
        overflow-y: auto;
        border-radius: 8px;
        min-width: 200px;
    }
    
    .header .menu > li > ul > li > a {
        display: block;
        text-decoration: none;
        color: var(--gs-body_background);
        padding: 8px 20px;
        min-width: 120px;
        transition: all 0.2s ease;
    }
    
    .header .menu > li > ul > li > a:hover {
        background-color: rgba(0,0,0,0.05);
        padding-left: 25px;
    }
    
    .header .menu > li.has-child:hover > a::after {
        transform: rotate(180deg);
    }
    
    /* Multi-column submenus */
    .column-container-2,
    .column-container-3,
    .column-container-5 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 15px !important;
    }
    
    .column-container-2 > li {
        width: calc(50% - 10px);
    }
    
    .column-container-3 > li {
        width: calc(33.33% - 14px);
    }
    
    .column-container-5 > li {
        width: calc(20% - 16px);
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .header .menu {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--gs-header-background);
        z-index: 100;
        padding: 10px;
        align-items: start;
    }
    
    .header .menu.show {
        display: flex;
        max-height: 1000px;
    }
    
    .header .menu > li > a {
        padding: 12px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .header .menu li.has-child::after {
        font-size: 18px;
        transition: transform 0.2s ease;
    }
    
    .header .menu li.has-child > a.active::after {
        transform: rotate(45deg);
    }
    
    .header .menu > li > ul,
    .header .menu > li > ul > li > ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        position: static;
        box-shadow: none;
        padding-left: 20px !important;
        background-color: rgba(0,0,0,0.03);
    }
    
    .header .menu > li > ul.open,
    .header .menu > li > ul > li > ul.open {
        max-height: 1000px;
        display: block !important;
    }
    
    .header .menu > li > ul > li > a {
        padding: 10px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nested menu styles for all screen sizes */
.header .menu li.has-child > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    background-color: white;
    min-width: 150px;
}

.header .menu li.has-child ul li.has-child > ul {
    display: none;
    position: absolute;
    top: -5px;
    left: 100%;
    margin-left: 10px;
    right: auto;
    z-index: 1100;
    background-color: white;
    min-width: 150px;
    border-radius: 8px;
}

.header .menu li.has-child ul li.has-child {
    position: relative;
}

.header,
.header .menu, 
.header .menu li { 
    overflow: visible; 
}

/* Reset link styles for all menu levels */
.header .menu > li > ul > li >ul > li > a {
    color: var(--gs-body_background);    
    text-decoration: none;
    padding: 12px 0px; 
    background-color: var(--gs-body-background);
    display: block;
    left: 0%;
    margin: 0; 
    z-index: 100; 
    text-align: left; 
}

/* 4th tier submenu spacing */
.header .menu li.has-child ul li.has-child ul li.has-child > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0px;
    z-index: 1200;
    background-color: white;
    border-radius: 8px;
}

/* ================== UPDATED MENU STYLES END ================== */

.header-2,
.header-3,
.header-4,
.header-5,
.header-6 {
    box-shadow: none;
    position: relative;
}

.header-2 .menu>li>a,   
.header-3 .menu>li>a,
.header-4 .menu>li>a,
.header-5 .menu>li>a,
.header-6 .menu>li>a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.header .actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .actions a {
    text-decoration: none;
    color: inherit;
    text-decoration: none;
}

.header-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
}

.header-2,
.header-3 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.header-2 .menu {
    justify-content: center;
}

.header-2 .menu,
.header-3 .menu,
.header-4 .menu {
    background-color: var(--gs-menu-background);
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.header-2 .logo,
.header-3 .logo,
.header-4 .logo ,
.header-5 .logo {
    margin: 10px 10px;
}

.header-2.logo-sm .actions,
.header-3.logo-sm .actions,
.header-4.logo-sm .actions {
    position: absolute;
    top: 14px;
    right: 30px;
}

.header-2.logo-md .actions,
.header-3.logo-md .actions,
.header-4.logo-md .actions {
    position: absolute;
    top: 36px;
    right: 30px;
}

.header-2.logo-lg .actions,
.header-3.logo-lg .actions,
.header-4.logo-lg .actions {
    position: absolute;
    top: 46px;
    right: 30px;
}

.header-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-4 .menu {
    justify-content: center;
}

.header-5 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 10px;
    position: relative;
}

.header-5 .menu {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.header-5 .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-self: flex-start;
    margin-bottom: 10px;
}

.header-5 .actions {
    order: 3;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.header-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px;
  width: 100%;
}

.header-6 .logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.header-6 .logo img {
  height: 80px;
  width: auto;
}

.header-6 .header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-6 .menu {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.header-6 .actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

header.fixed {
    -webkit-transform: translate3d(0, -95px, 0);
    -ms-transform: translate3d(0, -95px, 0);
    transform: translate3d(0, -95px, 0);
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
}

@media (max-width: 769px) {
    header.fixed {
        transform: none !important;
    }
}

.header .btn-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    color: var(--gs-header-background) !important;
    background-color: var(--gs-header-text);
    padding: 5px 12px;
    border-radius: 100px;
    position: relative;
}

.header .btn-cart .cart-alert {
    position: absolute;
    color: var(--gs-header-background) !important;
    background-color: var(--gs-header-text);
    border-radius: 100px;
    padding: 2px 6px;
    font-size: 10px;
    white-space: nowrap;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.header .btn-cart .cart-count {
    text-decoration: none;
    background-color: var(--gs-header-background);
    color: var(--gs-header-text);
    border-radius: 100px;
    padding: 1px 8px;
    font-size: 10px;
}

.glide-slider-section {
     width: 100%;
   /* max-width: 1200px;          */
  margin: 0 auto 2rem auto;  
  overflow: hidden;
}

.glide__slide {
  display: flex;
  justify-content: center;  
  align-items: center;     
}

.slider-image-container {
  width: 100%;
  height: 100%;             
  overflow: hidden;
  position: relative;
}

.slider-image-container img {
  width: 100%;
  height: 100%;
}

.glide__slide img {
    width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block; 
} 

/* Glide Bullets Container */
.glide__bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

/* Bullet Styles */
.glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    box-shadow: none;
}

/* Active Bullet */
.glide__bullet.glide__bullet--active {
    background-color: #a19c9c;
    transform: scale(1.1);
}

/* Hover Effect */
.glide__bullet:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Ensure slides container has proper spacing */
.glide__slides {
    padding-bottom: 20px;
}

.glide-video-section {
  max-width: 100vw;
  overflow: hidden;
  margin-bottom: 2rem;
}

.video-container {
  width: 100vw;
  margin-top: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; 
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain; 
    display: block;
}

.banner-image-wrapper {
    width: 100%;
      height: 100%;          
    overflow: hidden;
  overflow: hidden;
   background-color: #f8f8f8;  
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
 }

.category img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.category a {
    color: inherit;
    text-decoration: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.categories-square .category img {
    border-radius: var(--gs-border-radius);
}

.categories-rounded .category img {
    border-radius: 100%;
}

.category .image,
.product .image {
    width: 100%;
}

.category img,
.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--gs-border-radius);
}

.category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    margin-top: 10px;
    color: inherit;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.categories-1 .category {
    padding: 0.25rem;
    border: 1px solid rgba(128, 128, 128, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: var(--gs-border-radius);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.categories-2 .category {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.categories-3 .category,
.categories-5 .category {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.categories-3 .category .name,
.categories-5 .category .name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.categories-4 .category img,
.categories-4 .category .empty-placeholder,
.categories-5 .category img,
.categories-5 .category .empty-placeholder {
    border-radius: 50%;
}

.categories-2 .category img,
.categories-3 .category img,
.categories-4 .category img,
.categories-5 .category img,
.categories-2 .category .empty-placeholder,
.categories-3 .category .empty-placeholder,
.categories-4 .category .empty-placeholder,
.categories-5 .category .empty-placeholder {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.product {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    border-radius: var(--gs-border-radius);
}

.product .product-wrap {
    padding: 4px;
}

.product .product-meta {
    padding: 0 6px;
}

.product:hover .product-wrap {
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.13);
    border-radius: var(--gs-border-radius);
}

.product .image {
    width: 100%;
    margin-bottom: 8px;
}

.product .dummy {
    aspect-ratio: 1/1;
    object-fit: cover;
    background-color: #E4E4E7;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.5;
    border-radius: var(--gs-border-radius);
}

.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--gs-border-radius);
    border: 1px solid rgb(233, 233, 233);
}

.product .name {
    color: rgb(157, 159, 164);
    font-size: 12px;
    font-weight: 400;
    height: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.product .price {
    display: flex;
    align-items: center;
    gap: 8px
}

.product .new_price {
    font-size: 16px;
    font-weight: 600;
}

.product .old_price {
    font-size: 10px;
    text-decoration: line-through;
    opacity: 0.5;
}

.products-1 .product {
    border: 1px solid #ededed;
    border-radius: var(--gs-border-radius);
}

.product-images-top,
.product-images-left,
.product-images-right {
    width: 100%;
}

.main-image {
    width: 100%;
    margin-bottom: 14px;
}

.main-image img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail-images > div {
    flex: 0 0 auto;
}

.thumbnail-images img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    object-fit: cover;
}

.thumbnail-images .active img {
    border-color: #0d6efd;
}

.product-images-top .thumbnail-images {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
@media (min-width: 767px) {

.product-images-left,
.product-images-right {
    display: flex;
    gap: 14px;
}

.product-images-left {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.product-images-left .thumbnail-images,
.product-images-right .thumbnail-images {
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
}

.product-images-left .main-image,
.product-images-right .main-image {
    flex: 1;
    max-width: calc(100% - 134px);
}
}
.thumbnail-images::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.js-image-zoom__zoomed-image {
    border-radius: var(--gs-border-radius);
    border: 1px solid rgb(233, 233, 233);
    background-color: #000;
}

.product-listing .breadcrumbs {
    font-size: 14px;
}

.product-listing .thumbnail-images::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 10px;
}

.product-listing .thumbnail-images::-webkit-scrollbar-track {
    background: transparent;
}

.product-listing .thumbnail-images::-webkit-scrollbar-thumb {
    background: #ddd;
    border: 3px solid #ddd;
}

.product-listing .price {
    margin-bottom: 1.5rem
}

.product-listing .price .new_price {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-listing .price .old_price {
    font-size: 14px;
    font-weight: 300;
    text-decoration: line-through;
    letter-spacing: 1px;
}

.product-listing .price .caption {
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-check-input[type=checkbox] {
    border-radius: 6px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    ;
}

.form-check-input,
.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:focus {
    border-color: var(--gs-button-background);
}

.form-check-input:checked {
    background-color: var(--gs-button-background);
    border-color: var(--gs-button-background);
    box-shadow: none;
}

.primary-btn {
    padding: 14px 30px;
    background-color: var(--gs-button-background);
    border: 1px solid var(--gs-button-background);
    border-radius: var(--gs-border-radius);
    color: var(--gs-button-text);
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

.primary-btn:hover {
    box-shadow: inset 1000px 1000px 5px 0px rgba(0, 0, 0, 0.2);
}

.primary-btn:disabled {
    border-color: #ccc;
    background-color: #ccc;
    cursor: not-allowed;
    pointer-events: all !important;
}

.primary-btn:disabled:hover {
    box-shadow: none;
}

.outline-btn {
    padding: 14px 30px;
    background-color: var(--gs-body-background);
    border: 1px solid var(--gs-button-background);
    color: var(--gs-button-background);
    border-radius: var(--gs-border-radius);
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

.outline-btn:hover {
    background-color: var(--gs-button-background);
    color: var(--gs-button-text);
}

.disable-btn {
    padding: 14px 30px;
    background-color: #ddd;
    border: 1px solid #ddd;
    border-radius: var(--gs-border-radius);
    color: #000;
    cursor: not-allowed;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

.collapsable-title[aria-expanded=false] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 16px;
}

.collapsable-title[aria-expanded=true] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-up'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 16px;
}

.shake {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.cart-item img {
    width: 100%;
    height: auto;
    border-top-left-radius: var(--bs-border-radius);
}

.cart-item .name {
    font-weight: bold;
}

.qty-input {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--gs-border-radius);
    padding: 3px;
}

.qty-input button {
    background-color: #ddd;
    border: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gs-border-radius);
    font-size: 10px;
}

.cart-item label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.5;
}

.footer a {
    text-decoration: none;
    color: inherit;
}

.footer {
    background-color: var(--gs-footer-background);
    color: var(--gs-footer-text);
}

.footer .logo img {
    width: 180px;
    height: auto;
}

.footer h3 {
    font-size: 18px;
}

.footer .pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-1 {
    padding: 60px 40px;
}

.footer-1 .pages {
    margin-top: 30px;
}

.footer-2 {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-open {
    display: block;
    border-bottom: 1px solid var(--bs-border-color);
    padding: 10px 10px 20px 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
}

.filter-open h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

.filter-group {
    border-bottom: 1px solid var(--bs-border-color);
    padding: 10px;
}

.filter-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option label {
    opacity: 0.5;
}

.filters-footer {
    position: sticky;
    bottom: 0px;
    z-index: 99;
    background: var(--gs-body-background);
}

.form-check-input {
    margin: 0;
}

.page-container {
    width: 92vw;
    max-width: 720px;
    margin: 0 auto;
}


.btn-search {
  cursor: pointer;
}

.search-wrap {
  display: none;
  position: absolute;
  right: 0;
  padding-top: 10px;
  width: 300px;
  max-width: 70vw;
  top: -18px;
  z-index: 998;
}

.search-close {
  position: absolute;
  cursor: pointer;
  right: 5px;
  top: 10px;
  padding-top: 0px;
  z-index: 999;
}

.search-wrap.active {
  display: block;
}

.ico {
  position: relative;
  z-index: 999 !important;
}

.search-form {
  position: relative;
  margin-right: 20px;
  width: 100%;
}

.search-form .results .search-thumbnail {
  width: 200px;
  background-position: center center !important;
  background-size: cover !important;
  border-radius: var(--border-radius);
  margin-right: 15px;
}

.search-form .results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: solid #dddfe0 1px;
  z-index: 100;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  max-height: 50vh;
  overflow-y: auto;
}

.search-form.active .results {
  display: block;
}

.search-form.active #search {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.search-form .results li {
  list-style: none;
  border-bottom: solid #dddfe0 1px;
}

.search-form .results li img {
  border-radius: var(--border-radius);
}

.search-form .results li:last-of-type {
  border-bottom: 0;
}

.search-form .results li a {
  display: block;
  padding: 10px;
  color: initial;
}

@media screen and (max-width: 768px) {
  body {
    /*padding-top: 117px !important;*/
  }

  .mobile-header .search-form .results {
    top: 120%;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    left: 10px !important;
    right: 10px !important;
  }

  .mobile-search-wrap{
    display: block !important;
  }

  .btn-search{
    display: none !important;
  }

  .search-form-content{
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .btn-search{
    display: block;
  }

  .mobile-search-wrap{
    display: none !important;
  }
}
.mobile-search-form .search-form {
  width: 100% !important;
  max-width: 100% !important;
}
.badge-stock {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
    color: #fff;
    z-index: 10;
}

.badge-stock.success {
    background-color: #28a745; 
}
.badge-stock.warning {
    background-color: #ffc107; 
    color: #000;
}
.badge-stock.danger,
.badge-stock.out {
    background-color: #dc3545; 
}

.main-badge-stock {
 
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
    color: #fff;
}

.main-badge-stock.success {
    background-color: #28a745; 
}
.main-badge-stock.warning {
    background-color: #ffc107; 
    color: #000;
}
.main-badge-stock.danger,
.main-badge-stock.out {
    background-color: #dc3545; 
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: #131314;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #e3e3e3;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
  border-color: #8e918f;
  text-decoration: none !important;
}

.gsi-material-button:hover {
  color: #fff;
  text-decoration: none !important;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #13131461;
  border-color: #8e918f1f;
}

.gsi-material-button:disabled .gsi-material-button-state {
  background-color: #e3e3e31f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: white;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: white;
  opacity: 8%;
}

.or {
  display: flex;
  justify-content: center;
  align-items: center;
  color: grey;
}

.or:after,
.or:before {
  content: "";
  display: block;
  background: grey;
  width: 30%;
  height: 1px;
  margin: 0 10px;
}



/* navbar */

.mobile-header-fixed {
  position: fixed;
  -webkit-transform: translate3d(0, -157px, 0);
  -ms-transform: translate3d(0, -157px, 0);
  transform: translate3d(0, -157px, 0);
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  position: fixed;
}

header .icon-menu {
  position: absolute;
  right: 30px;
  top: 39px;
  display: flex;
  align-items: center;
}

header .icon-menu a {
  color: inherit;
}

header .icon-menu li:hover,
header .icon-menu li:hover a {
  color: var(--secondary-color);
  text-decoration: none;
}

header .icon-menu li {
  list-style: none;
  padding: 4px;
  margin: 5px 8px;
  font-size: 17px;
}

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

header .cart-icon span {
  font-size: 12px;
  margin-left: 5px;
  margin-top: -1px;
}

header .header-top {
  position: relative;
  padding: 25px 0;
  display: flex;
}

header .header-left {
  margin-right: auto;
}

header .header-center {
  margin-right: auto;
  margin-left: auto;
}

header .header-right {
  margin-left: auto;
}

header .logo {
  padding: 15px 15px 15px 15px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

header .logo a {
  display: inline-block;
}

header .logo img {
  width: 220px;
  height: auto;
}

#search {
  background: #ffffff;
  border: 0;
  padding: 10px 30px;
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid #dddfe0;
}

#search:focus {
  outline: 0;
}

header .header-nav {
  text-align: center;
  width: 100%;
}

header .header-nav li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
}

header .header-nav li a {
  display: block;
  color: inherit;
  padding: 5px 20px;
  font-weight: bold;
}

header .header-nav li a:hover {
  text-decoration: none;
}

header {
  background: var(--header-background);
}

header .nav-wrap-bg {
  /* background: #FFFFFF; */
}

header nav {
  display: block;
  border-width: 1px 0;
  display: block;
  border-radius: 4px;
  /*margin-bottom: 20px;*/
  /*margin-top: 5px;*/
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*border-bottom: 1px solid #eee;*/
  margin-left: 30px;
}

header nav>li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  position: relative;
  margin: 0;
}

header nav>li.title>a {
  color: #000000;
  font-weight: bold;
  line-height: 1.9em;
  margin-bottom: 0;
}

header nav>li>a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px 18px;
  color: inherit;
  /*border-top-left-radius: 8px;*/
  /*border-top-right-radius: 8px;*/
  /* border-bottom: 1px solid transparent; */
}


header nav>li.no-child>a {
  /*border-bottom-left-radius: 8px;*/
  /*border-bottom-right-radius: 8px;*/
}

header nav>li>a:hover,
header nav>li:hover>a {
  /*background-color: #ffffff; */
  color: #000000;
  border-color: #000000;
}

header nav>li>a:hover {
  text-decoration: none;
}

header nav>li:hover>ul {
  display: block;
}

header nav>li>ul {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0%;
  margin: 0;
  padding: 10px 0;
  background: #ffffff;
  z-index: 100;
  text-align: left;
  /* box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); */
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 8px 5px;
  border-radius: 10px;
  /* max-height: 60vh !important; */
}

header nav>li>ul>li:hover,
header nav>li>ul>li:hover a {
  color: #000000;
}


header nav>li>ul>li {
  list-style: none;
  display: block;
  min-width: 220px;
}

header nav>li>ul>li>a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 20px;
}

header nav>li>ul>li>a:hover {
  text-decoration: none;
}
.menu-item>ul.visible {
  opacity: 1;
  visibility: visible;
}

.menu-item>ul.hidden {
  opacity: 0;
  visibility: hidden;
}

header nav > li > ul.visible-nav {
  display: block;
}

.menu-item.visible-nav {
  display: block;
  opacity: 1;
}

.child-menu-popover-container {
  display: none;
}

.child-menu-popover-container.show {
  display: block;
}

.popover {
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: none; 
  min-width: 220px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 8px 5px;
  border-radius: 10px;
}

.popover .popover-header {
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  border-bottom: none;
  padding: 16px 18px;
  margin: 0;
}

.popover .popover-body {
  padding: 0;
  background: #ffffff;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 8px 5px;
  border-radius: 10px;
}

.popover-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

.popover-list:hover .popover-item {
  display: block;
  margin: 0;
}

.popover-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  color: var(--body-primary) !important;
}

.popover-item a:hover {
  color: #000000;
  text-decoration: none;
}


.custom-nav nav > ul > ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.custom-nav .sub-sub-menu a:hover {
  text-decoration: none;
  color: #000000;
}

.custom-nav .sub-sub-menu a {
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: inherit;
}

.custom-nav .sub-menu {
    position: relative;
}

.custom-nav .sub-sub-menu {
    display: none;
    position: absolute;
    z-index: 300;
    
    left: 100%;
    top: -20%;

    background: #fff;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    list-style: none;
    margin: 0px;
    padding: 0px;

    overflow-y: scroll;
    max-height: 150px;

    /* max-height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory; */

    /* overflow: auto; */
}

.custom-nav .sub-menu:hover .sub-sub-menu {
  display: block;
} 



.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1039;
  background: var(--header-background);
}


.mobile-header .offer-bar-wrap {
  position: relative;
}

.mobile-header.with-offer-bar .offer-bar-wrap {
  margin-top: 50px;
}

.mobile-header .logo {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 0;
}

.mobile-header .logo a {
  display: inline-block;
}

.mobile-header .logo img {
  /*max-height: 70px;*/
  width: 124px;
  max-width: 124px;
  height: auto;
}

.mobile-header .right-icons {
  position: absolute;
  top: 22px;
  right: 15px;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-header .btn-cart i {
  font-size: 30px;
}

.mobile-header .ico-search {}

.mobile-header .menu-toggle {
  position: absolute;
  top: 22px;
  left: 15px;
  cursor: pointer;
}

.mobile-header .menu-toggle i {
  font-size: 30px;
}

.mobile-search-form {
  padding: 5px 20px;
  border-top: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
}

.mobile-search-form .search-form {
  width: 100% !important;
  max-width: 100% !important;
}

.mobile-search-form input {
  background: #FFFFFF !important;
  border: 1px solid #F2F2F2 !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  width: 100% !important;
}

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  transition: width 2s;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: 80vw;
  z-index: 99993;
  padding: 20px 0 20px 0px;
  background: #FFFFFF;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  -ms-transition: all 3s ease;
  transition: all 3s ease;
}

.mobile-nav.active .nav-wrap {
  left: 0;
}

.mobile-nav .nav-wrap>li {
  list-style: none;
  display: block;
}

.mobile-nav .nav-wrap>li>a {
  position: relative;
  display: block;
  padding: 20px;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav .nav-wrap>li.is-dropdown>a:before {
  content: " ";
  position: absolute;
  right: 15px;
  top: 25px;
  width: 20px;
  height: 20px;
  color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.mobile-nav .nav-wrap>li.is-dropdown.active>a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.mobile-nav .nav-wrap>li>ul {
  display: none !important;
  padding: 0 0 0 0;
}

.mobile-nav .nav-wrap>li>ul.active {
  display: block !important;
}

.mobile-nav .nav-wrap>li>ul>li {
  list-style: none;
  display: block;
}


.mobile-nav .nav-wrap li.is-dropdown-2 > a::before {
  content: " ";
  position: absolute;
  right: 15px;
  /* top: 25px; */
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}


.mobile-nav .nav-wrap li.is-dropdown-2.active > a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.mobile-nav .nav-wrap li.is-dropdown-2 > ul.sub-sub-menu {
  display: none; 
  color: inherit;
  background: rgb(0 0 0 / 0.15);
  border-left: 3px solid;
}
.mobile-nav .nav-wrap li.is-dropdown-2 > ul {
  padding-left: 0px;
}
.mobile-nav .nav-wrap li.is-dropdown-2 > ul > li {
  color: black;
}
.mobile-nav .nav-wrap li.is-dropdown-2 > ul > li > a {
  padding: 20px;
  text-decoration: none;
  color: black;
  background-color: #fff0;
}

.mobile-nav .nav-wrap li.is-dropdown-2.active > ul.sub-sub-menu {
  display: block;
}

.mobile-nav .nav-wrap li.is-dropdown-2 > ul.sub-sub-menu > li {
  list-style: none;
  display: block;
}

.mobile-header .header-nav ul li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}



.mobile-nav .nav-wrap>li>ul>li>a {
  display: block;
  padding: 20px;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.07);
}

.mobile-header .header-nav {
  text-align: center;
}

.mobile-header .header-nav li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.mobile-header .header-nav li a {
  display: block;
  color: inherit;
}

.mobile-header .header-nav li a:hover {
  text-decoration: none;
}


.mobile-header .header-nav {
  margin-bottom: 30px;
}

.desktop-nav {
    display: block;
}

@media screen and (min-width: 961px) {

  .menu-toggle {
    display: none !important;
  }

  .desktop-nav{
    display: block;
  }
}

/*@media screen and (max-width: 765px) {*/
@media screen and (max-width: 960px) {

  /* body {
    padding: 69px 0 0 0;
  } */

  body.with-offer-bar {
    padding-top: 120px;
  }

  header {
    display: none;
  }

  header .logo {
    /* display: none; */
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav{
    display: none !important;
  }

}

.heading {
  padding: 50px 0 30px 0;
  text-align: center;
}

.heading.center {
  padding: 30px 0;
  text-align: center;
}

.heading h1 {
  font-size: 41px;
  font-weight: 400;
  margin: 0 0 0 0px;
  font-family: 'Libre Baskerville', serif;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Libre Baskerville', serif !important;
} */

@media screen and (max-width: 768px) {
  body {
    /*padding-top: 117px !important;*/
  }

  .desktop-nav{
    display: none !important;
  }

  .mobile-header .search-form .results {
    top: 120%;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    left: 10px !important;
    right: 10px !important;
  }

  .heading h1 {
    font-size: 26px;
  }

  .sub-heading {
    font-size: 20px;
  }

  .qty-input {
    margin-bottom: 20px;
  }

  .btn-sm-block {
    display: block;
    width: 100%;
    text-align: center;
  }
}





.mobile-nav .nav-wrap li.is-dropdown-3 > a::before {
  content: " ";
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}


.mobile-nav .nav-wrap li.is-dropdown-3.active > a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.mobile-nav .nav-wrap li.is-dropdown-3 > .sub-sub-sub-menu {
  display: none; 
  color: inherit;
  background: rgb(0 0 0 / 0.15);
  border-left: 3px solid;
}
.mobile-nav .nav-wrap li.is-dropdown-3 > ul {
  padding-left: 0px;
}
.mobile-nav .nav-wrap li.is-dropdown-3 > ul > li {
  padding: 20px;
  color: black;
}
.mobile-nav .nav-wrap li.is-dropdown-3 > ul > li > a {
  text-decoration: none;
  color: black;
  background-color: #fff0;
}

.mobile-nav .nav-wrap li.is-dropdown-3.active > .sub-sub-sub-menu {
  display: block;
}

.mobile-nav .nav-wrap li.is-dropdown-3 > .sub-sub-sub-menu > li {
  list-style: none;
  display: block;
}


.mobile-nav ul,
.mobile-nav li {
  list-style: none;  
  margin: 0;
  padding: 0;
}

.mobile-nav .is-dropdown > ul,
.mobile-nav .is-dropdown-2 > ul,
.mobile-nav .is-dropdown-3 > ul,
.mobile-nav .is-dropdown-4 > ul {
  padding-left: 0;   
  margin-left: 0;    
}

.mobile-nav li a {
  display: block;
  text-decoration: none;
  color: #000;
}

.mobile-nav li a:hover {
  background: #f5f5f5;
}

.mobile-nav .is-dropdown > ul   { background: #f9f9f9; }
.mobile-nav .is-dropdown-2 > ul { background: #e9e9e9; }
.mobile-nav .is-dropdown-3 > ul { background: #d9d9d9; }
.mobile-nav .is-dropdown-4 > ul { background: #c9c9c9; }

.is-dropdown > .dropdown-toggle {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background: url('arrow.svg') no-repeat center;
  cursor: pointer;
}

.is-dropdown > .dropdown-toggle {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background: url('arrow.svg') no-repeat center;
  cursor: pointer;
}

.filter-list {
  background: #f9f9f9;
}

.filter-list li {
  padding: 8px 12px;
}

.filter-list li:hover {
  background: #eaf3ff;
}

.filter-values {
  padding-left: 15px;
}

.filter-values li {
  padding: 6px 8px;
}

.filter-values li a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.filter-values li a:hover {
  color: #007bff;
}

.mega-dropdown {
  width: 650px;
  padding: 15px;
  max-width: 90vw;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  /* max-height: 70vh;   */
  /* overflow-y: auto;   */
  overflow-x: hidden;
}

.filter-values li a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}
.filter-values li a:hover {
  color: #007bff;
}

.filter-show {
  display: block !important;
}

.filter-link.active {
  background: #eaf3ff;
  border-radius: 4px;
}

.mega-dropdown {
  max-width: 90vw;  /* keep inside screen */
  overflow-x: auto; /* scroll if too wide */
}

.mega-dropdown {
  left: 0;
  right: auto;
}

.mega-dropdown.align-right {
  right: 0;
  left: auto;
}

.mega-dropdown.align-left {
  left: 0;
}

.mega-dropdown.align-right {
  margin-left: auto;   
  margin-right: 0;     
}

.filter-values {
  padding-left: 15px;
  max-height: 65vh;
  overflow-y: auto;
}

.filter-values::-webkit-scrollbar {
  display: none !important; 
}
