/* Importing Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Prata&display=swap');

:root {
    /* Colors */
    --primary-color: #02203a;
    --secondary-color: #02066F;
    --secondary-dark-color: #011E30;

    --white-color: #ffffff;
    --light-bg-color: #f2f3f5;
    --light-text-color: #7c899a;
    --dark-text-color: #4d5258;
    --border-color: #e5e8ec;
    --dark-color: #0a021c;
    /*--current-price-color: #FA003F;*/
    --current-price-color: #0a021c;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;
    --font-size-xxxl: 2.5rem;

    --font-small: 13px;
    --font-smaller: 11px;

    --percent100: 100%;
    --percent50: 50%;

    /* Font weight */
    --fw3: 300;
    --fw4: 400;
    --fw5: 500;
    --fw6: 600;
    --fw7: 700;
    --fw8: 800;

    --trans-background-color: background-color 0.3s color 0.3s;
    --trans-background: background-color 0.3s;
    --trans-color: color 0.3s;

    /* Site max width */
    --site-max-width: 1380px;
}

html {
    scroll-behavior: smooth;
}

*{
    margin:0%;
    padding:0%;
}

*, ::before, ::after {
    box-sizing: border-box;
}

body {
    font-family: "Karla", sans-serif;
    font-size: var(--font-size-n); 
    font-weight: var(--fw4);
    line-height: 1.4;
    color: var(--dark-color);
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: inherit;
    --webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 3px;
}

img {
    max-width: var(--percent100);
    vertical-align: middle;
}

strong {
    font-weight: var(--fw8);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input::placeholder {
    font: inherit;
}

h1,h2,h3,h4,h5 {
    font-family: "Karla", sans-serif;
}
h1 {
    font-size: calc(1.2em + 1vw);
    font-weight: var(--fw7);
    line-height: 1;
}
h2 {
    font-size: var(--font-size-xxxl);
}
h3 {
    font-size: 1.2rem;
    font-weight: var(--fw7);
}
h4 {
    font-size: var(--font-size-n);
    font-weight: var(--fw6);
}

main {
    overflow-x: hidden;
}

/* ------------------------
Reusable Utility Selection
---------------------------*/

.g-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 0.938rem;
}
.g-column {
    margin-left: -0.938rem;
    margin-right: -0.938rem;
}
.g-column .g-row {
    padding: 0 0.938rem;
}

.flexwrap {
    display: flex;
    flex-wrap: wrap;
}

.flexcenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexitem {
    display: flex;
    align-items: center;
}

.flexcol {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-links a:hover {
    color: var(--secondary-color);
}
.second-links a:hover {
    color:var(--light-text-color);
}

.icon-small, .icon-large {
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    font-weight: normal;
}

.icon-small {
    font-size: 1.25rem;
    margin-left: auto;
}

.icon-large {
    font-size: 1.75rem;
    padding: 0 0.75rem;
}

.mobile-hide {
    display: none;
}

.object-cover img{
    position: absolute;
    object-fit: cover;
    width: var(--percent100);
    height: var(--percent100);
    display: block;
}

.products .media {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.primary-button, .secondary-button, .light-button {
    font-size: var(--font-small);
    padding: 0.9rem 2rem;
    height: auto;
    width: fit-content;
    border-radius: 0.1rem;
    transition: var(--trans-background-color);
    text-transform: uppercase;
}


.primary-button {
    position: relative;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    overflow: hidden;
}
.primary-button::before, .primary-button::after {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100px) skewX(-15deg);
    content: "";
}
.primary-button::before {
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(30px);
    opacity: 0.5;
}
.primary-button::after {
    width: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
}
.primary-button:hover {
    background-color: var(--secondary-dark-color);
    border-color: var(--secondary-dark-color);
}
.primary-button:hover::before {
    opacity: 1;
}
.primary-button::before, .primary-button:hover::after {
    transform: translateX(300px) skewX(-15deg);
    transition: all 0.9s ease;
}
.secondary-button {
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
}
.secondary-button:hover {
    background-color: var(--light-bg-color);
    color: var(--secondary-dark-color);
}
.light-button {
    background-color: var(--light-bg-color);
}
.light-button:hover {
    background-color: var(--secondary-dark-color);
    color: var(--white-color) !important;
}

.view-all {
    font-size: var(--font-small);
    display: flex;
    gap: 1rem;
    transition: var(--trans-color);
}

.add-to-cart-button {
    width: 100%;
    background-color: var(--primary-color);
    padding: 8px 10px;
    text-transform: uppercase;
    border-radius: 0.1rem;
    transition: var(--trans-background-color);
    cursor: pointer;
}
.add-to-cart-button {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.add-to-cart-button:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.view-more {
    font-size: var(--font-size-s);
    padding: 0.6rem 0.9rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.1rem;
}
.view-more:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.read-more-button {
    font-size: var(--font-small);
    text-transform: uppercase;
    color: #343434;
}
.read-more-button {
    color: var(--primary-color);
}

.mini-text {
    font-size: var(--font-small);
    color: var(--light-text-color);
}

.shopnow-button {
    font-size: var(--font-size-s);
    padding: 0.6rem 0.9rem;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.1rem;
}


/* ------------------------
HEADER
---------------------------*/

:where(.off-canvas, header) li > a {
    display: flex;
    position: relative;
    line-height: inherit;
    transition: var(--trans-color);
}

    /* ------------------------
    HEADER -- Header top
    ---------------------------*/

.header-top .g-wrapper {
    font-size: var(--font-small);
    font-weight: var(--fw3);
    justify-content: space-between;
    line-height: 42px;
}
.header-top .g-wrapper ul {
    gap: 2rem;
}

.header-top li {
    position: relative;
}



    /* ------------------------
    HEADER -- Header Nav
    ---------------------------*/

.header-nav {
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.header-nav-menu {
    text-transform: capitalize;
}

.trigger {
    font-size: var(--font-size-l);
    display: flex;
    padding: 0.25rem;
    margin-top: 0.5rem;
}

.logo a img{
    max-height: 40px;
    margin-right: 2rem;
    margin-left: 0.7rem;
}

.header-nav nav > ul {
    line-height: 100px;
    gap: 2rem;
}

.fly-item {
    position: absolute;
    height: 16px;
    font-size: var(--font-smaller);
    padding: 3px;
    text-align: center;
    line-height: 10px;
    color: var(--white-color);
}
.header-nav .fly-item,
.header-nav .mini-cart .price .fly-item {
    top: 50%;
    margin-top: -24px;
    width: 30px;
    border-radius: 3px;
    right: -32px;
    background-color: var(--primary-color);
}

.header-nav .right {
    position: relative;
    margin-left: auto;
}
.header-nav .right .icon-large {
    position: relative;
}
.header-nav .right .fly-item {
    top: 48%;
    right: 6px;
    width: 16px;
    background-color: var(--secondary-dark-color);
    border-radius: var(--percent50);
}

/* --- Mega Menu -- */

.mega .flexcol {
    flex: 1;
    min-width: 180px;
    padding-right: 2.5rem;
    margin-bottom: 1.5rem;
    z-index: 1;
}

/* Header Responsive Menu -- off-canvas */
.site-off {
    position: fixed;
    width: 320px;
    height: var(--percent100);
    background-color: var(--white-color);
    overflow-y: auto;
    z-index: 1000;

    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.4s, visibility 0.4s;
    will-change: transform, visibility;
}

.showmenu .site-off {
    transform: translateX(0);
    visibility: visible;
    transform: transform .04s 0s, visibility 0s 0s;
}
.off-canvas {
    width: var(--percent100);
    height: var(--percent100);
    touch-action: auto;
    padding: 1.5rem;
}
.off-canvas .canvas-head {
    color: var(--white-color);
    justify-content: space-between;
    padding: 1.5rem;
    margin: -1.5rem -1.5rem 1.5rem;
    background-color: var(--secondary-dark-color);
    border-bottom-right-radius: 160px 1px;
}
.off-canvas .canvas-head .logo {
    z-index: 10;
    position: relative;
}

.t-close {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: var(--percent50);
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
    transition: var(--trans-background-color);
    border: 2px solid var(--white-color);
}
.t-close:hover {
    background-color: var(--white-color);
    color: var(--secondary-dark-color);
    opacity: 0.75;
}

.off-canvas .has-child > :where(ul, .mega) {
    font-size: var(--font-small);
    font-weight: var(--fw3);
    line-height: 28px;
    padding-left: 3rem;

    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.off-canvas .expand > :where(ul, .mega) {
    max-height: 2000px;
}

.off-canvas .thetop-nav ul, .off-canvas nav > ul {
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--font-size-n);
    line-height: 36px;
    padding-top: 1.25rem;
    margin: 1.25rem 0;
    border-top: 1px solid var(--border-color);
}

.off-canvas nav .mega {
    padding: 0;
}

.off-canvas nav .mega .products {
    display: none;
}

.off-canvas .has-child .icon-small {
    padding: 0.5rem;
    line-height: initial;
}
.off-canvas .has-child {
    width: var(--percent100);
}


/* search */
.search-popup-main .modal-body {
    background-color: var(--light-bg-color);
}
.search-popup-main .modal-header {
    background-color: var(--light-bg-color);
    border-bottom: none;
}
.search-popup-main .modal-header button.btn-close {
    background-color: var(--border-color);
    padding: 15px 15px;
    margin-right: 1rem;
}
.search-popup-form-outer {
    width: 50%;
    margin: auto;
}
.search-popup-form-outer form {
    position: relative;
    margin-top: -16rem;
}
.search-popup-form-outer form input:focus {
    outline: none;
    box-shadow: none;
}
.search-popup-form-outer button.btn {
    position: absolute;
    top: 6px;
    right: 4px;
}
.search-popup-form-outer button.btn:focus {
    outline: 0;
    border: 0;
}
.search-popup-form-outer input {
    border-radius: 28px;
    font-size: var(--font-size-s);
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 16px;
    padding-right: 34px;
}


/* ------------------------
Hero Slider
---------------------------*/
.slider > div > .g-wrapper {
    width: 100%;
}
.slider .item {
    position: relative;
    /* height: 474px; */
    /*height: 550px;*/
    height: 700px;

}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-dark-color);
}

/* ------------------------
circle categories
---------------------------*/
.categories-circle {
    margin: 1.5rem 0;
    
}
.categories-circle .circle-border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    line-height: 20px;
    border-radius: 50%;
    font-size: var(--font-size-m);
    color:  var(--secondary-dark-color);
    font-weight: var(--fw3);
    text-align: center;
    border: 2px solid var(--secondary-dark-color);
}

.categories-circle .g-wrapper {
    justify-content: space-between;
    /* flex-wrap: wrap; */
    text-align: center;
    text-align: -webkit-center;
    padding: 1rem 0;
}
.categories-circle .item {
    padding: 0.4rem;
}
.categories-circle .item a{
    opacity: 0.5;
    transition: opacity 0.3s;
    -webkit-transition: 0.3s;
}
.categories-circle .item a:hover {
    opacity: 1;
}


/* ------------------------
Category Card
---------------------------*/

.sectop {
    justify-content:space-between;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.sectop h2 {
    position: relative;
    font-size: var(--font-size-l);
    font-weight: var(--fw7);
}

.category-card .column {
    margin: 1rem 0;
}
.category-card .products.big .item {
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--secondary-dark-color);
    border-radius: 7px;
    max-width: 460px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.category-card .products :where(.image) img {
    transition: transform 0.3s;
     -webkit-transition: 0.3s;
    
}

.category-card .products :where(.image):hover img {
    transform: scale(1.1);
}

.category-card .products .content {
    gap: 1rem;
    margin-top: 1.25rem;
    text-align: center;
}
.category-card .products .content h4 a{
    text-transform: capitalize !important;
}

.products .thumbnail img {
    border-radius: 6%;
}

.products :where(.thumbnail) img {
    transition: transform 0.3s;
}

.products :where(.image):hover img {
    transform: scale(1.1);
}

.products h3 {
    font-size: 1rem;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    display:-webkit-box;
    -webkit-box-orient: vertical;
    text-align: start;
}

.products .item .product-content {
    text-align: start;
    line-height: 1;
}

.products .price .current {
    font-size: calc(0.3rem + 1vw);
    color: var(--current-price-color);
    margin-right: 0.25rem;
}

.products .price .normal {
    color: var(--light-text-color);
    text-decoration: line-through;
}

/* ------------------------
Text overlay and tab slider section
---------------------------*/
.overlay-products-section {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: var(--white-color);
}

.text-overlay-section {
    position: relative;
}

.text-overlay-section .image {
    width: 100%;
}

.overlay-box {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
}

.overlay-box .overlay-content {
    width: 50%;
    padding-top: 30px;
    position: relative;
    padding-right: 18px;
}

.overlay-box .overlay-content h3 {
    font-size: var(--font-size-l);
    text-transform: uppercase;
}

.overlay-box .overlay-content h6 {
    font-size: var(--font-size-s);
}


.tab-sec-heading span {
    position: relative;
    font-size: var(--font-size-m);
    text-transform: uppercase;
    /* margin-left: 25px; */
}
.tab-sec-heading h5 {
    font-size: var(--font-size-xxxl);
    text-transform: uppercase;
    margin-top: 8px;
}

.tab-section ul li button {
    text-transform: uppercase;
    border: none;
    border-color: none;
}

.tab-section ul li button:focus {
    border: none;
    border-color: none;
}

.tab-section ul li button:hover {
    border: none;
    border-color: none;
}

.tab-section .nav-tabs .nav-link {
    border: none;
    padding-bottom: 14px;
    border-bottom: 1px solid transparent;
    color: #343434;
    transition: all 0.1s ease;
     -webkit-transition: all 0.1s ease;
}

.tab-section .nav-link.active {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--secondary-dark-color);
}

.tab-section .nav-tabs:first-child button {
    padding-left: 7px;
    font-size: var(--font-size-n);
}

.tab-section .nav-tabs {
    justify-content: space-around;
}

.tab-section .tab-slider-section {
    margin: 24px;
}

.tab-content .add-btn {
    text-align: center;
    margin-top: 30%;
}

/* Owl carousel */

.owl-nav {
    padding-top: 10px;
    background-color: transparent;
}
.owl-nav:hover {
    background-color: transparent;
}

.owl-carousel .owl-nav button.owl-next {
    font-size: 1.8rem;
    width: 36px;
    /* height: 32px; */
    border-radius: var(--percent100);
    background-color: var(--light-bg-color);
    color: var(--primary-color);
    transition: var(--trans-background-color);
}
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--primary-color);
    opacity: 0.75;
}
.owl-carousel .owl-nav button.owl-prev {
    font-size: 1.8rem;
    width: 36px;
    /* height: 32px; */
    border-radius: var(--percent100);
    background-color: var(--light-bg-color);
    color: var(--primary-color);
    transition: var(--trans-background-color);
}
.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--primary-color);
    opacity: 0.75;
}

.owl-theme .owl-dots {
    display: none;
}

#owl-video video {
    border-radius: 1%;
}

/* ------------------------
Features products
---------------------------*/

.products.main .item {
    flex-direction: column;
    flex: 0 0 100%;
    padding: 0 0.938rem;
    padding-bottom: 2rem;
}

.features .second-links .view-all {
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ------------------------
Product Insta Videos
---------------------------*/
.carousel-card-slider {
    padding-bottom: 2.5rem;
    text-align: center;
} 

.carousel-card-slider .video-box {
    position: absolute;
    top: 75%;
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
}


.carousel-card-slider .video-box .video-content {
    width: 50%;
    padding-top: 30px;
    position: relative;
    padding-right: 18px;
}


/* .carousel-card-slider .video-box .video-content h6 {
    font-size: var(--font-size-n);
    text-transform: uppercase;
} */

/* ------------------------
Text overlay and tab slider section 2
---------------------------*/
.overlay-products-section2 {
    padding-top: 52px;
    padding-bottom: 60px;
    background-color: var(--white-color);
}

.text-overlay-section2 {
    position: relative;
}

.text-overlay-section2 .image {
    width: 100%;
}

.text-overlay-section2 .overlay-box {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
}

.text-overlay-section2 .overlay-box .overlay-content {
    width: 80%;
    padding-top: 30px;
    position: relative;
    padding-left: 55px;
}

.overlay-box .overlay-content h3 {
    font-size: var(--font-size-l);
    text-transform: uppercase;
}

.overlay-box .overlay-content h6 {
    font-size: var(--font-size-s);
}

.tab-sec-heading span {
    position: relative;
    font-size: var(--font-size-m);
    text-transform: uppercase;
    /* margin-left: 25px; */
}
.tab-sec-heading h5 {
    font-size: var(--font-size-xxxl);
    text-transform: uppercase;
    margin-top: 8px;
}

.tab-section2 ul li button {
    text-transform: uppercase;
    border: none;
    border-color: none;
}

.tab-section2 ul li button:focus {
    border: none;
    border-color: none;
}

.tab-section2 ul li button:hover {
    border: none;
    border-color: none;
}

.tab-section2 .nav-tabs .nav-link {
    border: none;
    padding-bottom: 14px;
    border-bottom: 1px solid transparent;
    color: #343434;
    transition: all 0.1s ease;
}

.tab-section2 .nav-link.active {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--secondary-dark-color);
}

.tab-section2 .nav-tabs:first-child button {
    padding-left: 7px;
    font-size: var(--font-size-n);
}

.tab-section2 .nav-tabs {
    justify-content: space-around;
}

.tab-section2 .tab-slider-section {
    margin: 24px;
}


/* ------------------------
Corporate section
---------------------------*/
.corp-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.corp-section .corp-image img {
    width: 100%;
    height: 100%;
}

.corp-section .corp-box-content {
    display: flex;
    align-items: start;
    height: 100%;
    background-color: var(--white-color);
    padding: 30px;
}

.corp-section .corp-box-content span {
    position: relative;
    font-size: var(--font-size-m);
    text-transform: uppercase;
    /* margin-left: 25px; */
}
.corp-section .corp-box-content h5 {
    font-size: var(--font-size-xxxl);
    text-transform: uppercase;
    margin-top: 3px;
}

.corp-section .corp-box p {
    font-size: var(--font-size-s);
    width: 90%;
    margin-left: 5%;
}

.corp-section .corp-box .corp-button {
    margin-left: 5%;
}


/* ------------------------
Blog section
---------------------------*/
.blog-section {
    margin-top: 20px;
    margin-bottom: 50px;
}

.blog-top-content {
    justify-content: space-between;
}

.blog-top-content span {
    position: relative;
    font-size: var(--font-size-m);
    text-transform: uppercase;
    /* margin-left: 25px; */
}

.blog-top-content h5 {
    font-size: var(--font-size-xxxl);
    text-transform: uppercase;
    margin-top: -7px;
}

.blog-main {
    margin-top: 30px;
}

.blog-main .blog-box .blog-image img {
    width: 100%;
    border-radius: 6%;
}

.blog-main .blog-box .blog-image img:hover {
    filter: brightness(0.9);
}

.blog-main .blog-details .blog-title {
    margin-top: 20px;
    margin-bottom: 5px;
}

.blog-main .blog-details .blog-title h4{
    font-size: var(--font-size-m);
}

.blog-main .blog-details .blog-text p {
    font-size: var(--font-size-s);
    margin-top: 8px;
}


/* Blog Post section */

.blog-post-main .blog-banner-image {
    padding-top: 40px;
    padding-bottom: 25px;
}
.blog-post-main .blog-banner-image img {
    width: 100%;
    height: 500px;
    object-fit:cover ;
}

.blog-post-main .blog-text {
    padding-top: 25px;
    padding-bottom: 25px;
}
.blog-post-main .blog-content {
    width: 80%;
    margin: auto;
}
.blog-post-main .blog-title h4 {
    text-transform: uppercase;
    font-size: var(--font-size-xxl);
    color: var(--primary-color);
    margin: 0;
} 
.blog-post-main .blog-date {
    padding-top: 15px;
    padding-bottom: 15px;
} 
.blog-post-main .blog-content p {
    font-size: var(--font-size-n);
} 

.blog-post-main .blog-image {
    padding-top: 10px;
    padding-bottom: 25px;
}
.blog-post-main .blog-image .inner-image {
    width: 80%;
    margin: auto;
    
}
.blog-post-main .blog-image .inner-image img {
    width: 100%;
    margin-bottom: 14px;
}


/* ------------------------
Footer section
---------------------------*/

.footer {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer .footer-logo a img{
    max-height: 32px;
    margin-right: 2rem;
    margin-bottom: 10px;
}

.footer .social-links a i{
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--percent50);
    border: 1px solid var(--light-bg-color);
    font-size: 16px;
    color: var(--white-color);
    margin-right: 10px;
    padding: 6px 6px;
    transition: 0.3s;
}

.footer .social-links a i:hover {
    color: var(--light-text-color);
    border-color: var(--light-text-color);
}

.footer .footer-logo-content-box p {
    font-size: var(--font-small);
    width: 72%;
    line-height: 18px;
    padding-bottom: 8px;
}

.footer .footer-links-box .footer-nav h5 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer .footer-links-box li a {
    font-size: var(--font-size-s);
    color: var(--white-color);
}

.footer .footer-links-box li a:hover {
    color: var(--light-text-color);
}

.footer .footer-links-box p {
    font-size: var(--font-size-s);
    color: white;
}

.footer .copyright-section {
    padding-top: 15px;
    border-top: 1px solid var(--light-text-color);
}

.footer .copyright-section p {
    margin-bottom: 2px;
    margin-top: 5px;
    font-size: var(--font-small);
    color: var(--light-text-color);
}

/* ------------------------
Scroll Top Button
---------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: -55px;
    z-index: 9999;
    background-color: var(--secondary-dark-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--white-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: var(--primary-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
    left: 8px;
}

.whats-app {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 10000;
    width: 48px;
    height: 48px;
    transition: all 0.4s;
}

/* ------------------------
Menu Bottom
---------------------------*/
.menu-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background-color: var(--white-color);
    box-shadow: 0 -2px 10px rgb(0, 0, 0, 0.1);
    z-index: 900;
}

.menu-bottom nav li {
    flex: 1;
}
.menu-bottom nav li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--primary-color);
    transition: var(--trans-color);
}

.menu-bottom nav li a:hover {
    color: var(--light-text-color);
}
.menu-bottom nav li a span {
    font-size: var(--font-smaller);
}
.menu-bottom nav li a i {
    font-size: 1.25rem;
}

.menu-bottom .fly-item {
    right: 50%;
    width: 16px;
    border-radius: var(--percent50);
    /* margin: -20px; */
    margin-top: -5px;
    margin-right: -16px;
    background-color: var(--primary-color);
}

    /* Mobile menu overlay with blurred backgrounds */
    .overlay-blur {
        position: fixed;
        width: var(--percent100);
        height: var(--percent100);
        top: 0;
        left: 0;
        z-index: 990;
        background-color: rgba(0, 0, 0, 0.4);
        visibility: hidden;
        opacity: 0;
    }
    .showmenu .overlay-blur {
        opacity: 1;
        visibility: inherit;
    }


/* ------------------------
Single Product details
---------------------------*/
/* Breadcrumb */

.breadcrumb {
    font-size: var(--font-small);
    margin-bottom: 2rem;
}
.breadcrumb li:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--light-text-color);
}


/* Single Product section */

.single-product-gallery {
    padding: 1rem 2rem 4rem;
}
#productGallery {
    padding: 0.5rem;
}

.products.one h1 {
    margin: 1rem 0 0.1rem;
    line-height: 2.5rem;
}

.products.one .price {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.products.one .price .current {
    font-size: var(--font-size-xxl);
}
.products.one .price .normal {
    font-size: var(--font-size-l);
}

.products.one .actions {
    margin-top: 1rem;
}

.products.one .qty-control {
    width: fit-content;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    margin: 0 2rem 2rem 0;
}

.products.one .qty-control :where(button, input) {
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: var(--font-size-m);
    outline: 0;
    border: 0;
 }
 .products.one .actions input {
    width: 50px;
    text-align: center;
 }
 .products.one .qty-control button {
    cursor: pointer;
    background-color: var(--light-bg-color);
}
 .products.one .qty-control .num {
    pointer-events: none;
}

.products.one .actions .button-cart {
    min-width: 280px;
}

.products.one .actions .button-cart button {
    display: block;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: var(--percent100);
    text-align: center;
    font-size: var(--font-size-m);
    max-width: 280px;
    margin: 0.5rem 0;
}

.products.one .actions .button-checkout {
    min-width: 280px;
    margin: 0 1rem;
}

.products.one .actions .button-checkout button {
    display: block;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: var(--percent100);
    text-align: center;
    font-size: var(--font-size-m);
    max-width: 280px;
    margin: 0.75rem 0;
}

.modal-content .btn-close:focus {
    outline: none;
    box-shadow: none;
}
.single-product-content .greeting-button {
    width: var(--percent100);
    font-size: var(--font-size-n);
    padding: 0.5rem;
}
.single-product-content .modal-body .item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}
.single-product-content .modal-content .modal-body .thumbnail {
    position: relative;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}
.single-product-content .modal-content .modal-body .item-content p {
    font-size: var(--font-small);
    font-weight: var(--fw5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.single-product-content .modal-content .modal-body .item-add {
    margin-left: auto;
    padding: 10px;
}
.single-product-content .modal-content .modal-footer button {
    margin: auto;
}


/* Single Product Description section */
.product-tab-section {
    padding-bottom: 60px;
}
.product-tab-section .nav-tabs:first-child button {
    padding-left: 0;
    font-size: var(--font-size-n);
    border-bottom: 2px solid transparent;
    margin-right: 45px;
    text-transform: uppercase;
    padding-bottom: 4px;
}
.product-tab-section .nav-tabs {
    /* border-bottom: 0.5px solid var(--border-color); */
    border-bottom: none;
}
.product-tab-section .nav-tabs .nav-link {
    border: none;
    padding-bottom: 14px;
    border-bottom: 1px solid transparent;
    color: var(--primary-color);
    transition: all 0.1s ease;
}

.product-tab-section .nav-tabs button.nav-link.active {
    border-bottom: 2px solid var(--dark-color);
}

.product-tab-section .tab-pane {
    margin-top: 14px;
}
.product-tab-section p {
    font-size: 0.95rem;
    color: var(--dark-text-color);
}
.product-tab-section .moreInfo-tab span {
    font-size: var(--font-size-s);
    color: var(--light-text-color);
}
.product-tab-section .moreInfo-tab .moreInfo-short {
    margin-bottom: 1rem;
}

/* ------------------------
Product Category Page
---------------------------*/
/* Sidebar product filter */

.filter-block {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.filter-block:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.filter-block h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.filter-block li {
    display: flex;
    font-size: var(--font-size-s);
    position: relative;
    line-height: 2;
}
.filter-block label .checked {
    width: 16px;
    height: 16px;
    position: relative;
    line-height: 0;
    display: inline-block;
    border: 2px solid var(--secondary-dark-color);
    vertical-align: text-top;
    margin: 0 7px 0 0;
    cursor: pointer;
}
.filter-block label .checked::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-dark-color);
    top: 2.5px;
    left: 2.5px;
    opacity: 0;
}

.filter-block input:checked+label .checked::before {
    opacity: 1;
}
.filter-block li .count {
    margin-left: auto;
    color: var(--light-text-color);
}

:where(.filter-block:not(.pricing)) input {
    clip: rect(0,0,0,0);
    overflow: hidden;
    position: absolute;
    height: 0;
    width: 0;
}

.filter-block input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    width: var(--percent100);
}

.filter-block input[type="range"]:focus {
    outline: 0;
}
.filter-block input[type="range"]::-webkit-slider-runnable-track {
    width: var(--percent100);
    height: 5px;
    cursor: pointer;
    background-color: var(--border-color);
    box-shadow: none;
    border: 0;
}
.filter-block input[type="range"]::-webkit-slider-thumb {
    z-index: 2;
    position: relative;
    height: 18px;
    width: 14px;
    background-color: var(--primary-color);
    -webkit-appearance: none;
    margin-top: -7px;
}
.byprice .price-range {
    display: flex;
    justify-content: space-between;
    color: var(--light-text-color);
    margin-top: 0.5rem;
}

.product-category .holder {
     display: flex;
     flex-direction: column;
}
.product-category .sidebar,
.product-category .product-category-detail {
    flex: 1 0 100%;
}

.product-category .page-title {
    margin-bottom: 0px;
}

.cat-navigation {
    font-size: 0.85rem;
    margin: 2rem 0;
    justify-content: flex-end;
    gap: 1rem;
}
.cat-navigation .item-filter {
    margin-right: auto;
}
.cat-navigation > div {
    position: relative;
}
.cat-navigation .item-filter a {
    align-items: center;
    text-transform: uppercase;
}
.cat-navigation ul {
    display: none;
    position: absolute;
    left: 0;
    min-width: var(--percent100);
    width: max-content;
    z-index: 10;
}

#sort_product_id {
    left: 0;
    min-width: var(--percent100);
    width: max-content;
    z-index: 10;
    gap: 0.5rem;
    padding: 0.1rem 0.2rem;
    transition: var(--trans-color);
    color: var(--light-text-color);
    background-color: var(--light-bg-color);
    cursor: pointer;
    border: none;
    outline: none;
}

#sort_tab_product_id {
    left: 0;
    min-width: var(--percent100);
    width: max-content;
    z-index: 10;
    gap: 0.5rem;
    padding: 0.1rem 0.2rem;
    transition: var(--trans-color);
    color: var(--light-text-color);
    background-color: var(--light-bg-color);
    cursor: pointer;
    border: none;
    outline: none;
}

#sort_all_product_id {
    left: 0;
    min-width: var(--percent100);
    width: max-content;
    z-index: 10;
    gap: 0.5rem;
    padding: 0.1rem 0.2rem;
    transition: var(--trans-color);
    color: var(--light-text-color);
    background-color: var(--light-bg-color);
    cursor: pointer;
    border: none;
    outline: none;
}

#sort_popular_product_id {
    left: 0;
    min-width: var(--percent100);
    width: max-content;
    z-index: 10;
    gap: 0.5rem;
    padding: 0.1rem 0.2rem;
    transition: var(--trans-color);
    color: var(--light-text-color);
    background-color: var(--light-bg-color);
    cursor: pointer;
    border: none;
    outline: none;
}

.cat-navigation .label, .cat-navigation ul li {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: var(--trans-color);
}
.cat-navigation .label, .cat-navigation select {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: var(--trans-color);
}

:where(.item-sortir, .item-options) .label, .cat-navigation ul {
    color: var(--light-text-color);
    background-color: var(--light-bg-color);
    cursor: pointer;
}
:where(.item-sortir, .item-options) .label, .cat-navigation select {
    color: var(--light-text-color);
    background-color: var(--light-bg-color);
    cursor: pointer;
}
:where(.item-sortir, .item-options):hover ul {
    display: block;
}

.load-more {
    display: block;
    width: 80%;
    text-align: center;
    margin: 2rem 0 4rem;
}

.filter {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 2rem;
    max-width: 400px;
    width: 55%;
    background-color: var(--white-color);
    overflow: auto;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.3) 0 10px 50px;
    visibility: hidden;
    opacity: 0;
}
.filter.show {
    visibility: visible;
    opacity: 1;
}

/* ------------------------
Account Hover
---------------------------*/
/* Top account */
.top-my-account {
    position: absolute;
    width: 110px;
    top: 100%;
    margin-left:1.5rem;
    background-color: var(--white-color);
    z-index: 1000;
    box-shadow:rgba(0, 0, 0, 0.3) 0 10px 50px;

    visibility: hidden;
    opacity: 0;
}
.isAccount:hover .top-my-account {
    visibility: visible;
    opacity: 1;
}

.top-my-account .top-my-account-content {
    width: var(--percent100);
    height: var(--percent100);
    touch-action: auto;
    padding: 1rem;
}

/* ------------------------
Cart Hover
---------------------------*/
/* Top mini cart menu */

.mini-cart {
    position: absolute;
    width: 400px;
    top: 100%;
    right: 0;
    background-color: var(--white-color);
    z-index: 1000;
    box-shadow:rgba(0, 0, 0, 0.3) 0 10px 50px;

    visibility: hidden;
    opacity: 0;
}
.iscart:hover .mini-cart {
    visibility: visible;
    opacity: 1;
}
.mini-cart .products img {
    transform: none;
}
.mini-cart ul :where(li, .price) {
    position: relative;
}
.mini-cart .mini-cart-content {
    width: var(--percent100);
    height: var(--percent100);
    touch-action: auto;
    padding: 1.5rem;
}
.mini-cart .cart-head {
    font-size: var(--font-size-n);
    font-weight: var(--fw5);
    color: var(--light-text-color);
    padding-bottom: 0.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mini-cart .cart-body {
    padding: 0 1rem;
    margin: 0 -1.5rem;
    max-height: 450px;
    overflow: auto;
}
.mini-cart .item {
    padding-bottom: 0.4rem;
}
.mini-cart .thumbnail {
    position: relative;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}
.mini-cart .item-content p {
    font-size: var(--font-small);
    font-weight: var(--fw5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.mini-cart .item-remove {
    margin-left: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.mini-cart .subtotal {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    margin-bottom: 1.2rem;
    border-top: 1px solid var(--border-color);
}

.mini-cart .subtotal p:last-child {
    font-size: var(--font-size-l);
}
.mini-cart .actions a{
    display: block;
    width: var(--percent100);
    text-align: center;
    margin-bottom: 1rem;
}

/* Show cart on click in mobile bottom menu */
.mini-cart.show {
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: 0;
    bottom: 0;
    max-width: 400px;
    width: 80%;
}

/* ------------------------
Cart Page Section
 ---------------------------*/
.cart-page-section .page-title {
    margin-bottom: 3rem;
}
.cart-page-section .products.cart .thumbnail img {
    transform: none;
}

 .cart-page-section .products.cart .thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1rem;
 }

 .cart-page-section .products.cart form {
    width: var(--percent100);
 }
 .cart-page-section .products.cart table thead th {
    vertical-align: middle;
    background-color: var(--light-bg-color);
 }
 .cart-page-section .products.cart table :where(th, td) {
    padding: 2rem 1rem;
    text-align: center;
 }
 .cart-page-section .products.cart table :where(th, td):first-child {
    text-align: left;
    padding: 2rem;
 }
 .cart-page-section .products.cart table tbody td:first-child {
    padding-left: 0;
 }
 .cart-page-section .products.cart table td :where(.content, .qty-control, p) {
    margin: 0;
    padding: 0;
 }
 .cart-page-section .products.cart .qty-control :where(button, input) {
    width: 32px;
    height: 32px;
    padding: 0.25rem;
    text-align: center;
    outline: 0;
    border: 0;
    /* background-color: transparent; */
 }
 .cart-page-section .products.cart .qty-control button {
    cursor: pointer;
    background-color: var(--light-bg-color);
 }
 .cart-page-section .products.cart table tbody tr {
    border-bottom: 1px solid var(--border-color);
 }


 /* Cart summary */
.cart-summary {
    width: var(--percent100);
    margin: 2.5rem 0 4rem;
}
.cart-summary .item {
    background-color: var(--light-bg-color);
}
.cart-summary .coupon {
    position: relative;
}

.cart-summary .coupon input {
    font-size: var(--font-size-m);
    outline: 0;
    width: var(--percent100);
    padding: 0 1.5rem;
    line-height: 50px;
    background-color: var(--white-color);
    border: 3px solid var(--secondary-dark-color);
}

.cart-summary .coupon button {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    outline: 0;
    font-size: var(--font-size-n);
    padding: 0 2.5rem;
    line-height: 55px;
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
    cursor: pointer;
}

.summary-totals .coupon {
    position: relative;
}

.summary-totals .coupon input {
    font-size: var(--font-size-m);
    outline: 0;
    width: var(--percent100);
    padding: 0 1rem;
    line-height: 42px;
    background-color: var(--white-color);
    border: 3px solid var(--secondary-dark-color);
}

.summary-totals .coupon button {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    outline: 0;
    font-size: var(--font-size-n);
    padding: 0 2.5rem;
    line-height: 46px;
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
    cursor: pointer;
}

.styled :where(input, select, textarea) {
    padding: 0.75rem;
    outline: 0;
    background-color: var(--white-color);
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: var(--border-color);
}

.cart-page-section .products.cart .cart-summary .cart-total table tr > * {
    padding: 0;
}
.cart-page-section .products.cart .cart-summary .cart-total table td {
    text-align: right;
}
.cart-page-section .products.cart .cart-summary .cart-total {
    padding: 2rem;
    background-color: var(--border-color);
    line-height: 2rem;
}
.cart-page-section .products.cart .cart-summary .cart-total table {
    width: var(--percent100);
}
.cart-page-section .products.cart .cart-summary .cart-total table tr {
    display: flex;
    justify-content: space-between;
}
.cart-page-section .products.cart .cart-summary .cart-total .grand-total td {
    font-size: var(--font-size-l);
    font-weight: var(--fw8);
    line-height: 2rem;
}
.cart-page-section .products.cart .cart-summary .cart-total a {
    display: block;
    width: var(--percent100);
    text-align: center;
    margin-top: 2rem;
    font-size: var(--font-size-n);
}


/* ------------------------
Checkout Page Section
---------------------------*/
.checkout {
    margin: 2rem 0;
}

/* Shipping Information */

.checkout .left {
    padding: 4rem;
    background-color: var(--light-bg-color);
    box-shadow: 0 15px 70px -8px rgb(0, 0, 0, 0.2);
}

.checkout .left h3 {
    font-weight: var(--fw6);
    margin-bottom: 1.5rem;
}

.checkout .left label {
    font-size: var(--font-size-n);
    text-transform: capitalize;
    position: relative;
    width: fit-content;
}
.checkout .left label span {
    position: absolute;
    top: 0;
    right: -10px;
    width: 6px;
    height: 6px;
    background-color: rgb(255, 127, 127);
    border-radius: var(--percent50);
}
.checkout .styled form p:not(:last-child) {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.checkout .styled .login form p {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.checkout p :where(input, textarea) {
    background-color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
}
.checkout p input:focus {
    background-color: var(--white-color);
}
.checkout p.checkset {
    flex-direction: row;
}
.checkout p.checkset label {
    margin: 0 0 0.5rem;
    cursor: pointer;
}
.checkout p.checkset input {
    cursor: pointer;
}
.checkout p.checkset input[type="checkbox"] {
    accent-color: var(--primary-color);
}
.checkout p.checkset input[type="radio"] {
    accent-color: var(--primary-color);
}

.checkout .payment-methods h3 {
    padding-top: 0.5rem;
    margin-bottom: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.checkout .cod-note p {
    font-size: var(--font-small);
    margin: -0.5rem 0 1.5rem;
}

.primary-checkout button {
    display: block;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: var(--percent100);
    text-align: center;
    font-size: var(--font-size-m);
    max-width: 280px;
    margin: 3rem auto 0;
}
.checkout .verify-button {
    padding: 0.7rem 2rem;
    margin-left: 0.75rem;
    margin-bottom: 1.5rem;
}


/* Order summary */
.checkout .item.right {
    padding: 3.5rem 0 0 5rem;
}
.summary-totals ul {
    max-width: 335px;
    line-height: 2;
    margin-top: 2rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--secondary-dark-color);
}
.summary-totals li {
    display: flex;
    justify-content: space-between;
    font-weight: var(--fw5);
}
.summary-totals li strong {
    font-size: var(--font-size-xl);
    line-height: 1;
}

.checkout .products.mini .item {
    margin-bottom: 1.5rem;
}
.checkout .products.mini .thumbnail img {
    transform: none;
}
.checkout .products.mini .thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.summary-totals li:last-child {
    margin-top: 1.5rem;
}
.summary-totals li:not(:last-child) span:first-child {
    color: var(--light-text-color);
}
.summary-order .products.mini .price {
    display: flex;
    flex-direction: column;
    color: var(--light-text-color);
    font-size: var(--font-size-s);
    margin-top: 0.5rem;
}


/* ------------------------
Contact us Page
---------------------------*/
.contact {
    margin: 2rem 0;
}
.contact-page-section .enquiryform {
    padding: 4rem;
    background-color: var(--light-bg-color);
    box-shadow: 0 15px 70px -8px rgb(0, 0, 0, 0.2);
}

.contact-page-section .enquiryform h3 {
    font-weight: var(--fw3);
    margin-bottom: 1.5rem;
}
.contact-page-section .enquiryform label {
    font-size: var(--font-size-n);
    text-transform: capitalize;
    position: relative;
    width: fit-content;
}
.contact-page-section .enquiryform label span {
    position: absolute;
    top: 0;
    right: -10px;
    width: 6px;
    height: 6px;
    background-color: rgb(255, 127, 127);
    border-radius: var(--percent50);
}
.contact-page-section .styled form p:not(:last-child) {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.contact-page-section p :where(input, textarea) {
    background-color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
}
.contact-page-section p input:focus {
    background-color: var(--white-color);
}

.primary-submit button {
    display: block;
    border: 0;
    outline: 0;
    cursor: pointer;
    width: var(--percent100);
    text-align: center;
    font-size: var(--font-size-m);
    max-width: 180px;
    margin: 3rem auto 0;
}

/* contact us */
.contact .item.contactInfo {
    padding: 1.5rem 5rem 0 7rem;
}
.contact-detail ul {
    max-width: 335px;
    line-height: 2;
    margin-bottom: 3rem;
    padding-bottom: 2rem;

}
.contact-detail li {
    margin-bottom: 1rem;
    font-weight: var(--fw5);
}

.contact-detail li:first-child {
    margin-top: 1.5rem;
}
.contact-detail li span:first-child {
    color: var(--light-text-color);
}

.contact-page-section input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-page-section input[type=number] {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}


/* Greeting Select dropdown */
.chose-image-small {
    width: 38px;
    max-height: 38px;
    vertical-align: middle;
    margin: -3px 10px 0 0;
}
.chose-image-list {
    width: 16px;
    max-height: 16px;
    vertical-align: middle;
    margin: -3px 5px 0 0;
}

.chosen-container-single .chosen-single {
    border: 1px solid #dee2e6;
    min-height: 48px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #dee2e6;
}

.chosen-container .chosen-drop {
    border: 1px solid #dee2e6;
}

.chosen-container-single .chosen-single span {
    font-size: var(--font-size-s);
}

.chosen-search-input {
    display: none;
}

#otpform {
    display: none;
}
#verifyOtpBtn {
    display: none;
}

#resendotp {
    display: none;
}

#loginotpform {
    display: none;
}
#loginverifyOtpBtn {
    display: none;
}

#loginresendotp {
    display: none;
}


.countdown {
    display: table;
    width: 100%;
    text-align: left;
    font-size: var(--font-size-s);
}

/* Order detail page */
.order-detail-section .table .thumbnail img {
    transform: none;
}
.order-detail-section .table .thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1rem;
}

/* Coupon */
#couponBox {
    display: none;
}

