/* Body Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

:root {
    /*--primary: #800000;
    --secondary: #008080;*/
}

h1, h2, h3, h4 {
    color: var(--primary);
}

/* Header */
#header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    box-shadow: 0px 2px 5px -2px #333;
    z-index: 101;
    position: fixed;
    width: 100%;
    height: 90px;
}
#header .cart-icon{
    width: 35px;
}


.main{
    padding-top: 90px;
    display: flex;
    flex-direction: column;
}

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

section{
    padding: 80px 0;
    margin: 0;
    order: 100;
}

section.banner-section, .single-product section.slider-section, .category-page section.category-title-section, .pages section.page-title{
    order: 0 !important;
}
section.fill-bg {
    background-color: var(--lightgray);
}
section.no-fill-bg {
    background-color: transparent !important;
}
/*section table td {
    border: 0;
    font-weight: bold;
    padding: 10px 0;
}*/

.company-logo{
    width: 20%;
    height: 80px;
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.company-logo a{
    display: flex;
    width: 100%;
    height: 100%;
    text-align: left;
    line-height: 0;
    align-items: center;
}
.company-logo a img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

.menu-btn, .cart-btn, .search-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.menu-btn i, .cart-btn i, .search-btn i {
    color: #333333;
}

.menu-btn:hover i, .cart-btn:hover i, .search-btn:hover i {
    color: var(--secondary);
}

/* Desktop Menu */
.desktop-menu-wrap{
    height: 90px;
}
.desktop-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.desktop-menu > ul > li {
    padding: 32px 8px;
}
.desktop-menu > ul > li:hover {
    background-color: var(--primary);
    color: #fff;
}
.desktop-menu > ul > li:hover > a{
    color: #fff;
}

.desktop-menu a {
    text-decoration: none;
    color: #333333;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0;
}
.desktop-menu > ul > li > a{
    padding: 24px 0;
}

.desktop-menu a:hover {
    color: var(--secondary);
}

.desktop-menu ul li.parent{
    padding-right: 20px !important;
}
.desktop-menu ul li.parent:after{
    content: "";
    display: inline-block;
    width: 6px; /* Adjust width */
    height: 6px; /* Adjust height */
    border-bottom: 1px solid black; /* Bottom part of chevron */
    border-right: 1px solid black; /* Right part of chevron */
    transform: rotate(50deg) skewX(10deg); /* Rotates to form ▼ */
    position: absolute;
    top: 44%;
    right: 7px;
}
.desktop-menu ul li.parent li.parent:after{
    transform: rotate(-48deg);
    right: 10px;
    top: 19px;
}
.desktop-menu ul li.parent ul{
    height: 0px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    position: absolute;
}
.desktop-menu ul li.parent:hover > ul{
    background-color: #fff;
    display: flex !important;
    flex-direction: column;
    width: max-content;
    padding: 0px;
    top: 90px;
    left: 0px;
    /*border: 1px solid;
    border-image: linear-gradient(to bottom, white 12px, var(--gray) 100%) 1;*/
    box-shadow: 1px 2px 3px 2px #00000030;
    height: auto;
    opacity: 1;
    overflow: unset;
    
}
.desktop-menu > ul > li.parent:hover > ul{
    min-width: 100%;
}
.desktop-menu ul li.parent > ul li{
    border-bottom: 1px solid var(--gray);
    padding: 10px 15px;
    color: #333333;
    transition: all 0.2s linear;
}
.desktop-menu ul li.parent ul li:hover{
    background-color: var(--primary);
    color: #fff;
}
.desktop-menu ul li.parent ul li:hover > a{
    color: #fff;
}
.desktop-menu ul li.parent:hover::after{
    border-bottom: 1px solid #fff; /* Bottom part of chevron */
    border-right: 1px solid #fff; /* Right part of chevron */
}
.desktop-menu ul li.parent > ul li:last-child{
    border-bottom: 0px;
    padding-bottom: 10px;
}
.desktop-menu ul li.parent > ul li:first-child{
    padding-top: 10px;
}
.desktop-menu ul li.parent:hover > ul > li ul{
    left: 100%;
    top: 0px;
}

.menu-active {
    color: var(--secondary);
}

.search-box-wrap button.btn{
    position: absolute;
    right: 0px;
    top: 6px;
    font-size: 17px;
}

/* Starts */
/* Drawer Base Styles */
.drawer {
    position: fixed;
    top: 0;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    padding: 20px;
    z-index: 1111;
    transition: transform 0.3s ease-in-out;
}

/* Left Drawer (Menu) */
#menu {
    left: 0;
    width: 300px;
    transform: translateX(-100%);
    max-width: 85%
}

/* Right Drawer (Cart) */
#cart {
    right: 0;
    width: 300px;
    transform: translateX(100%);
    max-width: 85%;
}

/* Responsive Drawer Width */
/*@media (max-width: 480px) {
    #menu, #cart {
        width: 85%;
    }
}*/

/* Show Drawer When Targeted */
/*#menu:target,
#cart:target {
    transform: translateX(0);
    opacity: 1;
}*/

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #ff0000af;
    border: none;
    color: #ffffff !important;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

/* Menu Button */
.menu-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #007BFF;
    top: 2px;
}

#menu.drawer-menu.open{
    left: 0;
    opacity: 1;
    transform: translateX(0);
}
#menu.drawer-menu{
    padding: 30px 10px 0px 10px;
}

.drawer-menu nav{
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 40px;
}
.drawer-menu nav ul li a{
    padding:10px 0;
    border-bottom:1px solid var(--gray);
    width: 100%;
    position: relative;
    display: block;
}
.drawer-menu nav ul li a:hover{
    color:var(--secondary);
}
.drawer-menu nav ul li:last-child a{
    border-bottom: 0;
}
.drawer-menu .menu-title .close-menu{
    cursor: pointer;
    font-size: 1.2em;
}

.drawer-menu nav ul li > div{
    display: flex;
    justify-content: space-between;
}
.drawer-menu nav ul li > div > span{
    position: absolute;
    right: -5px;
    font-size: 34px;
    top: 4px;
}
.drawer-menu nav ul li .open-child-menu{
    background-color: #f1f1f1;
    right: 0;
    width: 60px;
    text-align: right;
    display: block;
    z-index: 2;
    cursor: pointer;
    border-radius: 5px;
}
.drawer-menu nav ul li .open-child-menu:hover{
    background-color: #000;
    color: #fff;
}
.drawer-menu nav ul li ul li .open-child-menu{
    width: 50px;
    font-size: 30px;
    top: 6px;
}
.drawer-menu nav ul li.parent ul{
    padding-left: 10px;
}
.drawer-menu nav ul li.parent ul li a {
    padding: 8px 0 8px 8px;
    font-size: 0.9em;
    border-bottom-left-radius: 10px;
}
.drawer-menu nav ul li.parent ul li:first-child a {
    margin: 7px 0;
}
.drawer-menu nav ul li.parent ul li:last-child a {
    border-bottom:1px solid var(--gray);
}

/* Menu Links */
.drawer a.close-btn {
    display: block;
    text-decoration: none;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 33px;
    top: 33px;
    right: 11px;
    padding: 0px;
    text-align: center;
}

.drawer a:hover {
    background: #f5f5f5;
}

/* Cart Items */
.drawer-cart{
    position: fixed;
    width: 280px;
    background-color: #fff;
    box-shadow: 0px -2px 6px 0px #666;
    height: 100%;
    z-index: 1111;
    top: 0;
    opacity: 0;
    right: -2000px;
    padding: 30px 10px 0px 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
#cart.drawer-cart.open{
    right: 0;
    opacity: 1;
    transform: translateX(0);
}
.drawer-cart h6{
    padding: 0;
}
.drawer-cart .menu-title .close-cart{
    cursor: pointer;
    font-size: 1.2em;
}
.drawer-cart .cart-holder, .drawer-cart nav{
    height: calc(100% - 60px);
    overflow: auto;
}
.drawer-cart .cart-item-image{
    box-shadow: 0px 0px 5px -2px #aaa;
    margin-left: 3px;
}
.drawer-cart .cart-item-image img{
    width: 80px;
    height: auto;
}
.drawer-cart .cart-item{
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
    display:  block;
    
}
.drawer-cart .cart-item-title{
    font-size: 14px;
    font-weight: 500;
}
.drawer-cart .remove-cart-item{
    color: var(--danger);
    font-size: 16px;
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    border: 1px solid var(--danger);
    padding: 5px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    z-index: 5;
    background-color: #fff;
    cursor: pointer;
    line-height: 14px !important;
}
.empty-cart .material-symbols-outlined {
    font-size: 100px;
    font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 24;
    padding-top: 30px;
}


.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item div {
    flex-grow: 1;
}

.cart-total {
    font-size: 18px;
    font-weight: 500;
    text-align: right;
    margin-top: 10px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: #ffffff !important;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 5px;
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--secondary);
}

/* Ensure overlay covers the full screen and is clickable */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

/* Show overlay when a drawer is open */
/*#menu:target ~ .overlay,
#cart:target ~ .overlay {
    display: block;
}*/

.overlay.show{
    opacity: 1;
      display: block;
    animation: showoverlay 0.5s;
}
@keyframes showoverlay {
    from {
      opacity: 0;
      display: none;
    }
    
    to {
      opacity: 1;
      display: block;
    }
  }
  
  @keyframes hideoverlay {
    from {
      opacity: 1;
      display: block;
    }
    
    to {
      opacity: 0;
      display: none;
    }
  }


.cart-item p {
    padding-bottom: 0px!important;
}
/* Ends*/

/* Cart Button Styling */
.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Cart Badge Styling */
.cart-badge {
    position: absolute;
    top: -11px;
    right: -15px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    padding: 0px;
    line-height: 23px;
    min-width: 23px;
}


/* Custom Box for distinction */
.custom-box {
    border: 2px solid #d3d3d3;
    border-radius: 15px;
    padding: 20px;
}

/*.home-products{
    background-color: var(--lightgray);
}*/

/* Image Title */
.category-banner {
    background-color: #fdfdfd;
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 0;
}
.category-banner img {
    object-fit: cover;
    width: 100%;
    height: auto;
}
.category-banner .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
.category-banner .heading {
    padding: 20px 0;
    line-height: normal;
    font-weight: bold;
    font-size: 42px;
    /* color: white; */
    /* text-shadow: 1px 0px 1px #212529, -1px 0px 1px #212529, 0px 1px 1px #212529, 0px -1px 1px #212529; */
}
.dark-text {
    color: #000;
    text-shadow: 1px 0px 1px #fff, -1px 0px 1px #fff, 0px 1px 1px #fff, 0px -1px 1px #fff;
}
.flex.align-top-left{
    align-items: start; justify-content: start;
}
.flex.align-top-center{
    align-items: start; justify-content: center;
}
.flex.align-top-right{
    align-items: start; justify-content: end;
}
.flex.align-middle-left{
    align-items: center; justify-content: start;
}
.flex.align-middle-center{
    align-items: center; justify-content: center;
}
.flex.align-middle-right{
    align-items: center; justify-content: end;
}
.flex.align-bottom-left{
    align-items: end; justify-content: start;
}
.flex.align-bottom-center{
    align-items: end; justify-content: center;
}
.flex.align-bottom-right{
    align-items: end; justify-content: end;
}
.editorflex.flex{
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 20px;
}
.editorflex.flex .editorflex{
    margin-bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
}
.editorflex.flex .editorflex .editorflex{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.editorflex.flex > *:not(hr){
    border:1px solid var(--lightgray);
    background-color: var(--lightgray);
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 23%;
    align-items: center;
    justify-content: center;
    padding:15px;
    border-radius: 5px;
}
.editorflex.flex > * *:not(hr){
    border: 0;
}
.editorflex.flex .flex .inner-flex, .editorflex.flex .flex .inner-flex .flex{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    flex-basis: 23%;
    flex-grow: 1;
}
.editorflex.flex .flex .inner-flex *{
    padding-bottom: 0;
}
.editorflex.flex .full{
    width: auto !important;
}
.editorflex.flex .page-image{
    margin-bottom: 0;
    line-height: 0px;
}
.editorflex.flex .editorflex > *{
    padding:0px;
    padding-bottom: 20px;
    border-radius: 0px;
    flex-basis: unset;
    flex-grow: unset;
    width: 100%;
}
.editorflex.flex .editorflex .page-image{
    padding: 0;
    text-align: center;
    width: 100% !important;
}

.banners.slick-slider .slick-track{
    display: flex !important;
    background: var(--secondary);
    align-items: center;
}
.banners.slick-initialized .slick-slide {
    background: var(--secondary);
    line-height: 0px;
    height: auto !important;
}
.banners .slick-slide img {
    object-fit: cover;
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    object-position: center center;
    line-height: 0px;
    margin-top: -1px;
    margin-left: -1px;
}
.banners .slick-prev:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    border: 2px solid #000;
    clip-path: polygon(0% 0%, -100% 240%, 100% 100%);
    outline: 4px solid white;
    outline-offset: -6px;
}
.banners .slick-next:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    transform: rotate(-45deg);
    border: 2px solid #000;
    outline: 4px solid white;
    outline-offset: -6px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.banners .banner-text{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8vw;
    text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
}

.special-banner .special-banner-image {
    padding: 0;
    width: calc(33.33% - 15px);
    float: left;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #00000030;
    padding: 5px;
    background: #fff;
}
.special-banner .promo-image{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--lightgray);
    line-height: 0px;
    width: 100%;
}
.special-banner .promo-image a{
    display: block;
    width: 100%;
    height: 100%;
}
.special-banner .special-banner-image img {
    line-height: 0px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.special-banner .special-banner-image .block-text {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
}

/* Slick Slider */
.slick-prev {
    left: 25px !important;
    z-index: 100 !important;
    overflow: visible !important;
}
.slick-prev, .slick-next {
    width: 32px;
    height: 32px;
    z-index: 2;
    top: 49%;
}
.slick-prev:before, .slick-next:before {
    font-size: 36px;
    color: #fff;
}
.slick-next {
    right: 35px !important;
}


.head-image {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.featured-category {
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    justify-content: space-evenly;
}

.category-display {
    position: relative;
    width: calc(33.33% - 7px);
    height: 100px;
    border: 1px solid #3c3c3c;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    overflow: hidden;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
    margin: 10px 0;
}

.category-display:hover {
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    text-shadow: 1px 0px 1px transparent, -1px 0px 1px transparent, 0px 1px 1px transparent, 0px -1px 1px transparent;
    color: #fff;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 300;
    padding-bottom: 20px;
}

.special-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.section-title span {
    flex-grow: 1;
    height: 2px;
    background-color: #ccc; 
    margin-left: 10px; 
}
.section-content {
    padding: 30px 30px 10px 30px;
    border-radius: 15px; 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
}
.section-content hr{
    margin-bottom: 20px;
}
.brand-slider .slide {
    padding: 20px;
}
.brand-slider .slide .brand-name {
    font-size: 15px;
    text-align: center;
}


/* Product Page and Product Card */

.product-card-shop {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.product-image-shop img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.product-title-shop {
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.product-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0px;
    border-bottom: 1px solid #ddd;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}
.product-card:last-of-type{
    border-bottom: 0px;
}

.product-image {
    width: 100px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
    position: relative;
}
.product-image img, .cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-image {
    width: 70px;
    height: auto;
    background: #f8f8f8;
    position: relative;
    padding: 0;
    line-height: 0;
    box-shadow: 0px 0px 3px 0px #00000030;
    top: 6px;
}
.cart-products .product.details{
    width: calc(100% - 90px);
}

.pay-now {
    border-radius: 10px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 5px 10px;
    display: inline;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 10px 0;
}

.sale-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
    border: 1px solid #fff;
}

.no-image .sale-badge {
    top: 40px;
    left: auto;
    right: 2px;
    font-size: 10px;
    font-weight: normal;
    padding: 0;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 31px;
    border-radius: 50%;
    z-index: 2;
    text-transform: uppercase;
}

.wishlist-icon {
    position: absolute;
    top: 8px;
    right: 4px;
    cursor: pointer;
    font-size: 26px;
    color: var(--danger);
    z-index: 2;
}
.wishlist-icon .btn{
    background: transparent;
    color: var(--danger);
    padding: 0;
    font-size: 26px;
    min-height: auto;
}

.product-details {
    width: 100%;
    padding: 10px 0 5px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.no-image .product-details {
    width: calc(100% - 40px);
}
.product-title {
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.regular-price {
    color: var(--secondary);
    font-weight: 700;
}

.sale-price {
    text-decoration: line-through;
    color: #4b4b4b;
    font-size: 14px;
}

.final-price {
    font-size: 14px;
}

/*.regular-price::before, .sale-price::before, .final-price::before {
    content: "\20B9"; 
    margin-right: 4px;
    font-weight: 600;
}*/

.stars {
    padding-bottom: 0px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
}

.ratings {
    color: #ffd700;
}

.no-ratings {
    color: #474747;
}

.quantity-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.quantity button {
    padding: 4px 8px;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    background: #f8f8f8;
    cursor: pointer;
}

.product-quantity-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.product-quantity button {
    padding: 4px 8px;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    background: #f8f8f8;
    cursor: pointer;
}

.read-reviews {
    text-decoration: underline; 
}

.read-reviews:hover {
    background-color: var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #ffffff;
}
.read-reviews:hover i{
    color: #ffffff;
}

.add-to-cart {
    padding-top: 20px;
    color: #ffffff;
    font-weight: 600;
}

.highlights {
    color: #000000;
}
/*.has-bg-color{
    background-color: var(--lightgray);
}*/

.title-section.stripe .highlights{
    background: repeating-linear-gradient(60deg, var(--gray) 0%, var(--gray) 10%, var(--lightgray) 10%, var(--lightgray) 20%);
}

.highlights-wrap {
    display: flex;
    position: relative;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px;
}

.highlight-card {
    width: calc(25% - 15px);
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: #fafafa;
    padding: 10px;
    overflow: hidden;
}
.highlight-card .content p{
    font-size: 0.9em;
    line-height: 1.5em;
    padding-bottom: 0;
}

.icon-box i, .icon-box .material-symbols-outlined {
    font-size: 40px;
    padding-top: 0px;
}

.material-symbols-outlined {
    visibility: hidden;
    display: none;
}
.material-symbols-outlined.loaded {
    visibility: visible; /* Or display: inline; */
    display: inline-block;;
}

.content h5 {
    padding-bottom: 10px;
}

.content p {
    padding-bottom: 10px;
}

.product-list-star-rating i {
    color: #FFD700;
}

.cart-item-counter > div{
    border: 1px solid var(--gray);
    width: 34px;
    height: 34px;
    text-align: center;
    
}
.cart-item-counter{
    margin-top: 20px;
}
.cart-item-counter > div.counter{
    /*width: 60px;*/
}
.cart-item-counter .plus, .cart-item-counter .minus{
    font-weight: 300;
    line-height: 30px;
    font-size: 26px;
    background-color: #f1f1f1;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--primary);
}
.cart-item-counter .minus{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.cart-item-counter .plus{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.cart-item-counter .cart-item-count{
    width: 100%;
    height: 100%;
    border: 0px;
    outline: none;
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: 0;
    position: relative;
    text-align: center;
    min-height: auto;
}
.single-product .cart-item-counter{
    margin-top: 0;
}
.single-product .cart-item-counter > div{
    width: 46px;
    height: 46px;
    text-align: center;
}
.single-product .cart-item-counter .plus, .single-product .cart-item-counter .minus{
    line-height: 40px;
    font-size: 30px;
}
.cart-item-counter input::-webkit-outer-spin-button,
.cart-item-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.cart-item-counter input[type=number] {
  -moz-appearance: textfield;
}
.product-list-item .cart-item-counter > div {
    width: 50%;
    height: 34px;
}
.product-list-item .cart-item-counter > div.counter {
    width: 45px;
}
.product-list-item .cart-item-counter .plus, .product_list_item .cart-item-counter .minus  {
    line-height: 30px;
}
.cart-item-price s{
    color: var(--gray);
}

.single-product .product-wrapper{
    display: flex;
    gap: 60px;
}
.single-product .product-slider-wrap{
    width: 40%;
}
/* Sticky product images on product details page */
/*.single-product .product-slider-inner-wrap {
    position: sticky;
    top: 120px;
}*/
.zoom-container{
    background-color: var(--lightgray);
    cursor: crosshair;
}
.single-product .product-info{
    width: 60%;
}
.single-product .product-slider .slick-prev:before, .product-slider .slick-next:before{
    color: black;
}
.single-product .slick-next {
    right: 13px !important;
}
.single-product .slick-prev {
    left: 10px !important;
}
.single-product .slick-dots{
    bottom:-30px;
    width: calc(100% - 22px);
}
.single-product .slick-dots li {
    margin: 0;
}
.single-product .slick-dots li button:before{
    font-size: 10px;
    transition: all 300ms ease 0ms;
    color: var(--gray);
    opacity: 0.8;
}
.single-product .slick-dots li.slick-active button:before {
    opacity: .85;
    color: black;
    font-size: 16px;
}
.single-product .product-slider{
    background-color: var(--lightgray);
    padding: 10px;
}
.single-product .product-slider-nav{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 3px;
}
.single-product .product-slider-nav div{
    width: calc(20% - 8px);
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    line-height: 0;
    box-shadow: 0px 0px 5px -1px #00000030;
    text-align: center;
}
.single-product .product-slider-nav div img{
    width: 100%;
    height: auto;
}
.single-product .slider-section hr{
    border-color: var(--gray);
}
.single-product .heart-wrap .material-symbols-outlined{
    top: 2px;
    font-size: 30px;
}
.single-product .heart-wrap.active .material-symbols-outlined{
    color: var(--danger);
}
.single-product .product-title small{
    font-size: 0.5em;
    position: relative;
    top: -8px;
}
.single-product .product-title small span{
    top: 0px;
}
.single-product .product-title small cite{
    font-style: normal;
    font-weight: normal;
}
.single-product .product-description{
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 5px #00000030;
    border-radius: 5px;
}
.single-product .product-description li{
    list-style: circle;
    margin-left: 19px;
}
.single-product .product-list-price s{
    color: var(--gray);
    font-size: 0.9em;
}
.single-product .sale-info{
    background-color: var(--secondary);
    padding: 10px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
}
.single-product .cart-item-counter{
    margin-top: 0;
}
.single-product .cart-item-counter > div{
    width: 46px;
    height: 46px;
    text-align: center;
}
.single-product .cart-item-counter .plus, .single-product .cart-item-counter .minus{
    line-height: 40px;
    font-size: 30px;
}
.active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}
.single-product .page-product-title .heart .material-symbols-outlined {
    font-size: 36px;
    cursor: pointer;
}
.single-product .page-product-title.active .heart .material-symbols-outlined {
    color: var(--danger);
}
.single-product .alternate-description{
    display: none;
    margin-top:30px;
}
.single-product .alternate-description .product-description {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
}

.variant-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.variant-tabs li .variant-capsule{
    padding: 8px 15px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-weight: 400;
    line-height: normal;
    display: block;
    font-size: 12px;
    min-width: 90px;
    text-align: center;
}
.variant-tabs li{
    line-height: normal !important;
}
.variant-tabs li.active .variant-capsule{
    border: 1px solid var(--secondary);
    font-weight: bold;
    color: var(--secondary);
}
.variant-tabs li:hover a{
    border: 1px solid var(--secondary);
    color: var(--secondary);
}
.variant-tabs li span.variant-capsule{
    border: 1px solid var(--gray);
    color: var(--gray);
}
.variant-tabs .offer-badge{
    font-size: 9px;
    font-weight: 500;
    background-color: var(--primary);
    color: #fff;
    padding: 3px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    left: 15px;
    width: calc(100% - 30px);
    text-align: center;
}

.all-reviews .review {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid var(--lightgray);
    box-shadow: 0px 0px 3px #00000030;
}

.wishlist-button{
    background: none;
}

.brands {
    padding: 0 0px;
    font-size: 1em;
}
.brands .brand-card{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.brands .brand-image{
    /*border: 1px solid var(--darkgray); */
    border-radius: 5px;
    padding: 7px;
    background-color: #fff;
    box-shadow: 0px 0px 5px #00000030;
    margin-top: 3px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brands .brand-image a{
    display: block;
    width: 100%;
    height: 100%;
}
.brands.slick-slider .slick-track{
    display: flex !important;
}
.brands .slick-list {
    margin: 0 -10px;
}
.brands .slick-slide{
    padding: 0 10px;
    height: inherit !important;
}
.brands .slick-prev, .brands .slick-next {
    top: 45%;
    background-color: #00000050;
    padding: 5px;
    color: #fff;
    bottom: auto;
    border-radius: 4px;
}
.brands .slick-prev:before, .brands .slick-next:before{
    font-family: 'Font Awesome 6 Free';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
}
.brands .slick-prev {
    left: 0px !important;
}
.brands .slick-next {
    right: 0px !important;
}
.brands .slick-prev:before{
    content: "\f053";
}
.brands .slick-next:before{
    content: "\f054";
}
.brands .brand-text{
    font-size: 16px;
    font-weight: 500;
    padding-top: 20px;
}

.contact-page .contact-info i.fa{
    border: 1px solid var(--primary);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
    flex: 0 0 auto; 
}
.contact-page .contact-info > div{
    margin-bottom: 7px;
    font-weight: 500;
    align-items: start;
}

form .merge-with-left{
    margin-left: -5px;
}
form .merge-with-left .right-item{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: calc(100% + 5px);
}

.cost-breakup cite{
    font-size: 0.8em;
}

/* Footer */
footer {
    background: #1d1f22;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-wrap {
    display: flex;
    padding: 40px 0px 20px 0px;
    border-bottom: 1px solid #5e5e5e;
    gap: 5%;
    font-weight: 200;
}

.footer-card {
    width: 33.33%;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.footer-card .footer-social li{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
}
.footer-card .footer-social li::before{
    content: "";
    display: none;
}
.footer-card .footer-social li a{
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 46px;
    text-align: center;
}

.footer-card .footer-social li a:hover i{
    color: #fff;
}

.footer-social i {
    font-size: 22px;
}

.footer-card ul {
    list-style: none;
    padding-left: 0;
}

.footer-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.footer-card li::before {
    content: "\f058"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s;
 }

 .footer-card li a {
    color: #fff;
 }

 .footer-card li a:hover {
    color: var(--secondary);
    text-decoration: none;
 }
 .footer-card li:hover::before {
    color: var(--secondary);
 }

 .footer-icons i {
    color: #fff;
 }

 .footer-logo{
    width: 220px;
    height: 70px;
    line-height: 0;
 }
 .footer-logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left;
 }

 footer .contact-info > div{
    padding-bottom: 7px;
 }
 footer .contact-info a{
    color: #fff;
 }
 footer .contact-info a:hover{
    text-decoration: underline;
    color: var(--secondary);
 }
 footer .contact-info i{
    width: 20px;
 }

 .floating-wa {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 15px;
    bottom: 45px;
    z-index: 20;
}
.floating-wa a img {
    max-width: 100%;
    height: auto;
}

 /* Scroll to Top */
 
 #scrollTopBtn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    background-color: #ffffff;
    color: #5e5e5e;
    border: 1px solid #d1d1d1;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
    width: 30px;
    height: 30px;
}

#scrollTopBtn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* Checkout Page*/
.remove {
    border-radius: 10px;
    background-color: #f8f9fa;
    padding: 5px 10px;
    display: inline;
    cursor: pointer;
}

.checkout-form {
    display: flex;
    gap: 60px;
}
.cart-products {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 5px;
    border: 1px solid var(--gray);
}

.totals {
    padding: 10px 20px;
    font-size: 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
}
.cart-subtotal {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

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

/*.tax span::before {
    content: "\20B9 ";
    font-weight: 600; 
}*/

.total {
    border-top: 1px solid #333333;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 20px;
}

/* Product Page */
.thumbnail-slider { 
    max-width: 100%; 
    margin: 10px auto; 
    overflow: hidden; 
}

.thumbnail-slider img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 5px; 
}

.page-product-container { 
    width: 96%; 
    margin: auto; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: flex-start; 
    gap: 20px;
}

.full.lg-sticky { 
    position: sticky; 
    top: 20px; 
    max-height: 90vh; /* Ensures it doesn’t take the whole screen */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    overflow-y: auto; /* Enables scrolling if content exceeds viewport height */
    gap: 10px;
}

.page-product-images { 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.page-product-images img { 
    object-fit: contain; 
    width: 400px; 
    height: 500px; 
    border: 1px solid #d3d3d3; 
    border-radius: 10px; 
}

.page-product-thumbnails { 
    display: flex; 
    flex-wrap: nowrap; 
    justify-content: center; 
    gap: 5px; 
    max-width: 100%; 
    overflow-x: auto; /* Enables horizontal scrolling if there are too many thumbnails */
    margin: 60px 0 20px 0;
}

.page-product-thumbnails img { 
    max-width: 80px; 
    max-height: 80px; 
    cursor: pointer; 
    object-fit: cover; 
}

.page-product-thumbnails .slick-slide {
    margin: 0 5px; /* Adjust the value to control the spacing */
}

.page-product-thumbnails .slick-list {
    margin: 0 -5px; /* Negative margin to prevent layout shift */
}

.page-product-details { 
    flex: 1;
    padding: 20px !important;
}

.p-section { 
    border: 2px solid #d3d3d3; 
    border-radius: 15px; 
}

.page-product-details .page-product-title { 
    padding-bottom: 10px; 
}

.brand-name {
    border-bottom: 1px solid #959595;
    padding-bottom: 10px;
    font-weight: 500;
}

.divider { 
    padding: 10px; 
}

.variation-section { 
    border-radius: 10px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    align-items: center; 
}

.variation-single { 
    border-radius: 5px; 
    padding: 0 10px; 
    background-color: #000000; 
    color: #ffffff; 
    font-weight: 400; 
}

.variation-single:hover {
    background-color: var(--secondary);
}

.variation-selected {
    border-radius: 5px; 
    padding: 2px 10px; 
    background-color: var(--primary); 
    color: #ffffff; 
    font-weight: 600; 
}

.variation-selected:hover { 
    background-color: #000000; 
    font-weight: 600; 
}

.message-box{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    @starting-style {
        opacity: 0;
    }
    animation: hidemessage 0.5s;
    animation-fill-mode: forwards
}
.message-box.show{
    opacity: 1;
    display: flex;
    animation: showmessage 0.5s;
}

.enquiry-box{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    @starting-style {
        opacity: 0;
    }
    animation: hidemessage 0.5s;
    animation-fill-mode: forwards
}
.enquiry-box.show{
    opacity: 1;
    display: flex;
    animation: showmessage 0.5s;
}

@keyframes showmessage {
    from {
      opacity: 0;
      display: none;
    }
    
    to {
      opacity: 1;
      display: flex;
    }
  }
  
  @keyframes hidemessage {
    from {
      opacity: 1;
      display: flex;
    }
    
    to {
      opacity: 0;
      display: none;
    }
  }

.message-box-wrap{
    background-color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 0px 3px #fff;
    max-width: 90%;
}
.enquiry-box-wrap{
    background-color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 0px 3px #fff;
    max-width: 300px;
}
.close-message-box, .close-enquiry-box{
    z-index: 100;
    position: absolute;
    right: -13px;
    top: -13px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px !important;
    background-color: var(--danger);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.enquiry-box .form-row{
    padding-top: 5px;
    margin-left: 0;
    width: 100%;
}
.enquiry-box input, .enquiry-box textarea, .enquiry-box select, .enquiry-box .fakebox {
    padding: 8px 15px;
    min-height: 36px;
    font-size: 0.9em;
}
.enquiry-box .enquiry-text{
    font-size: 0.8em;
    line-height: normal;
}

.page-content{
    font-size: 1.2em;
    line-height: 1.6em;
}

.page-content ul, .featured-text ul{
    padding-bottom: 20px;
}
.page-content ul li, .featured-text ul li{
    list-style: circle;
    margin-left: 20px;
    margin-bottom: 5px;
}

.page-image-gallery{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.page-image-gallery li{
    width: calc(25% - 15px);
    border: 1px solid var(--gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin: 0 !important;
}
.page-image-gallery li img{
    cursor: zoom-in;
}
.page-youtube{
    height: 0px;
    overflow: hidden;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
}
.featured-text .page-youtube{
    margin-bottom: 20px;
}
.page-youtube iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.page-image{
    margin-bottom: 40px;
}
.page-image-gallery{
    margin: 40px 0;
}

.aligncheckbox input[type='checkbox'], .aligncheckbox input[type=radio]{
    width: 40px;
    height: 25px;
    min-height: auto;
}
.label-wrap.aligncheckbox input:not(:placeholder-shown) + label{
    top: 0px;
    left: 0px;
    width: 100%;
}

.user-profile .user-email .btn{
    padding: 10px 9px 6px 9px;
    position: absolute;
    top: 0;
    right: 0;
}
.user-profile .user-email .btn.edit-mail-btn{
    top:5px;
}
.label-wrap.active .fakebox + label, .label-wrap .select2 + label{
    top: -16px;
}


#notification{
    background-color:#f1f1f1; color:#000; width:90%; border-radius:10px; box-shadow:1px 1px 3px #000; padding:15px 10px 20px 10px; z-index:9999999; top:-1000px;position:absolute; left:5%; box-sizing:border-box; display: none; transition: 1s; -moz-transition: 1s; -o-transition: 1s; -webkit-transition: 1s;
}
#notification.show{
    display:block;top:10px;
}

.search-wrap{
    padding: 10px 10px 15px 10px;
    background: var(--lightgray);
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 0px 5px 2px #00000030;
}

.login-box{
    width: 500px;
    max-width: 90%;
}

.payment-guide small {
    font-size: 0.85em;
    display: block;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0px 0px 5px #00000030;
    margin-bottom: 5px;
    margin-top: 8px;
    padding: 10px 15px;
}

#qrcode img{
    width: auto;
    max-width: 90%;
}

.order-complete{
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--lightgray);
    padding: 40px 20px 60px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 2px #00000030;
}
.order-complete .icon{
    font-size: 180px;
    color: #fff;
    display: block;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-complete .icon .fa{
    display: block;
    border: 5px solid #fff;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    line-height: 220px !important;
}
.order-complete h4{
    font-weight: 400;
}
.order-complete.success h1, .order-complete.success h4{
    color: var(--success);
}
.order-complete.success .icon{
    background-color: var(--success); 
}
.order-complete.failed h1, .order-complete.failed h4{
    color: var(--danger);
}
.order-complete.failed .icon{
    background-color: var(--danger); 
}
.order-complete.success h1{
    font-size: 50px;
}

.grid-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.grid-item {
    padding: 10px;
    width: 100%;
}

.grid-container > .grid-item:nth-last-child(2),.grid-container > .grid-item:last-child {
    grid-column: span 2;
}

/* Special rules starting from the 5th item */
.grid-container > .grid-item:nth-child(5):nth-last-child(1) {
    grid-column: span 4; /* If 5th is the last, make it full width */
}

.grid-container > .grid-item:nth-child(5):nth-last-child(2),
.grid-container > .grid-item:nth-child(6):nth-last-child(1) {
    grid-column: span 2; /* 5th and 6th if only 2 on last row */
}

.flex-container{
  display: flex;
  flex-wrap: wrap;
}
.flex-container .box {
  box-sizing: border-box;
  padding: 10px;
  width: calc(25% - 15px);
}






/* Default: Single Column */
.columns {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

/* Small devices (≥576px) */
@media (min-width: 100px) {
    .col-sm-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 30px; }
    .col-sm-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 30px; }
    .col-sm-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
    .col-sm-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
}

/* Medium devices (≥768px) */
@media (min-width: 576px) {
    .col-md-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 30px; }
    .col-md-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
    .col-md-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
    .col-md-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
}

/* Large devices (≥1024px) */
@media (min-width: 1024px) {
    .col-lg-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 30px; }
    .col-lg-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
    .col-lg-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
    .col-lg-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
}

/* Extra Large devices (≥1440px) */
@media (min-width: 1440px) {
    .col-xl-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 30px; }
    .col-xl-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
    .col-xl-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
    .col-xl-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    /*.lg-sticky {
        position: sticky;
    }*/
    .container{
        width: 1000px;
    }
    header .container{
        width: 96%;
        height: 100%;
    }
    header .container .header-top{
        height: 100%;
        justify-content: space-between;
    }
    header .container .company-logo{
        height: 100%;
        width: auto;
    }
    header .container .company-logo a{
        height: 100%;
        padding: 10px 0;
    }
    .single-product .product-wrapper {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: block;
    }
    .banners .banner-text{
        font-size: 12vw;
    }
    .desktop-menu-wrap {
        width: 20% !important;
    }
    .desktop-menu > ul > li {
        padding: 32px 5px;
        text-align: center;
        line-height: 16px;
    }
    .desktop-menu a{
        font-size: 0.8rem;
    }
    .checkout-form {
        gap: 20px;
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-container > .grid-item:nth-child(4):nth-last-child(1) {
        grid-column: span 2; /* If 5th is the last, make it full width */
    }
    
    .grid-container > .grid-item:nth-child(4):nth-last-child(2),
    .grid-container > .grid-item:nth-child(5):nth-last-child(1) {
        grid-column: span 2; /* 5th and 6th if only 2 on last row */
    }
    
    .grid-container > .grid-item:nth-child(n+4):nth-last-child(n+2) {
        grid-column: span 1; /* Generic rule: items 5+ when more than 2 in last row */
    }
}
@media (max-width: 768px) {

    .company-logo {
        width: 30%;
    }
    .page-product-container { 
        flex-direction: column; 
    }
    .full.lg-sticky { 
        position: relative; /* Remove stickiness on smaller screens */
        max-height: unset;
    }
    .page-product-images img { 
        width: 100%; 
        height: auto; 
    }
    .page-product-thumbnails { 
        overflow-x: auto;
    }
    .divider { 
        padding: 5px; /* Fixed Typo */
    }
    .checkout-form {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .checkout-form .two-thirds {
        width: 100%;
    }
    .checkout-form .one-third {
        width: 100%;
    }
    .cart-products {
        height: auto;
        max-height: none;
    }
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-container > .grid-item:nth-child(4):nth-last-child(1) {
        grid-column: span 1; /* If 5th is the last, make it full width */
    }
    
    .grid-container > .grid-item:nth-child(4):nth-last-child(2),
    .grid-container > .grid-item:nth-child(5):nth-last-child(1) {
        grid-column: span 1; /* 5th and 6th if only 2 on last row */
    }
    
    .grid-container > .grid-item:nth-child(n+4):nth-last-child(n+2) {
        grid-column: span 1; /* Generic rule: items 5+ when more than 2 in last row */
    }
    .special-banner .special-banner-image .block-text{
        font-size: 24px;
    }
    .banners .slick-prev:before {
        width: 25px;
        height: 25px;
    }
    .banners .slick-next:before {
        width: 25px;
        height: 25px;
    }

    .editorflex.flex {
        gap: 10px;
    }
    .editorflex.flex > *{
        flex-basis: 48%
    }
} 

@media (max-width: 480px) {
    :root {
        --base-font-size: 14px;
    }
    #header{
        padding: 0;
        height: 70px;
    }
    .desktop-menu-wrap {
        height: 70px;
    }
    .company-logo {
        margin: 0px;
    }
    #header .flex-gap-20 {
        gap: 10px;
    }
    .main {
        padding-top: 70px;
    }
    section {
        padding: 40px 0;
    }
    .container {
        max-width: 90%;
    }
    .section-title {
        font-size: 20px;
        padding-bottom: 25px;
    }
    .section-content {
        padding: 20px 20px 10px 20px;
        border-radius: 10px;
    }
    .category-display {
        width: calc(50% - 7px);
        font-size: 20px;
    }
    .company-logo {
        width: 100%;
        padding: 0 15px;
    } 
    .company-logo a{
        height: auto;
    }   
    .head-image {
        flex-wrap: wrap;
    }
    .quantity-cart {
        flex-wrap: wrap;
    }
    .product-quantity-cart {
        flex-wrap: wrap;
    }
    .highlights-wrap {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .highlight-card{
        width: 100% !important;
    }
    .footer-card {
        margin: 0 0 40px 0;
        width: 100%;
    }
    .footer-wrap {
        flex-wrap: wrap;
    }
    
    .page-product-details {
        margin-top: 20px;
    }
    .custom-box {
        margin-bottom: 20px;
    }
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
    .slick-prev:before, .slick-next:before {
        font-size: 30px;
    }
    .special-banner .special-banner-image {
        width: calc(50% - 15px);
    }
    .brands .slick-prev, .brands .slick-next {
        display: none !important;
    }
    .search-box-wrap{
        padding-bottom: 10px;
    }
    .category-banner .heading {
        font-size: 24px;
    }
    table{
        word-break: break-all;
    }
    .page-content {
        font-size: 1em;
    }
    .one-half, .w-50, .half {
        width: 100%;
    }
    .form-row .form-item +.form-item{
        padding-top: 20px;
    }
    h1, .h1 {
        font-size: 30px;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h3, .h3 {
        font-size: 22px;
    }
    h5, .h5 {
        font-size: 18px;
    }
    h6, .h6 {
        font-size: 16px;
    }
    .single-product .product-wrapper{
        display: block;
        padding-top: 0px;
        width: 100%;
        max-width: 100%;
    }
    .single-product .product-slider-wrap {
        width: 100%;
    }
    .single-product .product-slider{
        padding: 0px;
    }
    .single-product .product-info {
        width: 100%;
        padding-top: 30px;
        max-width: 90%;
        margin: 0 auto;
    }
    .page-product-thumbnails{
        max-width: 90%;
        margin: 60px auto 20px auto
    }
    .search-box-wrap button.btn {
        top: 5px;
        font-size: 16px;
    }
    .search-wrap{
        padding: 10px 10px 5px 10px;
    }
    .order-complete .icon{
        font-size: 120px;
        width: 200px;
        height: 200px;
    }
    .order-complete .icon .fa{
        display: block;
        border: 5px solid #fff;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        line-height: 150px !important;
    }
    .order-complete.success h1{
        font-size: 30px;
    }
    .totals{
        font-size: 0.95em;
    }
    .total{
        font-size: 18px;
    }
    .page-image-gallery{
        gap: 10px;
        justify-content: center;
    }
    .page-image-gallery li{
        width: calc(50% - 5px);
    }
    .editorflex.flex > *{
        flex-basis: 100%
    }
}