
    :root {
    --primary-orange: #FF6A00;
    --white: #ffffff;
    --dark-orange: #e55a2b;
    --pink: Pink;
    --product-pink: #e91e63;
    --background-color: #FF6A00;
    --dark: #1A1817;
    --black: #000000;
    --grey: #656565;
    --red: #ED1818;
    --border: #C7C7C74D;
    --bg-grey: #C7C7C7;

    --poppins: "Poppins", sans-serif;
    --clash-light: ClashDisplay-Extralight;
    --clash-Regular: ClashDisplay-Regular;
    --clash-Medium: ClashDisplay-Medium;
    --clash-Semibold: ClashDisplay-Semibold;
    --clash-Bold: ClashDisplay-Bold;
}

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        animation-delay: 0.9s;
        font-family: var(--poppins);
    }

    .baki-header {
        background: var(--background-color);
        position: relative;
    }

    .baki-logo img{
        width: 100px;
    }

    .text-primary-orange {
        color: var(--primary-orange);
        }
    .delivery{
        background: var(--dark);
    }

    button.search-btn {
        position: absolute;
        right: 6px;
        top: 6px;
        background: var(--background-color);
        color: #ffffff;
        padding: 2px 8px 0px;
        border-radius: 50px;
        width: 36px;
        height: 36px;
    }

    .voice-btn{
        width: 32px;
        height: 32px;
        border-radius: 50px;
        background-image: url(assets/images/circle-microphone2.svg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
       
    }

    .switch {
      position: relative;
      width: 40px;
      height: 24px;
      background-color: #ffffff;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .slider {
      position: absolute;
      top: 4px;
      left: 3px;
      width: 16px;
      height: 16px;
      background-color: var(--background-color);
      border-radius: 50%;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
      /* padding-right: 1px; */
    }

    .switch.sun-mode {
      background-color: var(--dark);
    }

    .switch.sun-mode .slider {
      left: 21px;
      background-color: var(--dark);
      color: rgb(255, 255, 255);
    }

    .user-profile .user-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50px;
        background: var(--dark);
        color: var(--white);
    }

    .wish-list{
        display: inline-block;
        width: 32px;
        height: 32px;
        border-radius: 50px;
        background: var(--dark);
        color: var(--white);
        padding: 2px 4px 0px;
    }
    .wishlist-btn {
      background-color: var(--dark);
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .wishlist-btn i {
      font-size: 18px;
      color: white;
      transition: color 0.3s ease;
    }

    .wishlist-btn.active i {
      color: var(--background-color);
    }

    .header-btn{
        background-color: var(--dark);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        color: var(--white);
        font-size: 17px;
    }

    .badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: var(--white);
        color: var(--dark);
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }


    /* Navigation Links */

    .beki-nav-section{
        background: #F7F8FA;
    }

    .baki-express-menu{
        display: flex;
        align-items: center;
    }

    .baki-express-main-menu{
        display: flex;
        align-items: center;
        gap: 16px;
        overflow-x: auto;
        position: relative;
        transition: all 0.5s ease-in-out;
    }

    .nav-menu-link {
        color: var(--dark-gray);
        text-decoration: none;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s;
        white-space: nowrap;
    }

    .nav-menu-link:hover {
        color: var(--primary-orange);
    }

    .menu-devider{
        width: 1.5px;
        height: 12px;
        background: var(--primary-orange);
    }

    .nav-dropdown {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--dark);
        background: none;
        border: none;
        padding: 12px 16px 12px 0px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.2s;
    }

    .nav-dropdown:hover {
        color: var(--primary-orange);
    }

    /* Mobile Menu */
    .mobile-menu {
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    /* Custom dropdown styles */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 280px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1000;
        border-radius: 8px;
        top: 100%;
        left: 0;
    }

    .baki-sub-menu{
        padding: 8px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .baki-sub-menu-item{
        font-size: 14px;
        color: var(--dark);
        display: block;
        padding: 8px;
        transition: 0.3s ease-in;
        border-radius: 4px;
    }

    .baki-sub-menu-item:hover{
        background: var(--primary-orange);
        color: var(--white);
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .search-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
    }

    /* Mobile menu styles */
    .mobile-menu {
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-categories{
        color: var(--dark);
        padding: 12px 16px 12px 0px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        display: none;
    }

    .baki-express-main-menu.menu-active {
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .close-mobile-menu-categories{
        width: 30px;
        height: 30px;
        background: var(--primary-orange);
        border-radius: 50px;
        padding: 8px;
        text-align: center;
        color: var(--white);
        font-size: 16px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: absolute;
        top: 10px;
        right: 10px;
        display: none;
    }

/****************** main content  css ********************** */


    .baki-promo-section {
        font-family: ClashDisplay-Semibold;
        min-height: 100vh;
        padding-top: 24px;
    }

    .baki-grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-auto-rows: minmax(200px, auto);
        gap: 16px;
        margin: 0 auto;
    }
    .promo-box-one{
        position: relative;
        overflow: hidden;
        grid-column: span 1;
    }

    .promo-box-two {
        position: relative;
        overflow: hidden;
        grid-column: span 2;
    }

    .promo-box-three {
        position: relative;
        overflow: hidden;
        grid-column: span 1;
    }

    .baki-promo-section .promo-card-hover{
        border-radius: 8px;
        height: 195px;
        margin-bottom: 16px;
    }
    .baki-promo-section .promo-card-hover:last-child{
        margin: 0;
    }

    .baki-promo-section .medicine-card{
        background-image: url(assets/images/card-1.jpg);
        background-position: center;
        background-size: cover;
        padding: 24px;
        background-repeat: no-repeat;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }

    .baki-promo-section .medicine-card:hover{
        background-image: url(assets/images/hover-1.png);
        background-position: center;
        background-size: cover;
        padding: 24px;
        background-repeat: no-repeat;
    }

    .furniture-dream-card {
        background-image: url(assets/images/card-2.jpg);
        background-position: center;
        background-size: cover;
        padding: 24px;
        background-repeat: no-repeat;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }
    .furniture-dream-card:hover{
        background-image: url(assets/images/hover-2.png);

    }

    .fitness-gear-card {
        background-image: url(assets/images/card-3.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 24px;
        height: 435px !important;
        align-content: center;
        padding-bottom: 50px;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }

    .fitness-gear-card:hover{
        background-image: url(assets/images/hover-3.png);
    }


    .delivery-hero-card{
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 1.5rem;
        margin: 0 auto;
        padding: 24px 24px 46px;
        background: var(--background-color);
        border-radius: 8px;
        height: 380px;
    }

    .delivery-text-container{
        position: relative;
        overflow: hidden;
    }
    .promo-image-container{
        position: relative;
        overflow: hidden;
    }
    .delivery-text-container .promo-subtitle{
        font-size: 14px;
        font-family: var(--poppins);
        font-weight: 500;
        color: #FFFAF6;
        line-height: 1.4em;
    }
    .delivery-text-container .promo-subtitle2{
        font-size: 16px;
        font-family: var(--poppins);
        font-weight: 400;
        color: #FFFAF6;
        line-height: 1.5em;
        margin-bottom: 32px;
    }

    .free-delivery-card {
        display: grid;
        grid-template-columns: 2fr 1fr;
        margin: 0 auto;
        border-radius: 8px;
        background: #050C2E;
        margin-top: 16px;
        height: 224px;
    }

    .free-delivery-card .delivery-text-container{
        padding: 20px 0px 20px 24px;
    }
    
    .delivery-text-container .promo-d-title{
        font-family: var(--clash-Medium);
        font-size: 26px;
        font-weight: 500;
        line-height: 1.2em;
        color: #ffffff;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .delivery-text-container .promo-d-subtitle{
        font-size: 14px;
        font-family: var(--poppins);
        font-weight: 400;
        color: #FFFAF6;
        line-height: 1.5em;
        margin-bottom: 24px;
    }

    .free-delivery-card .promo-image-container{
        background-image: url(assets/images/card9.jpg);
        background-position: center;
        background-size: cover;
        padding: 24px;
        background-repeat: no-repeat;
        border-radius: 0 8px 8px 0;
    }

    .promo-inner-card{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .kitchen-decor-card {
        background-image: url(assets/images/card-8.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 224px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }
    .kitchen-decor-card:hover{
        background-image: url(assets/images/hover-7.png);
    }
    .inner-overly{
        background: #ffffff3b;
        border-radius: 8px;
        padding: 24px;
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
        align-items: center;
        transition: all 0.4s ease-in-out;
    }
    .gadgets-hurry-card {
        background-image: url(assets/images/card-11.png);
        background-position: center right;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        padding: 24px;
        height: 224px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }
    .gadgets-hurry-card:hover{
        background-image: url(assets/images/hover-8.png);
    }

    .hover-card-effect .promo-title-small{
        text-align: center;
    }

    .promo-card-hover:hover .front-card{
        display: none;
    }
    .front-card{
        transition: all 0.4s ease-in-out;
    }
    
    .promo-card-hover:hover {
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
    }

    .promo-card-hover:hover .hover-card-effect{
        display: block;      
        opacity: 1;
        transition: all 0.s ease-in-out;  
    }

    .hover-card-effect {
        text-align: center;
        background: #ffffff7c;
        backdrop-filter: blur(15px);
        padding: 12px;
        border-radius: 8px;
        margin: 0px 30px;
        display: none;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

    .hover-card-effect h3{
        font-size: 20px;
        color: var(--dark);
    }

    .hover-card-effect .baki-btn-dark{
        background: var(--background-color);
        color: var(--white);
        border: 0px;
        padding: 8px 16px;
        border-radius: 25px;;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
    }

    .gadgets-hurry-card .promo-gd-title{
        font-size: 28px;
        font-family: var(--poppins);
        font-weight: 500;
        color: var(--black);
        line-height: 1.5em;
        margin-bottom: 10px;
    }
    .promo-gd-subtitle{
        font-size: 14px;
        font-family: var(--poppins);
        font-weight: 400;
        color: var(--black);
        line-height: 1.5em;
        margin-bottom: 24px;
    }

    .outdoor-finds-card{
        background-image: url(assets/images/card-10.png);
        background-position: center right;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 254px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }

    .outdoor-finds-card:hover{
        background-image: url(assets/images/hover-4.png);
    }

    .baby-gear-card {
        background-image: url(assets/images/taddy.png);
        background-position: center right;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        margin: 16px 0;
        height: 352px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }
    .baby-gear-card:hover{
        background-image: url(assets/images/hover-5.png);
    }

    .summer-trends-card {
        background-image: url(assets/images/12.png);
        background-position: center right;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 221px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }
    .summer-trends-card:hover{
        background-image: url(assets/images/hover-6.png);
    }
    .right-mid .inner-overly{
        align-content: center;
    }

    .outdoor-promo-title{
        font-size: 24px;
        font-family: var(--poppins);
        font-weight: 500;
        color: var(--black);
        line-height: 1.3em;
        margin-bottom: 24px;
    }

    .promo-title-large {
        font-size: 38px;
        font-family: var(--clash-Medium);
        font-weight: 500;
        line-height: 1.2em;
        color: var(--white);
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .promo-title-medium {
        font-family: var(--clash-Medium);
        font-size: 28px;
        font-weight: 500;
        line-height: 1.2em;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }

    .promo-title-small {
        font-family: var(--clash-Medium);
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2em;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }

    .baki-btn-primary {
        background: white;
        color: #333;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .baki-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .baki-btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
        padding: 12px 20px;
        border-radius: 25px;
        font-family: var(--poppins);
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .baki-btn-secondary:hover {
        background: white;
        color: #333;
    }

    .baki-btn-dark {
        background: transparent;
        color: #1A1817;
        border: 2px solid #1A1817;
        padding: 12px 20px;
        border-radius: 25px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .baki-btn-dark:hover {
        border-color: var(--primary-orange);
    }
    .promo-loading {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* popular products section */

    .popular-finds-main-container {
        padding: 80px 0px;
        margin: 0 auto;
    }

    .popular-finds-header-section {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        grid-column: span 1;
    }
    .popular-finds-main-title {
        font-size: 38px;
        font-family: var(--clash-Medium);
        color: var(--dark);
        letter-spacing: 1.5px;
        margin: 0;
    }

    .popular-view-all-link {
        color: var(--dark);
        font-size: 1rem;
        font-family: var(--poppins);
        font-weight: 500;
        padding: 0px;
        transition: all 0.3s ease;
        border-bottom: 2px solid var(--dark);
    }

    .popular-view-all-link:hover {
        color: var(--primary-orange);

    }

    .popular-finds-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .popular-finds-products-grid {
        display: grid;
        grid-template-columns: 100%;
        gap: 16px;
    }

    .popular-products-cards{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }

    .popular-finds-product-card {
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        border: 2px solid #C7C7C74D;
    }

    .popular-card-bottom {
        padding: 14px;
        border-top: 1px solid #C7C7C74D;
        height: 140px;
        transition: all 0.4s ease-in-out;
    }

    .popular-finds-product-card:hover .popular-card-bottom{
        background: var(--background-color);
        border-radius: 0 0 8px 8px;
    }

    .popular-finds-product-card:hover .popular-finds-add-to-cart-btn{
        background: var(--dark);
    }

    .popular-finds-product-card:hover .popular-finds-product-name{
        color: var(--white);
    }
    .popular-finds-product-card:hover .popular-finds-product-price{
        color: var(--white);
    }

    .popular-finds-wishlist-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        background: var(--white);
        border: none;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
        box-shadow: 0px 2px 8px #1918173D;
        z-index: 11;
    }

    .popular-finds-wishlist-icon {
        color: #ccc;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    .popular-card-top {
        padding: 14px;
    }

    .popular-finds-wishlist-btn.active .popular-finds-wishlist-icon {
        color: #e91e63;
    }

    .popular-finds-product-image {
        width: 100%;
        height: 150px;
        object-fit: contain;
        margin-bottom: 1rem;
        border-radius: 8px;
        z-index: -1 !important;
    }

    .popular-finds-add-to-cart-btn {
        background-color: var(--background-color);
        color: var(--white);
        border: none;
        padding: 8px 12px;
        border-radius: 50px;
        font-family: var(--poppins);
        font-weight: 500;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0px 0px 10px;
    }

    .popular-finds-add-to-cart-btn:hover {
        background-color: var(--dark-orange);
        transform: translateY(-1px);
    }

    .popular-finds-product-name {
        font-family: var(--poppins);
        font-size: 12px;
        font-weight: 400;
        color: var(--dark);
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .popular-finds-product-price {
        font-size: 14px;
        font-weight: 500;
        color: var(--primary-orange);
    }

    .popular-finds-promo-banner {
        background: #E21B70;
        border-radius: 8px;
        padding: 58px 24px;
        color: white;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        min-height: 300px;
    }

    .popular-finds-promo-content {
        position: relative;
        z-index: 2;
        max-width: 60%;
    }

    .popular-finds-promo-title {
        font-family: var(--clash-Medium);
        font-size: 24px;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }


    .popular-finds-promo-btn {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        padding: 12px 44px;
        border-radius: 25px;
        font-weight: 500;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .popular-finds-promo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255,255,255,0.3);
    }

    .popular-finds-discount-badge {
        position: absolute;
        bottom: 30%;
        left: 35%;
        background-image: url(assets/images/Star.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        color: var(--baki-orange);
        padding: 1rem;
        border-radius: 50%;
        width: 148px;
        height: 148px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    .popular-finds-discount-percentage, .popular-finds-discount-text  {
        font-size: 38px;
        font-family: var(--clash-Medium);
        font-weight: 500;
        line-height: 1.2em;
        letter-spacing: 1px;
        color: var(--primary-orange);
    }

    .popular-finds-promo-image {
        position: absolute;
        right: -10px;
        top: 42%;
        transform: translateY(-50%);
        object-fit: contain;
        z-index: 1;
    }

    .popular-finds-decorative-shape {
        position: absolute;
        width: 150px;
        height: 150px;
        background-image: url(assets/images/corner.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
        bottom: -50px;
        left: -50px;
        z-index: 0;
    }

    .popular-finds-promo-banner::after{
        content: '';
        display: block;
        clear: both;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 33%;
        height: 98%;
        background-image: url(assets/images/Rectangle992.png);
        background-size: contain;
        background-position: bottom right;
        background-repeat: no-repeat;
        z-index: 0;
    }

    /* popular products section */

    /* Categories slider section  */

    .marquee-container {
        width: 100%;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 30px 0 20px;
        position: relative;
    }

    .marquee-container2{
        width: 100%;
        overflow: hidden;
        padding-bottom: 50px;
    }

    .marquee-track {
        display: flex;
        width: fit-content;
        animation: scroll 50s linear infinite;
    }
    .marquee-track2 {
        display: flex;
        width: fit-content;
        animation: scroll2 40s linear infinite;
    }

    .marquee-content {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }

    .category-item {
        flex-shrink: 0;
        width: 166px;
        height: 98px;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .category-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .category-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .category-item:hover::after {
        opacity: 1;
    }

    /* get all products section  */

    .get-it-all-main-section {
        padding: 1rem 0px;
    }

    .get-it-all-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .get-it-all-section-title {
        font-family: var(--clash-Medium);
        font-size: 38px;
        font-weight: 500;
        color: var(--dark);
        letter-spacing: 2px;
    }


    .get-it-all-product-card {
        border-radius: 8px;
        padding: 0px;
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid #C7C7C74D;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.4s ease;
    }

    .get-it-all-products-slide .get-it-all-product-card:hover .product-card-text{
        background: var(--background-color);
    }

    .slick-track {
        display: flex !important;
        gap: 16px;
        margin: auto;
    }

    .slick-list{
        padding: 8px 0px !important;
        margin: auto;
    }

    .get-it-all-product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0px 18px rgba(0, 0, 0, 0.066);
    }

    .get-it-all-wishlist-button {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        background: var(--white);
        border: none;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0px 2px 8px #1918173D;
        z-index: 11;
    }

    .get-it-all-share-button{
        position: absolute;
        top: 3.5rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        background: var(--white);
        border: none;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0px 2px 8px #1918173D;
        z-index: 11;
        transition: all 0.3s ease-in-out;
        opacity: 0;
    }

    .get-it-all-view-button{
        position: absolute;
        top: 6rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        background: var(--white);
        border: none;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0px 2px 8px #1918173D;
        z-index: 11;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .get-it-all-product-card:hover .get-it-all-share-button{
        opacity: 1;
    }
    .get-it-all-product-card:hover .get-it-all-view-button{
        opacity: 1;
    }

    .get-it-all-heart-icon {
        color: #ccc;
        font-size: 1rem;
        transition: color 0.3s ease-in-out;
    }
    .get-it-all-wishlist-button.active .get-it-all-heart-icon {
        color: #e91e63;
    }

    .get-it-all-product-title {
        font-size: 12px;
        font-weight: 400;
        color: var(--dark);
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.2;
        transition: all 0.4s ease-in-out;
    }

    .get-it-all-product-price {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-orange);
        transition: all 0.4s ease-in-out;
    }
    .get-it-all-add-cart-button {
        background-color: var(--background-color);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 60px;
        font-weight: 500;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.4s ease;
        margin-bottom: 0px;
    }
    .get-it-all-product-card:hover .get-it-all-product-title{
        color: var(--white);
    }
    .get-it-all-product-card:hover .get-it-all-product-price{
        color: var(--white);
    }
    .get-it-all-product-card:hover .get-it-all-add-cart-button{
        background: var(--dark);
    }

    .product-card-text{
        border-top: 1px solid #C7C7C74D;
        padding-top: 10px;
        transition: all 0.4s ease-in-out;
    }
    .get-it-all-add-cart-button:hover {
        background-color: var(--dark-orange);
        transform: translateY(-1px);
    }

    .get-it-all-product-image {
        width: 100%;
        height: 120px;
        object-fit: contain;
        margin-bottom: 1rem;
        border-radius: 8px;
    }


    .navigation{
    width: 32px;
    height: 32px;
    } 

    .navigation svg rect{
    stroke: #C7C7C7;
    }

    .navigation svg path{
    fill: #C7C7C7;
    }

    .custom-prev.active svg rect,
    .custom-next.active svg rect{
        stroke: var(--primary-orange);
    }
    .custom-prev.active svg path,
    .custom-next.active svg path{
        fill: var(--primary-orange);
    }

    /* Explore Our Proudly Collection  */

    .product-categories-main-container {
        padding: 2rem 0px;
    }
    .product-categories-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 30px;
    }

    .product-collections-boxs{
        display: grid;
        grid-template-columns: 1fr;
        height: 100%;
        gap: 16px;
        justify-content: space-between;
        height: 100%;
        row-gap: 16px;
    }
    .students-essentials-card {
        background-image: url(assets/images/collection-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 416px;
        border-radius: 8px;
        padding: 1px;
        transition: all 0.3s ease;
        position: relative;
    }

    .massage-device-card {
        background-image: url(assets/images/collection-2.png);
        background-size: cover;
        background-position: center;
        height: 260px;

    }

    .beauty-products-card{
        background-image: url(assets/images/collection-3.png);
        background-size: cover;
        background-position: center;
        height: 260px;
    }

    .mystery-box-card {
        background: #5F27CD;
        height: 416px;
        transition: all 0.3s ease;
        position: relative;
        justify-content: space-between !important;
    }

    .table-lamp-card {
        background-image: url(assets/images/collection-5.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 416px;

    }

    .furniture-showcase-card {
        background-image: url(assets/images/collection-6.png);
        background-size: cover;
        background-position: center;
        height: 260px;;
    }
    .product-category-card {
        border-radius: 20px;
        padding: 24px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .category-shop-btn{
        background: rgb(255 255 255 / 19%);
        backdrop-filter: blur(16px);
        border-radius: 12px;
        padding: 12px 20px;
        transform: translateY(86px);
        transition: all 0.5s ease-in-out;
        width: 100%;
    }

    .category-shop-btn:hover .btn-icon{
        background: var(--dark);
    }

    .product-category-card:hover .category-shop-btn{
        transform: translateY(0px);
    }

    .collection-btn-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .btn-icon{
        width: 32px;
        height: 32px;
        border-radius: 50px;
        background: var(--background-color);
        display: inline-block;
        align-content: center;
        text-align: center;
    }
    .btn-icon i{
        font-size: 16px;
        color: var(--white);
    }

    .category-title-large {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 1rem;
        font-family: var(--clash-Medium);
        letter-spacing: 2px;
        color: var(--white);
    }

    .category-explore-btn {
        background: transparent;
        color: var(--white);
        border: 1px solid var(--white);
        padding: 10px;
        width: 130px;
        border-radius: 50px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .category-explore-btn:hover {
        color: var(--primary-orange);
        background: #f8f9fa;
    }

    .mystery-box-illustration {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mystery-box-illustration img{
        width: 180px;
        height: 180px;
    }

    .baki-cash-back-container{
        padding: 40px 0px;
    }
    .baki-finds-header-section{
        background-color:#FF6A0029;
        padding: 24px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }

    .learn-more-btn{
        display: block;
        width: 136px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 20px;
        background: transparent;
        color: var(--dark);
        border: 1px solid var(--dark);
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }
    
    .learn-more-btn:hover{
        background: var(--background-color);
        color: var(--white);
        border-color: var(--background-color);
    }

    /* New Arrivals section  */

    .get-it-all-products-new {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin: 0 8px;
    } 

    .product-card-img{
        position: relative;
    }
    .get-it-all-products-new .get-it-all-product-card{
        padding: 0px !important;
    }

    .get-it-all-products-new .get-it-all-product-card:hover .product-card-text{
        background: var(--background-color);

    }

    .get-it-all-add-cart-button{
        transition: all 0.3s ease-in;
    }

    .get-it-all-products-new .get-it-all-product-card:hover .get-it-all-add-cart-button{
        background: black;
    }

    .get-it-all-product-card .product-card-text{
        padding: 14px;
        border-radius: 0 0 8px 8px;
        transition: all 0.3s ease-in-out;
    }
    .get-it-all-product-card .product-card-img{
        padding: 14px;
        position: relative;
    }

    .get-it-all-product-card .product-card-img img{
        height: 150px;
        transition: all 0.3s ease-in-out;
    }
    .get-it-all-products-new .get-it-all-product-card:hover .product-card-img img{
        transform: scale(1.1);
    }
    .get-it-all-products-new .get-it-all-product-card:hover .get-it-all-product-title{
        color: var(--white);
    }
    .get-it-all-products-new .get-it-all-product-card:hover .get-it-all-product-price{
        color: var(--white);
    }

    .product-card-text i{
        color: #FFBB00;
        font-size: 10px;
    }

    .product-rating .product-rating-count{
        font-size: 10px;
        color: #656565;
    }
    .product-rating{
        padding-bottom: 10px;
    }

    .get-it-all-product-card:hover .product-rating-count{
        color: #fff;
    }
    .get-it-all-product-card:hover .product-card-text i{
        color: #fff;
    }

    /* Shop by Brand  */
    
    .baki-brand-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 20% 45% 35%);
        gap: 16px;
        margin: 0 auto;
    }

    .brand-women-card {
        background-image: url(assets/images/shop-b1.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 425px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
        align-content: center;
    }

    .electronics-card {
        background-image: url(assets/images/shop-b2.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 186px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
        align-content: center;
    }
    .haire-brand-card{
        background-image: url(assets/images/shop-b3.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 186px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
        align-content: center;
    }
    
    .brand-ac-card{
        background-image: url(assets/images/shop-b5.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        padding: 24px;
        height: 222px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
        align-content: end;
    }
    
    .brand-samsung-card{
        border-radius: 8px;
        height: 425px !important;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
        align-content: end;
        position: relative;
        overflow: hidden;
    }
    .samsun-brand img{
        width: 100%;
        height: 425px;
        border-radius: 8px
    }

    .brand-box-two{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .brand-inner-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .brand-title {
        font-family: var(--clash-Medium);
        font-size: 26px;
        font-weight: 500;
        color: var(--white);
        line-height: 1.2em;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }

    .brand-card-effect {
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

    .promo-loading:hover .brand-card-effect{
        opacity: 1;
    }
    .brand-samsung-card:hover .smasung-card-effect{
        opacity: 1;
    }

    .brand-shop-btn {
        background-color: var(--background-color);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 60px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .brand-shop-btn:hover {
        background-color: var(--dark);
        
    }

    .ac-shop-btn{
        background-color: transparent;
        color: var(--white);
        border: 1px solid var(--white);
        padding: 8px 16px;
        border-radius: 60px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .ac-shop-btn:hover {
        background-color: var(--background-color);
        border-color: var(--background-color);
        
    }

    .smasung-card-effect{
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 30%;
        transition: all 0.4s ease-in-out;
    }

    /* Your Medicine Online  */

    .baki-medicine-grid-layout{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
    }

    .medicine-card{
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        height: 248px;
        transition: all 0.4s ease-in-out;
        cursor: pointer;
        align-content: end;
    }
    .baki-medicine-grid-layout .medicine-card:hover{
        background-image: url(assets/images/m-hover.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .medicine-card-one {
        background-image: url(assets/images/m-1.png);
    }
    .medicine-card-two {
        background-image: url(assets/images/m-2.png);
    }
    .medicine-card-three {
        background-image: url(assets/images/m-3.png);
    }
    .medicine-card-four {
        background-image: url(assets/images/m-4.png);
    }
    .medicine-card-five {
        background-image: url(assets/images/m-5.png);
    }
    .medicine-card-six {
        background-image: url(assets/images/m-6.png);
    }
    .medicine-card-seven {
        background-image: url(assets/images/m-7.png);
    }
    .medicine-card-eight {
        background-image: url(assets/images/m-8.png);
    }


    /* Deal of the Day */

    .countdown-button {
        background-color: #FF6A00;
        color: #fff; 
        padding: 8px 20px;
        border-radius: 999px; 
        font-size: 16px;
        font-weight: 500;
        display: inline-block;
    }

    .get-it-all-products-deal {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
        margin: 0 8px;
    }

    .get-it-all-products-deal .get-it-all-product-card:hover .product-card-text{
        background: var(--background-color);
    }
    .get-it-all-products-deal .get-it-all-product-card:hover .product-card-img img{
        transform: scale(1.1);
    }

    .sale-btn{
        position: absolute;
        display: block;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 20px;
        font-size: 10px;
        font-weight: 400;
        color: #fff;
        background: #ED1818;
        cursor: pointer;
        padding: 2px;
        text-align: center;
        align-content: center;
        border-radius: 28px;
        z-index: 11;
    }

    .product-regular-price, .product-sale-price{
        font-size: 12px;
    }
    .product-sale-price{
        color: #F35E5E;
        text-decoration: line-through;
        text-decoration-color: #656565;
        text-decoration-thickness: 1.5px;
        transition: all 0.4s ease-in-out;
    }
    .get-it-all-product-price{
        display: flex;
        justify-content: space-between;
    }
    .get-it-all-product-card:hover .product-sale-price{
        color: var(--white);
        text-decoration-color: var(--dark);
    }

    /* Furnish Your Home With Us! */

    .furnish-finds-promo-banner{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        background: #ADADAD;
        padding: 16px;
        border-radius: 8px;
    }
    .furnish-box-one{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
    }

    .furnish-promo{
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        align-content: center;
    }

    .brand-furnish-card-one{
        background-image: url(assets/images/fr-4.png);
    }
    .brand-furnish-card-two{
        background-image: url(assets/images/fr-5.png);
    }
    .brand-furnish-card-three{
        background-image: url(assets/images/fr-6.png);
    }
    .brand-furnish-card-four{
        background-image: url(assets/images/fr-7.png);
    }

    .furnish-promo .brand-shop-btn{
        font-size: 10px;
    }

    .furnish-box-two{
        background-image: url(assets/images/fr-8.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
        align-content: center;
    }

    .furnish-box-two:hover .brand-card-effect{
        opacity: 1;
    }

    /* Monthly Deals  */

    .monthly-products-cards{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
    }

    .monthly-finds-promo-banner {
        border: 1px solid #C7C7C74D;
        border-radius: 8px;
    }

    .monthly-top-box {
        display: grid;
        grid-template-columns: repeat(1, 20% 60% 20%);
        gap: 10px;
        padding: 36px 24px;
        background: var(--background-color);
        border-radius: 8px 8px 0 0;
        align-items: center;
    }

    .monthly-left-logo{
        font-size: 26px;
        color: var(--white);
        font-family: var(--clash-Medium);
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 1.4em;
    }

    .monthly-products-title{
        font-size: 22px;
        font-weight: 500;
        color: var(--white);
        letter-spacing: 1px;
        font-family: var(--clash-Medium);
        text-align: center;
        padding: 0 16px;
    }

    .month-products-rationg{
        font-size: 34px;
        font-weight: 500;
        color: var(--white);
        font-family: var(--clash-Medium);
        text-align: center;
    }

    .monthly-mid-box{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 42px 65px;
        gap: 24px;
    }

    .special-price-text{
        font-size: 22px;
        font-weight: 500;
        color: var(--primary-orange);
        letter-spacing: 1px;
        font-family: var(--clash-Medium);
    }
    .m-price{
        font-size: 34px;
        font-weight: 500;
        color: var(--primary-orange);
        letter-spacing: 1px;
        font-family: var(--clash-Medium);
    }

    .previous-price{
        text-decoration: line-through;
        text-decoration-color: var(--dark);
        text-decoration-thickness: 2px;
    }

    .monthly-mid-left {
        border-right: 1px solid var(--background-color);
    }

    .monthly-mid-right {
        padding-left: 24px;
    }

    .monthly-products-image {
        justify-items: center;
    }

    .monthly-bottom{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        align-items: end;
        padding: 0 12px;
    }

    .m-bottom-text, .m-bottom-shipping-text{
        font-size: 16px;
        color: var(--dark);
        letter-spacing: 1px;
        font-family: var(--clash-Medium);
    }

    .m-bottom-shipping-text{
        text-align: center;
    }

    .m-bottom-brand{
        font-size: 34px;
        color: var(--primary-orange);
        letter-spacing: 1px;
        font-family: var(--clash-Medium);
        line-height: 1.1em;
    }

    .monthly-bottom-mid {
        display: flex;
        justify-items: center;
        flex-direction: column;
    }

    .m-bottom-shipping{
        justify-items: center;
    }

    .get-it-all-product-card:hover .product-card-text{
        background: var(--background-color);
    }

    .get-it-all-product-card:hover .product-card-text{
        background: var(--background-color);
    }

    .front-img{
        transition: all 0.4s ease-in-out;
    }

    .hover-effects{
        position: absolute;
        top: 1rem;
        display: block;
        left: 0;
        right: 0;
        margin: auto;
        transition: all 0.4s ease-in-out;
        opacity: 0;
    }
    .get-it-all-product-card:hover .hover-effects{
        opacity: 1;
    }
    .get-it-all-product-card:hover .front-img{
        opacity: 0;
    }
    
    /* Download and Register  */

    .download-app-container{
        padding: 80px 0;
    }

    .app-contanier-wrapper {
        background: #5F27CD;
        padding: 38px 92px 0px;
        border-radius: 8px;
        display: grid;
        grid-template-columns: repeat(1, 8fr 4fr);
        gap: 16px;
    }

    .app-title{
        font-size: 34px;
        font-family: var(--clash-Medium);
        color: var(--white);
        letter-spacing: 1px;
        line-height: 1.1em;
        margin-bottom: 20px;
    }

    .app-text{
        font-size: 16px;
        font-family: var([--poppins]);
        color: var(--white);
        line-height: 1.4em;
        margin-bottom: 40px;
    }

    .app-device-img {
        display: flex;
        gap: 24px;
    }

    .app-device-img img{
        width: 220px;
    }

    .download-left{
        padding-bottom: 24px;
    }

    .feedback{
        margin-top: 80px;
        margin-bottom: 40px;
        justify-items: center;
    }

    .feedback-text{
        font-size: 16px;
        color: var(--dark);
        font-weight: 500;
        margin-bottom: 16px;
    }

    .feedback-btn{
        background: transparent;
        font-size: 16px;
        font-weight: 400;
        border: 1px solid var(--primary-orange);
        border-radius: 100px;
        color: var(--dark);
        display: block;
        padding: 12px 24px;
        transition: all 0.4s ease-in-out;
    }

    .feedback-btn:hover{
        background: var(--primary-orange);
        color: var(--white);
    }

    /* Great Deals. Free Delivery */

    .free-delivery-container {
        padding-bottom: 60px;
    }
    .delivery-title{
        font-size: 34px;
        color: var(--dark);
        letter-spacing: 1px;
        font-family: var(--clash-Medium);
        line-height: 1.1em;
        text-align: center;
        margin-bottom: 24px;
    }
    .delivery-search-container {
        display: grid;
        grid-template-columns: repeat(1, 77% 22%);
        align-items: center;
        gap: 10px;
    }

    .delivery-search-box {
        align-items: center;
        position: relative;
    }

    .delivery-search-icon {
        position: absolute;
        display: block;
        top: 18px;
        left: 14px;
    }

    #delivery-search-input {
        background: transparent;
        border: 1px solid #C7C7C74D;
        outline: none;
        color: var(--dark);
        font-size: 16px;
        display: block;
        width: 100%;
        padding: 16px 42px;
        border-radius: 50px;
    }
    #delivery-search-input::placeholder {
        color: #ADADAD;
    }
    .delivery-search-icon i{
        font-size: 20px;
        color: #ADADAD;
    }

    .delivery-subscription-button {
        background-color: var(--dark);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 16px 20px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .delivery-subscription-button:hover {
        background-color: #333333;
    }

    /* footer section  */

    .baki-footer-main-container {
        background-color: #ADADAD;
        padding: 2rem 0 0;
    }
    .baki-footer-logo {
        width: 90px;
        height: 50px;
    }

    .baki-footer-header-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--footer-border);
    }

    .baki-footer-brand-tagline {
        font-size: 18px;
        color: var(--white);
        font-family: var(--clash-Medium);
    }

    .baki-footer-expand-btn {
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    .baki-footer-brand-container {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .baki-footer-brand-info {
        display: flex;
        flex-direction: column;
    }
    .baki-footer-expand-btn:hover {
        background: rgba(255,255,255,0.1);
    }

    .baki-footer-nav-section {
        margin-bottom: 32px;
    }

    .baki-footer-nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .baki-footer-nav-link {
        color: #FCFCFC;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 400;
        transition: all 0.3s ease;
        border: 1px solid #FCFCFC;
        
    }

    .baki-footer-nav-link:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-1px);
    }

    .baki-footer-section-title {
        font-size: 22px;
        font-family: var(--clash-Medium);
        margin-bottom: 1.5rem;
        color: var(--white);
        letter-spacing: 1.2px;
    }

    .baki-footer-main-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .baki-footer-membership-icons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .baki-footer-membership-icon {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .baki-footer-membership-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .baki-footer-membership-icon img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .baki-footer-payment-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .baki-footer-payment-icon {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .baki-footer-payment-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .baki-footer-payment-icon img {
        width: 68px;
        height: 68px;
        object-fit: contain;
    }

    .baki-footer-social-icons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .baki-footer-social-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .baki-footer-social-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .baki-footer-facebook { background: #1877f2; }
    .baki-footer-messenger { background: #0084ff; }
    .baki-footer-youtube { background: #ff0000; }
    .baki-footer-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
    .baki-footer-twitter { background: #1da1f2; }
    .baki-footer-linkedin { background: #0077b5; }
    .baki-footer-whatsapp { background: #25d366; }


    .baki-footer-copyright{
        border-top: 1px solid #FCFCFC;
        padding: 16px 0;
    }

    .copyright-text{
        color: #FCFCFC;
        font-size: 12px;
    }
    
/* Most Popular Products  */

.most-popular-title{
    font-size: 38px;
    font-family: var(--clash-Medium);
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--dark);
    letter-spacing: 1.2px;
}

.most-poular-all-products-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.new-arrivals-all-products-grid{
     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.flash-deals-all-products-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.baki-express-faq-contaoner{
    width: 1000px;
    padding: 40px 0;
    margin: auto;
}


    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 3));
        }
    }
        @keyframes scroll2 {
        0% {
            transform: translateX(calc(-100% / 3));
        }
        100% {
            transform: translateX(0);
        }
    }

    .marquee-container:hover .marquee-track {
        animation-play-state: running;
    }


    /* Responsive Design */

    @media (max-width: 1360px) {
        .promo-box-three{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            grid-column: span 3;
        }

        .baby-gear-card{
            margin-top: 0;
            height: 254px !important;
        }

        .summer-trends-card{
            height: 254px !important;
        }
    }

    @media (max-width: 1200px) {
        .baki-grid-layout {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        
        .delivery-hero-card {
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .promo-title-large {
            font-size: 2rem;
        }
        
    }

    @media(max-width: 1167px){
        .promo-box-three {
        grid-column: span 3;
        display: flex;
        gap: 16px;
    }
    .outdoor-finds-card{
        height: 250px;
    }

    .baby-gear-card {
        height: 250px;
        margin: 0px;
    }

    .summer-trends-card {
        height: 250px;
    }

    .popular-finds-discount-badge {
        bottom: 15%;
    }
    }

    @media (max-width: 1024px) {
    .popular-finds-header-section {
        grid-column: span 1;
    }
    .popular-finds-discount-badge {
        width: 110px;
        height: 110px;
    }
    .popular-finds-discount-percentage, .popular-finds-discount-text {
        font-size: 24px;
    }

    .popular-finds-promo-image {
            width: 200px;
            right: 0px;
            top: 51%;
        }
    .learn-more-btn{
        width: 210px;
    }

    .popular-finds-content-wrapper {
        display: grid;
        grid-template-columns: 100%;
        row-gap: 16px;
        align-items: stretch;
    }

    .popular-finds-promo-content {
            max-width: 70%;
        }
        .medicine-card {
            height: 150px;
        }

    .get-it-all-products-deal {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .furnish-finds-promo-banner{
        height: 260px;
    }

    .app-title{
        font-size: 28px;
    }

    .baki-footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .baki-footer-payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .most-poular-all-products-grid{
        grid-template-columns: repeat(5, 1fr);
    }

    .flash-deals-all-products-grid{
        grid-template-columns: repeat(5, 1fr);
    }

    
}

    @media (max-width: 890px) {
        .promo-box-two {
            grid-column: span 2;
        }
    }


@media (max-width: 768px) {
    .pickup-delivery-btn {
        min-width: 200px;
        font-size: 12px;
    }

    .popular-finds-promo-content{
        width: 60%;
    }

    .promo-box-one{
        position: relative;
        overflow: hidden;
        grid-column: span 1;
        display: grid;
        grid-template-columns: 50% 50% 100%;
    }
    .medicine-card{
        margin-right: 8px;
    }
    .furniture-dream-card{
        margin-left: 8px;
    }
    .promo-box-two {
        grid-column: span 1;
        grid-row: none;
    }

    .delivery-hero-card {
        padding: 24px 24px 24px;
        height: 280px;
    }

    .delivery-text-container .promo-d-title{
        font-size: 22px;
    }
    
    .baki-promo-container {
        padding: 1rem 0.5rem;
    }
    
    .baki-grid-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .promo-box-two, .promo-box-three {
        margin-top: 16px;
    }
    .free-delivery-card .promo-image-container{
        width: 100%;
    }
    .fitness-gear-card {
        height: 250px !important;
        grid-column: span 2;
    }
    
    .promo-box-three {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .summer-trends-card{
        grid-column: span 2;
    }

    .promo-image-container img{
        height: 100%;
        text-align: right;
    }
    
    
    .promo-title-large {
        font-size: 1.8rem;
    }
    
    .promo-title-medium {
        font-size: 1.5rem;
    }
    
    .promo-image-container {
        width: 150px;
    }
    
    .promo-image-full {
        width: 50%;
    }

    .popular-finds-discount-badge {
        width: 110px;
        height: 110px;
    }
    .popular-finds-main-container {
        padding: 1rem 0.5rem;
    }
    
    .popular-finds-main-title {
        font-size: 1.5rem;
    }
    
    
    .popular-finds-promo-banner {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .popular-finds-promo-title {
        font-size: 1.2rem;
    }
    
    .popular-finds-promo-content {
        max-width: 100%;
    }
    
    
    
    .popular-finds-discount-percentage {
        font-size: 1rem;
    }
    
    .popular-finds-discount-text {
        font-size: 0.7rem;
    }
    .get-it-all-main-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .get-it-all-section-title {
        font-size: 32px;
    }
    
    .get-it-all-product-image {
        height: 80px;
    }
    .product-categories-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        height: auto;
        gap: 1rem;
    }
    .students-essentials-card, .mystery-box-card, .table-lamp-card{
        height: 230px;
    }

    .furniture-showcase-card, .massage-device-card, .beauty-products-card{
        height: 170px;
    }
    .category-shop-btn {
        transform: translateY(0px);
    }
    .mystery-box-illustration img {
        width: 120px;
        height: 120px;
    }

    .medicine-card {
        height: 120px;
    }
    .get-it-all-products-deal {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .app-contanier-wrapper{
        padding: 24px 24px 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .app-device-img img{
        width: 150px;
    }
    .delivery-search-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .baki-footer-membership-icons,
    .baki-footer-social-icons {
        justify-content: left;
    }
    .baki-footer-payment-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .baki-footer-header-section {
        margin-bottom: 0px;
        padding-bottom: 1.5rem;
    }

    .baki-footer-main-container {
        padding: 1.5rem 1rem 1rem;
    }
    
    .baki-footer-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .baki-footer-brand-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .baki-footer-nav-links {
        justify-content: center;
    }
    
    .baki-footer-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    

    .delivery-title {
        font-size: 28px;
    }

    .most-poular-all-products-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .new-arrivals-all-products-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .flash-deals-all-products-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .menu-devider{
        display: none;
    }

}

@media (max-width: 576px) {
    .promo-title-large {
        font-size: 1.5rem;
    }

    .hover-card-effect h3 {
        font-size: 14px;
    }
    
    .baki-promo-section .promo-card-hover {
        height: 180px;
    }
    
    .promo-box-two {
        margin-top: 16px;
    }

    .promo-box-three {
        display: grid;
        grid-template-columns: 50% 50% 100%;
        gap: 0;
    }
    .outdoor-finds-card{
        margin-right: 8px;
    }
    .baby-gear-card{
        margin-left: 8px;
    }
    .free-delivery-card .promo-image-container{
        height: 120px;
    }

    .summer-trends-card{
        margin-top: 16px;
    }
    .outdoor-promo-title {
        font-size: 20px;
    }
    .promo-title-medium {
        font-size: 1.2rem;
    }
    
    .free-delivery-card {
        grid-template-columns: 100%;

    }
    .free-delivery-card .promo-image-container {
        border-radius: 0 0px 10px 8px;
    }

    .delivery-hero-card {
        height: 318px;
    }
    
    .free-delivery-card{
        height: auto;
    }

    .promo-title-small {
        font-size: 1rem;
    }
    
    .popular-finds-discount-badge {
        width: 80px;
        height: 80px;
        bottom: 5%;
        left: 50%;
    }
    .popular-finds-products-grid {
        grid-template-columns: 1fr;
    }
    .popular-finds-promo-btn {
        padding: 12px 24px;

    }
    .popular-products-cards {
        display: grid;
        grid-template-columns: 50% 50% 50%;
        overflow: scroll;
    }
    .get-it-all-products-slide {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .get-it-all-product-title {
        font-size: 0.8rem;
    }
    
    .get-it-all-product-price {
        font-size: 0.9rem;
    }
    .get-it-all-section-title {
        font-size: 24px;
    }

    .navigation {
        width: 24px;
        height: 24px;
    }
    .get-it-all-add-cart-button {
        padding: 4px 10px;
        font-size: 12px;

    }

    .Collectionbtn{
        width: 75px;
    }
    .product-categories-grid-layout {
        grid-template-columns: repeat(1, 1fr);
        height: auto;
        gap: 1rem;
    }
    .students-essentials-card, .mystery-box-card, .table-lamp-card{
        height: 200px;
    }

    .furniture-showcase-card, .massage-device-card, .beauty-products-card{
        height: 150px;
    }
    .get-it-all-products-new {
        grid-template-columns: repeat(2, 1fr);
    } 

    .baki-brand-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 0 auto;
    }
    .brand-box-one{
        grid-column: 1 / 1;
    }
    .brand-box-two{
        grid-column: 2 / 4;
    }
    .brand-box-three{
        grid-column: 1 / 4;
        gap: 0;
    }

    .samsun-brand img{
        width: 100%;
    }

    .baki-medicine-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }

    .get-it-all-products-deal {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }

    .countdown-button {
        font-size: 10px;
    }
    .monthly-products-cards{
        grid-template-columns: repeat(2, 1fr);
    }

    .monthly-left-logo {
        font-size: 18px;
    }
    .monthly-products-title{
        font-size: 16px;
    }
    .month-products-rationg{
        font-size: 26px;
    }
    .monthly-mid-box {
        padding: 42px 15px;

    }
    .monthly-mid-right {
        padding-left: 10px;
    }

    .special-price-text {
        font-size: 16px;
    }

    .m-price{
        font-size: 24px;
    }

    .monthly-products-image img{
        width: 260px;
    }
    .m-bottom-text, .m-bottom-shipping-text{
        font-size: 14px;
    }
    .m-bottom-brand{
        font-size: 24px;
    }

    .monthly-finds-promo-banner{
        padding-top: 30px;
    }

    .monthlyproducts-grid{
        padding-top: 24px;
    }

    .app-title{
        font-size: 20px;
    }

    .app-contanier-wrapper{
        padding: 24px 24px 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .app-device-img img{
        width: 150px;
    }

    .baki-footer-social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .baki-footer-payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .baki-footer-payment-icon img {
        width: 40px;
        height: 40px;
    }

    .baki-footer-membership-icon img {
        width: 40px;
        height: 40px;
    }

    .baki-footer-nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .baki-footer-payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .baki-footer-membership-icon,
    .baki-footer-payment-icon {
        width: 50px;
        height: 40px;
    }
    .delivery-title {
        font-size: 24px;
    }

    .most-poular-all-products-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .new-arrivals-all-products-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .flash-deals-all-products-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .baki-express-reffer-title{
        font-size: 24px;
    }

    .nav-dropdown {
        font-size: 12px;
    }
    .nav-dropdown svg, .mobile-menu-categories svg{
        width: 12px;
        height: 12px;
    }

    .baki-express-main-menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        background: #fff;
        z-index: 22;
        left: -30rem;
        top: 0;
        padding: 20px 0;
        transition: 0.8s;
        height: 100%;
        align-items: baseline;
        width: 75%;
    }

    .mobile-menu-categories{
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        transition: all 0.3s ease-in-out;
    }

    .close-mobile-menu-categories{
        display: flex;
    }

 }

    @media (max-width: 480px) {     
        .popular-finds-product-name {
            font-size: 0.8rem;
        }
        
        .popular-finds-product-price {
            font-size: 1rem;
        }
    }

     .popular-finds-loading {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Cart Animation */
        .popular-finds-cart-animation {
            animation: cartBounce 0.3s ease;
        }

        @keyframes cartBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(0.95); }
        }

        .get-it-all-loading {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }


        /* Cart Animation */
        .get-it-all-cart-animation {
            animation: cartBounce 0.3s ease;
        }

        @keyframes cartBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(0.95); }
        }

        /* Heart Animation */
        .get-it-all-heart-animation {
            animation: heartPulse 0.4s ease;
        }

        @keyframes heartPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
