:root {
    --text-50: hsl(0, 0%, 60%);
    --text-100: hsl(0, 0%, 50%);
    --text-200: hsl(0, 0%, 48%);
    --text-300: hsl(0, 0%, 45%);
    --text-400: hsl(0, 0%, 40%);
    --text-500: hsl(0, 0%, 18%);
    --text-600: hsl(0, 0%, 15%);
    --text-700: hsl(0, 0%, 13%);
    --text-800: hsl(0, 0%, 10%);
    --text-900: hsl(0, 0%, 8%);
    --text-950: hsl(0, 0%, 5%);


--background: hsl(0, 0%, 100%);


--primary-50: hsl(51, 100%, 95%);
--primary-100: hsl(49, 100%, 90%);
--primary-200: hsl(50, 100%, 80%);
--primary-300: hsl(50, 100%, 70%);
--primary-400: hsl(50, 100%, 60%);
--primary-500: hsl(50, 100%, 50%);
--primary-600: hsl(50, 100%, 45%);
--primary-700: hsl(50, 100%, 44%);
--primary-800: hsl(50, 100%, 43%);
--primary-900: hsl(51, 100%, 42%);
--primary-950: hsl(48, 100%, 41%);

--secondary-50: hsl(46, 100%, 95%);
--secondary-100: hsl(46, 100%, 90%);
--secondary-200: hsl(46, 100%, 80%);
--secondary-300: hsl(46, 100%, 70%);
--secondary-400: hsl(46, 100%, 60%);
--secondary-500: hsl(46, 100%, 50%);
--secondary-600: hsl(46, 100%, 40%);
--secondary-700: hsl(46, 100%, 30%);
--secondary-800: hsl(46, 100%, 20%);
--secondary-900: hsl(46, 100%, 10%);
--secondary-950: hsl(46, 100%, 5%);

--accent-50: hsl(0, 0%, 95%);
--accent-100: hsl(0, 0%, 90%);
--accent-200: hsl(0, 0%, 80%);
--accent-300: hsl(0, 0%, 70%);
--accent-400: hsl(0, 0%, 60%);
--accent-500: hsl(0, 0%, 50%);
--accent-600: hsl(0, 0%, 40%);
--accent-700: hsl(0, 0%, 30%);
--accent-800: hsl(0, 0%, 20%);
--accent-900: hsl(0, 0%, 10%);
--accent-950: hsl(0, 0%, 5%);


}


/* Reset default browser styles */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    margin: 0;
    padding: 0;
}

/* Box-sizing for easier layout */
* {
    box-sizing: border-box;
}

/* Set a base font and color */
body {
    font-family: Raleway, sans-serif;
    line-height: 1.6;
    color: var(--text-800);
    scroll-behavior: smooth;
}

li {
    list-style: none;
}


/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

/* Links */
a {
    text-decoration: none;
    color: initial;
}

button {
    padding: 0;
    overflow: visible;
    background: 0 0;
    border: none;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

button:not(:disabled) {
    cursor: pointer;
}

.main-container {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline:20px;
}


#announcement-bar {
    background-color: var(--accent-100);
    position: relative;
    top: 0;
}

.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
}

.announcement-list > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-700);
}

#header {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: var(--background);
    border-bottom: 1px solid var(--text-100);
}

.header-wrapper {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
}

.header-logo {
    display: block;
    max-width: max-content;
    margin: 0;
    
}

.header-logo-img {
    max-width: 150px;
}

.header-nav, .header-secondary {
    flex: 1 1 0;
}

.header-linklist {
    row-gap: 12px;
}

.header-link-item {
    flex-shrink: 0;
}

.header-link-item:not(:last-child) {
    margin-right: 30px;
}

.header-link-item .header-item-link {
    display: flex;
    align-items: center;
}

.header-item-link {
    font-size: 16px;
}

.header-item-link > span {
    margin-right: 8px;
    display: inline-block;
}

.link-animate {
    position: relative;
    width: max-content;
}

.header-secondary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-icon-list {
    display: flex;
    grid-gap: 12px;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    padding: 20px;
    border: 1px solid rgba(var(--text-900),.85);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    background-color: var(--background) !important;
    transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
    color: rgb(var(--text-800));
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.nav-dropdown-link {
    display: flex;
}

.header-link-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

.desktop-search-input {
    display: flex;
    position: relative;
    width: 100%;
}

.des-search-label {
    position: relative;
    overflow: hidden;
}

.des-search {
    padding: 0;
    min-width: 300px;
    background: 0 0;
    box-shadow: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.desktop-search-input input {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2em;
    border: none;
    color: #000;
    width: 100%;
    border-radius: 2em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-search'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E")!important;
    text-transform: capitalize;
    background-size: 18px!important;
    background-position-x: 12px!important;
    background-position-y: center!important;
    background-repeat: no-repeat!important;
    padding: 11px 35px;
    outline-offset: -2px;
    -webkit-appearance: none;
    appearance: none;
    background: #f4f4f4;
}

.des-search-label span {
    position: absolute;
    top: 29%;
    visibility: hidden;
    transform: translateY(-100%);
    color: #4e5358;
}

.slideUp {
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-clear-icon {
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 7px;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9;
    color: #000;
}

.search-clear-icon span {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.fixed-nav-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    opacity: 1;
    /* min-width: 44px; */
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;

    top: -4px;
    right: -5px;
    background: red!important;
    color: #fff!important;
    background: rgb(var(--header-text-color));
    color: rgb(var(--header-background));
}

.bubble-count {
    /* position: relative; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    
    font-size: 10px;
    height: 18px;
    min-width: 18px;
    line-height: 1;
    border-radius: 21px;
    letter-spacing: 0;
    transition: background .2s ease-in-out,color .2s ease-in-out;
}

.account-modal-header, .account-otp-header {
    text-align: center;

    h1 {
        font-weight: 600;
        font-size: 24px;
        line-height: 1;
        letter-spacing: -.01em;
        color: #000;
        margin-bottom: 20px;
    }
    p {
        font-weight: 500;
        font-size: 14px;
        line-height: 10px;
        text-align: center;
        color: #131313;
    }
}

.otp-login-body {
    margin: 25px 0 0;
    padding: 25px 83px 10px 84px;
    border-radius: 10px;
    background-color: #eff4f7;
}

.otp-login-input {
    margin-top: 16px;
    margin-bottom: 20px;
}

.otp-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px 10px;
}

#otp-mobile-no {
    padding-left: 45px;
}

.otp-login-input-container .otp-login-input input {
    border-radius: 10px;
    border: solid 1px #e4eaea;
    background-color: #fcfdff !important;
    height: 54px;
    width: 100%;
    transition: border .2s ease-in-out,box-shadow .2s ease-in-out;
    appearance: none;
}

.otp-prefix {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: 0;
    left: 14px;
    font-size: 14px;
    line-height: 1.86;
    font-weight: 500;
    letter-spacing: normal;
    color: #868c91;
}

.login-error {
    color: #ED1C24;
    font-weight: 500;
    margin-top: 9px;
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
}

.resend-otp-container {
    gap: 4px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 29px;
}

#resend-otp {
    color: #2F5B96;
    width: max-content;
    max-width: 100%;
    margin: 0;
}

.resend-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -.02em;
    color: #7a7a7a;
    margin: 0;
}

.otp-login-btn, .otp-login-confirm-btn, .otp-login-submit-btn {
    background: #d0d9de;
    color: #000;
    padding: 0 52px;
    width: max-content;
    max-width: 100%;
    margin: 0;
    margin-top: 8px;
    min-width: 195px;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.06em;
    border-radius: 10px !important;
    cursor: pointer;
}

.otp-login-confirm-btn, .otp-login-submit-btn {
    display: none;
}

.otp-timer-container {
    display: none;
    justify-content: center;
    margin-top: 29px;
}

.resend-text {
    display: none;
}

#timer {
    font-weight: 400;
    cursor: pointer;
}

.otp-privacy-policy {
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    color: #878787;
    margin: 20px 5px;
    letter-spacing: 0.15px;
}

.cart-canvas-header {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-600);
}

.please-signin {
    padding: 14px 7px;
    border-radius: 10px;
    border: solid 1px #e8ebed;
    background-color: #eff3f5;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 0 auto 20px;
}

.signin-text {
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: -.48px;
}

.signin-btn {
    width: 50%;
    height: 31px;
    padding: 7px 10px;
    border-radius: 6px;
    background-color: #1b2024;
    color: #fff;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.cart-content {
    overflow-x: hidden;
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 24px;
    height: calc(100vh - 325px);
}

.cart-content::-webkit-scrollbar {
    width: 6px; 
  }
  
  .cart-content::-webkit-scrollbar-track {
    background-color: #cfcfcf; 
  }
  
  .cart-content::-webkit-scrollbar-thumb {
    background-color: #766eac; 
    border-radius: 6px; 
  }
  
  .cart-content::-webkit-scrollbar-thumb:hover {
    background-color: #3c337c; 
  }
  
  body::-webkit-scrollbar {
    width: 10px; 
  }
  
  body::-webkit-scrollbar-track {
    background-color: #cfcfcf; 
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #766eac; 
    border-radius: 6px; 
  }
  
  body::-webkit-scrollbar-thumb:hover {
    background-color: #3c337c; 
  }


.cart-content-item {
    border-bottom: 1px solid #eff3f5;
    padding: 0 12px;
    display: flow-root;
}

.item-content-wrapper {
    position: relative;
    display: flex;
    margin-top: 8.5px;
    margin-bottom: 6px;
}

.item-img-wrapper {
    position: relative;
    display: block;
    width: 60px;
    flex: none;
    align-self: flex-start;
    border-radius: 5px;
    background: #f7f9fa;
    border-radius: 10px;
    margin-right: 10px;

}

.cart-item-info {
    position: relative;
    width: 100%;
}

.product-item-name {
    font-size: 14px;
    font-weight: 700;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.discounted-price {
    font-weight: 700;
    font-size: 18px;
    margin-right: 5px;
}

.original-price {
    text-decoration: line-through;
    font-size: 12px !important;
    color: #b2b9bf !important;
    font-weight: 500 !important;
    line-height: 1.3;
}

.cart-remove-icon {
    top: 0;
    right: 6px;
    cursor: pointer;
}

.product-color-att {
    display: flex;
    background: #f7f9fa;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 10px;
    align-items: center;
    height: fit-content;
    justify-self: left;
    font-size: 12px;
    color: var(--text-900);
    font-weight: 600;
    margin-top: 5px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #dadada;
    border-radius: 5px;
    vertical-align: middle;
}

.quantity-selector-button {
    background: #eff3f5;
    color: #1a2024;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: none;
    font-weight: 500;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    

}

.quantity-selector-input {
    font-weight: 500;
    padding: 0;
    width: 30px;
    text-align: center;
    background: 0 0;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
}

.cart-numbers-container {
    padding: 10px 12px;
}

.cart-numbers {
    width: 100%;
    padding-bottom: 4px;
}

.cart-numbers span {
    font-size: 16px;
    font-weight: 600;
}

.cart-numbers:nth-child(2) {
    border-bottom: 1px dashed var(--text-400);
    margin-bottom: 5px;
}

.cart-numbers:nth-child(3) {
    border-bottom: 1px dashed var(--text-400);
    margin-bottom: 5px;
}

.cart-numbers:nth-child(3) span {
    font-weight: 700;
    color: var(--secondary-700);
    padding-bottom: 4px;
}


.cart-footer-content {
    padding: 1rem 0.8rem;
}

.cart-footer-text {
    font-size: 12px;
    color: var(--text-700);
    font-weight: 500;
}

.checkout-btn-group {
    width: 60%;
    margin: 0;
}

.checkout-btn > a {
    background: #1a2024;
    width: 270px;
    max-width: 100%;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
    border-radius: 4px;
    padding: 0;
    text-align: center;
    height: 50px;
}

.checkout-btn > a>span {
    color: var(--background);
    font-weight: 700;
}

.cart-footer-content {
    box-shadow: 0 -10px 10px -10px #878787b8;
}

.cart-footer {
    box-shadow: 0 -10px 10px -10px #878787b8;
    position: absolute;
    bottom: 0%;
    right: 0;
    background-color: var(--background);
}

.hero-slide {
    width: 100%;
    
}

.splide-hero-img {
    width: 100%;
    aspect-ratio: 16/7.5;
    object-fit: fill;
}

.cat-best-header {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 0 0.8rem;
}

.bestseller-container {
    overflow-x: auto;
    width: 100%;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none; 
    padding: 15px 0.5rem;
    margin-bottom: 1rem;

    
    &::-webkit-scrollbar {
        display: none;
    }

    &:active {
        cursor: grabbing;
    }

    /* Optional: Add a cursor style for the grab handle */
    cursor: grab;
} 

.best-cat-card {
    width: 320px;
    height: auto;
}

.best-cat-img-wrap {
    width: 320px;
    aspect-ratio: 1;
    border-radius: 1rem;
    max-width: 100%;
    height: 320px;
}

.best-cat-img {
    object-fit: cover;
    border-radius: 1rem;
    width: 100%;
    height: 320px;
}

.best-cat-name {
    font-weight: 700;

}

.view-all-btn {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-600);
}

.section-heading > p {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 0 0.8rem;
}

.products-card {
    border-radius: 10px;
    background-color: var(--text-100);
    position: relative;
    
}

.products-container {
    overflow-x: auto;
    width: 100%;
    overflow-y: hidden;
   -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 15px 0.5rem;
    margin-bottom: 1rem;
    cursor: grab;
}

.product-custom-label {
    justify-content: center!important;
    width: 70%!important;
    border: 1px solid white;
    bottom: -12px;
    top: unset;
    left: 15%;
    z-index: 1;
    border-radius: 10px!important;
    padding: 4px 10px!important;
    font-size: 12px;
    font-weight: 700;
    background: #fcc50b;
    display: flex;
    color: #000;
    letter-spacing: -0.48px;
    position: absolute;
} 

.offer-label {
    display: flex;
    align-items: center;
    background: black;
    color: white;
    letter-spacing: -0.4px;
    bottom: unset;
    top: 12px;
    max-width: max-content!important;
    left: 0;
    transform: translate(0);
    border-radius: 0 5px 5px 0!important;
    padding: 4px 8px 5px 3px!important;
    font-size: 10px;
    z-index: 1;
    position: absolute;

}



.product-img-wrapper {
    position: relative;
    display: block;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
}

.product-img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: fill;


}

.product-card-info {
    background-color: #FAFAFA !important;
    padding: 10px 12px;
    border: 1px solid #ECF0F4;
    border-radius: 0 0 10px 10px;
    line-height: normal;
    max-width: unset;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    position: relative;
    width: 100%;
    color: #000;
    text-align: left;
}

.product-item-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    align-items: center;
    min-height: 1.8rem;
    font-size: 14px;
}

.product-item-title {
    font-size: 14px;
    letter-spacing: -0.56px;
    text-overflow: ellipsis;
    line-height: normal;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 700;
}

.variants-list {
    display: flex;
    align-items: center;
    max-height: 20px;
}

.switch-circle {
    margin-left: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #D0D9DE;
}

.discount-percent {
    font-size: 13px;
    font-weight: 700;
}

.review-text, .review-no {
    font-size: 13px;
    font-weight: 600;
}

.add-to-cart-btn {
    background: #1A2024;
    border: 1px solid #1A2024;
    padding: 12px;
    border-radius: 10px!important;
    color: #fff;
    font-size: 14px!important;
    font-weight: 500!important;
}

.category-section {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-box;
    
    overflow: auto;
    flex-wrap: nowrap;
    padding-left: 10px;
    padding-top: 10px;
    min-width: 112px;
}

.category-section-slider {
    margin: 0px auto;
    width: max-content;
    overflow-x: auto;
    display: flex;
    gap: 25px;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

.category-section-slider .single-column {
    width: 95px;
    display: grid;
    max-width: 95px;
    min-width: 95px;
}

.single-column .cat-img-wrapper {
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.cat-img-wrapper img {
    margin: 0px auto;
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.single-column .cat-title {
    text-align: center;
    margin-top: 20px;
}

.single-column .cat-title span {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #1a2024;
    display: block;
}

#footer {
    background-color: #fff;
    color: #000;
}

.footer {
    background: #eff4f7;
    max-width: 98%;
    padding: 0 20px;
    margin: 0 auto;
}

.footer-item-list {
    display: grid;
    grid-gap: 40px;
    gap: 4rem;
    padding-top: 2rem;
    grid-template-columns: 1fr;
}

.footer-item-list {
    gap: 3vw;
}

.footer-item {
    max-width: 525px;
    word-break: break-word;
}

.footer-logo {
    max-width: 200px;
}

.signup-form >span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    opacity: 1;
    color: #293036;
    line-height: normal;
}

.signup-form .input-block {
    display: flex;
    height: 50px;
    padding: 0px;
    border-radius: 10px;
    background-color: white;
    border: solid 1px #e1e6eb;
}

.signup-form .input-block #subscribe-email {
    height: 50px;
    background: transparent;
    border: 0;
    width: 88%;
    display: inline-block;
    float: left;
    font-size: 13px;
    padding: 0 12px;
    color: #000;
    text-transform: none;
    position: relative;
}

.signup-form .input-block #subscribe-btn {
    border-radius: 0;
    color: #000;
    line-height: normal;
    height: 50px;
    width: max-content;
    letter-spacing: 0;
    font-weight: bold;
    display: inline-block;
    float: left;
    padding: 0 20px 0 0;
    text-align: right;
    background: transparent;
}

.footer-item-heading {
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
}

#footer-item-1 .linklist-ul .linklist-item {
    width: 50%;
    float: left;
    padding-top: 10px;
}

.linklist-ul .linklist-item {
    padding-top: 10px;
}

.linklist-item a {
    word-break: break-word;
    opacity: 1;
    font-size: 13px;
}

.footer-aside {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    row-gap: 24px;
    /*margin-top: 16px;*/
    flex-direction: column;
}



.social-media-links  p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: center;
    color: #293036;
}

.social-media-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    color: currentColor;
    z-index: 1;
    transition: color .3s cubic-bezier(.215, .61, .355, 1);
}

.footer-aside-navs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px!important;
}

.footer-aside-navs span {
    margin: 0 12px;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    position: relative;
}

.footer-aside-navs span:nth-child(2)::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    background: black;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-400);
    text-align: center;
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: #a7afb7;
}

.tab-nav-list {
    display: flex;
    grid-auto-columns: max-content;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
}

.tab-nav-list .tab-btn {
    border-radius: 17px!important;
    background-color: #ecf0f4;
    font-size: 12px!important;
    font-weight: 700!important;
    line-height: 0.88;
    letter-spacing: -0.64px;
    padding: 8px 16px;
    color: #1a2024;
    
}

.tab-btn.tab-btn-item {
    margin: 0 15px;
    padding-bottom: 12px;
    background-color: #f4f4f4;
    opacity: .7;
    transition: opacity .25s ease-in-out;
}

.blog-section .article-list {
    flex-wrap: nowrap;
    grid-gap: 10px;
}


.article-list {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 30px;
    grid-gap: 30px;
    padding: 0;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 15px 0.5rem;
    margin-bottom: 1rem;
   }

.article-list .article {
    padding: 0!important;
    margin: 0!important;
    width: 25%;
    border: 1px solid #ecf0f4;
    border-radius: 10px;
    background-color: #fafafa;
}

.article .article-inner {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
}

.article-image img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    aspect-ratio: 1/1;
}

.article-details {
    padding: 12px;
    width: 100%;
}

.article-published-at {
    color: #868c91;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: .5rem;
    font-weight: 500;
}

.article-details h3 {
    font-size: 14px;
    margin: 0;
    color: #191e23;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: .5rem!important;
    
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.article-details .user-content {
    font-size: 12px;
    line-height: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem!important;
    color: #4e5358;
}

span.read-more {
    display: block;
    text-align: center;
    border: 1px solid #d0d9de;
    border-radius: 20px;
    padding: 0 6px;
    color: #1a2024;
    font-weight: 700;
    font-size: 12px;
    background: white;
    height: 38px;
    line-height: 38px;
}

.mobile-footer-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 60px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.09);
    background-color: #fff;
    padding-bottom: 4px;
    text-align: center;
    z-index: 9;
}

.mobile-nav-row {
    padding: 10px;
    margin: 0;
}

.fixed-nav-item {
    width: 16.6%;
    flex: 0 0 16.6%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.fixed-nav-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    opacity: 1;
    /* min-width: 44px; */
}

.fixed-nav-link span {
    font-size: 10px !important;
    letter-spacing: -0.4px;
    color: #1a2024;
    margin-top: 4px !important;
    font-weight: 500;
}

.fixed-nav-link .active-url {
    font-weight: 700 !important;
}

.footer-additional-block {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.footer-collection-block {
    margin-bottom: 50px;
    width: 100%;
}

p.footer-collection-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2024;
    margin-bottom: 18px;
}

.features-wrapper {
    margin-bottom: 18px;
}

p.footer-collection-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #1a2024;
    margin-bottom: 5px;
}

ul.footer-features-filter-list {
    padding: 0;
}

li.footer-features-filter-item, li.footer-price-filter-item {
    list-style: none;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    color: #868c91;
}

.insta-slide {
    max-width: calc(20% - 10px);
    overflow: hidden;
    max-height: 450px;
    border-radius: 1rem;
    width: 100%;
}
.insta-slide >a >video {
    object-fit: cover;
    max-height: 450px;
    width: 100%;
}

.bold-heading {
    font-weight: 700;
}

.ser-text {
    font-size: 16px;
}

.ser-img-wrap {
    width: 100px;
    overflow: hidden;

}

.ser-img {
    width: 100px;
    object-fit: contain;
}

.accordion-item {
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.close-button {
    top: 10px;
    right: 10px;
}

.main-modal-content {
    display: grid;
    padding: 20px;
    border-radius: 10px;
    column-gap: 30px;
    grid-auto-columns: 220px auto;
    grid-template-areas: 'img title'
      'img price'
      'img feature'
      'button variant';
      overflow-x: hidden;
      overflow-y: auto;
      flex-grow: 1;
      padding-bottom: 24px;
    
        background-color: #fff;
        color: #000;
    }

.quick-buy-product {
    grid-area: img;
    justify-content: center;
    margin-top: 1rem;
    overflow: hidden;
}

.quick-buy-product > img {
    aspect-ratio: 1;
    object-fit: fill;
}

.product-meta-title {
    grid-area: title;
    width: 100%!important;
    text-align: start;
    font-size: 24px;
    color: #1a2024;
    margin-top: 0;
    border-bottom: 1px solid #ecf0f2;
    padding-bottom: 8px;
    font-weight: 700;
}

.quick-buy-product-info {
    grid-area: price;
    padding-left: 12px;
    background-color: transparent;
    color: #000;
    padding-right: 12px;
    line-height: normal;
    width: 80%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
}

.custom-percent-off {
    font-size: 12px!important;
    font-weight: bold;
    color: #399a7c;
    margin: 0;
}

.inc-tax {
    font-size: 10px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.4px;
    color: #4a5157;
}

.product-feature {
    grid-area: feature;
}

.product-feature {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
    background-color: #f7f9fa;
    line-height: 2;
}

.product-feature span {
    position: relative;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.48px;
    color: #1a2024;
    
}

.product-feature span::before {
    content: "";
    width: 3px;
    height: 3px;
    background: #1a2024;
    position: absolute;
    left: 0;
    top: 10px;
}

.product-variant-div {
    grid-area: variant;
}

.color-option-selector {
    display: flex;
    gap: 10px;
    padding-block: 8px;
    flex-direction: column;
    margin-top: 4px;
  }

  .color-option-text {
    font-size: 14px;
    color: #1a2024;
    font-weight: bold;
    
  }

  .color-swatch-list {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    row-gap: 10px;
    flex-wrap: wrap;
  }

  .color-swatch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    flex-direction: column;
  }

  .color-swatch label {
    position: relative;
    display: block;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    width: 32px;
    height: 32px;
  }

  .color-swatch >input:checked~label {
    border: 2px solid white;
    box-shadow: 0px 0px 1px 1px #f4c730!important;
  }

  .color-swatch >input:checked~label::after {
    content: "";
    position: absolute;
    left: 50%;
    top: unset;
    bottom: -12px;
    border-radius: unset;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background-color: #f4c730;
    opacity: 1;
  }
  .color-swatch.isdisabled {
    opacity: 0.5;
    order: 2;
  }

  .product-modal-buy {
    grid-area: button;
    margin-top: 1rem;
  }

  .product-modal-buy #AddToCart {
    background-image: none;
    width: 100%;
    background-color: #1a2024;
    height: 48px;
    font-size: 14px!important;
    border-radius: 10px!important;
    font-weight: 700;
    line-height: inset;
    color: #fff;
  }

  .product-modal-link {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #2f5b96;
    margin: 20px 0 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center !important;
  }


@media (max-width: 768px) {
    .category-section {
        flex-wrap: wrap;
    }

    .category-section-slider {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-container {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline:10px;
}

    .category-section-slider .single-column {
       
        max-width: 72px;
        min-width: 72px;
    }

    .cat-img-wrapper img {
       
        width: 70px;
        border-radius: 8px;
    }

    .single-column .cat-title span {
        font-size: 10px;
        min-height: 22px;
    }

    .splide-hero-img {
        aspect-ratio: 15/8;
    }
    .section-heading > p {
        margin-bottom: 5px;
    }

    .cart-count {
        right: -4px;
        top: -10px;
    }

    .otp-login-body {
        margin: 25px 0 0;
        padding: 25px 25px 10px 25px;
        border-radius: 10px;
        background-color: #eff4f7;
    }

    .footer-aside {
        row-gap: 5px;
    }

    .insta-slide {
        max-width: 100%;
        overflow: hidden;
        max-height: 450px;
        border-radius: 1rem;
        width: 100%;
    }

    .ser-text {
        font-size: 10px;
    }

    .ser-img-wrap {
        width: 60px;
        overflow: hidden;
    
    }

    .ser-img {
        width: 50px;
        object-fit: contain;
    }

    .category-canvas-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        place-items: center;

    }

    .category-canvas-slider .single-column {
        max-width: 72px;
        min-width: 72px;
    }

    .main-modal-content {
        display: grid;
        padding: 20px;
        border-radius: 10px;
        column-gap: auto;
        grid-auto-columns: auto;
        grid-template-areas: 'img'
        'title'
        'price'
        'feature'
        'variant'
        'button';
          overflow-x: hidden;
          overflow-y: auto;
          flex-grow: 1;
          padding-bottom: 24px;
        
            background-color: #fff;
            color: #000;
        }

        .quick-buy-product > img {
            aspect-ratio: 1;
            object-fit: fill;
            max-width: 200px;
        }

        .quick-buy-product {
            margin-inline: auto;
        }

        .product-meta-title { 
            text-align: center;
        }

        
}


@media screen and (min-width: 768px) {
    #desktop-menu-1 {
        width: 94%;
        margin: auto;
        left: 0;
        right: 0;
        display: flex;
        flex-wrap: wrap;
        overflow: auto;
    }
    .desktop-hidden {
        display: none !important;
    }

    .des-search-label span {
        left: 45px;
        top: 21%!important;
    }
    
    #desktop-menu-1 .nav-dropdown-item {
        width: 18vw;
        min-height: 4rem;
        margin-bottom: 6px;
    }

    .article-details .user-content {
        font-size: 14px;
        margin-top: 5px;
        line-height: 18px;
    }

    span.read-more {
        height: 46px;
        line-height: 46px;
    }

    .product-feature span {
        width: 50%;
    }

    .header-icon-list {
    gap: 16px;
    }

    .footer-item-list {
        background: #e7f0f5;
        margin-left: -50px;
        margin-right: -50px;
        margin-top: -50px;
        padding: 50px;
        padding-top: 50px!important;
    }

    .footer .footer-item {
        display: block !important;
        padding-right: 2rem;
    }

    .article-details h3 {
        font-size: 18px;
    }


    #desktop-menu-1 a.nav-dropdown-link.link-faded {
        align-items: center;
        font-size: 12px;
        gap: 8px;
        font-weight: 500;
        letter-spacing: -0.48px;
    }

    .des-search-label { 
        border-radius: 2rem;
        margin: 0;
    }

    .tab-nav-list .tab-btn {
        border-radius: 17px!important;
        background-color: #ecf0f4;
        font-size: 16px!important;
        font-weight: 700!important;
        line-height: 0.88;
        letter-spacing: -0.64px;
        padding: 9px 21px;
        color: #1a2024;
        
    }

    .item-img-wrapper {
        width: 92px;
    }

    .footer-additional-block {
        flex-direction: column;
        max-height: 1260px;
    }

    .footer-collection-block {
        width: 25%;
    }
    }

    .link-faded {
        transition: opacity .25s ease-in-out;
    }


@media screen and (min-width: 1200px) {
.header-logo {
   flex: 0.3 1 0;
   margin-right: 3rem;
}

.header-nav {
    flex: 1 1 auto;
    justify-content: center;
    max-width: max-content;
    margin-inline: 48px;
    margin-left: 0;
}

.footer  {
    padding: 54px 54px 0!important;
    
}

.footer-item-list {
    grid-auto-flow: column;
    grid-template-columns: 1.8fr 1.5fr 1fr 1fr;
}

.footer-aside {
    row-gap: 0px!important;
    background: #e7f0f5;
    margin-left: -54px;
    margin-right: -54px;
    padding-bottom: 15px;
}

.article-published-at {
    font-size: 14px;
    margin-top: 5px;
    line-height: 18px;

}
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 1rem 0.6rem;
    }

    .header-logo-img {
        max-width: 70px;
    }

    .mobile-hidden {
        display: none;
    }

    .social-media-links {
        width: 100%;
        margin: 0px;
        padding: 0px;
        justify-content: center;
        padding-bottom: 10px;
        margin-bottom: 0!important;
    }

    .article-list .article { 
        width: 100%;
        min-width: 300px;
        padding: 0 0 10px 0!important;
    }

    .product-img-wrapper {
        width: 100%;
        aspect-ratio: 1;
       
    }

    .products-card {
        width: 100%;
    }

    .product-img {
        height: 100%;
    }

    .add-to-cart-btn {
        font-size: 12px !important;
    }

    .mobile-search-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        padding: 0;
        height: 100%;
        display: none;
        transform: scale(0.8); /* Initial scale, adjust as needed */
        transition: transform 0.3s ease-in-out;
    }

    .mobile-custom-search-input {
        display: flex;
        position: relative;
        width: 100%;
        border-bottom: 1px solid #ededed;
       
    }

    .mob-search-label {
        width: 96% !important;
        margin: 8px 10px !important;
    }

    .mobile-search-container.active {
        display: block;
        transform: scale(1);
    }
    
}


