.topNav {
    background-color: var(--main-color);
}

.myNav.sticky {
    position: fixed;
    left: 0;
    background-color: var(--white-color);
    width: 100%;
    z-index: 1999;
    top: 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.51);
}

.topNav_slider p {
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    color: var(--white-color);
}

.myNav {
    padding: .5rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100px;
    transition: .3s ease all;
}

.myNav.sticky .logo img {
    width: 120px;
    transition: .3s ease all;
}

.menu ul,
.header_icon {
    display: flex;
    gap: 3rem;
    /*height: 100%;*/
    align-items: center;
}

.header_icon {
    gap: 1rem;
}

.cart,
.whishlist {
    position: relative;
}

.header_icon span {
    position: absolute;
    right: -12px;
    top: -12px;
    background-color: var(--main-color);
    height: 25px;
    width: 25px;
    font-size: 12px;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.header_icon a i {
    color: var(--black-color);
    height: 42px;
    width: 42px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 16px;
    background-color: whitesmoke;
}

.header_icon {
    justify-content: end;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
}

.header_icon a {
    font-size: 20px;
    color: var(--black-color);
}

/* banner_img */
.banner_img img {
    width: 100%;
    /*height: 457px;*/
    object-fit: cover;
}

.categories_slider {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.categories_wrapper {
    padding: 1rem 10rem;
    background-color: whitesmoke;
}

.categories_box__img img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: contain;
}

.categories_box {
    margin: 0 12px;
    text-align: center;
}

.categories_box p {
    text-transform: capitalize;
    color: var(--black-color);
    margin: 3px 0 !important;
    font-weight: 500;
}

/* deals */
.global_wrapper {
    padding: 50px;
}

.global_content {
    margin-top: 2rem;
}



.main_heading h2 {
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 700;
}

.main_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    margin-right: 24px;
}

.product_img img {
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    cursor: pointer;
    object-position: bottom;
}

.product_img {
    position: relative;
    overflow: hidden;
}

.product_grid__box:hover .product_img span {
    bottom: 0;
    transition: .5s ease-in-out;
}

.product_grid__box {
    margin-right: 24px;
}

.product_img span {
    cursor: pointer;
    position: absolute;
    bottom: -100%;
    transition: .9s ease-in-out;
    left: 0;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 5px;
    width: 100%;
    text-transform: capitalize;
    font-weight: 500;

}

.product_content {
    background-color: whitesmoke;
    padding: 12px;
}

.product_content h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--black-color);
}

.product_content p {
    font-size: 18px;
    margin-top: 5px;
    color: var(--black-color);
}

.slick-next,
.slick-prev {
    z-index: 999 !important;
    border-radius: 100px;
    background-color: var(--main-color) !important;
    border: 1px solid #ccc !important;
    height: 42px !important;
    width: 42px !important;
}

.slick-next {
    right: 0 !important;
}

.slick-prev:before {
    opacity: 1 !important;
    content: url('../images/left.png') !important;
}

.slick-next:before {
    opacity: 1 !important;
    content: url('../images/right.png') !important;
}

.product_banner img {
    width: 100%;
}

.product_banner video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.product_banner {
    position: relative;
}

.video_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video_btn a {
    background-color: var(--main-color);
    color: var(--white-color);
}

/* testimonial_box */
.testimonial_box {
    background-color: whitesmoke;
    margin-right: 12px;
    padding: 3rem;
}

.rating {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 10px;
}

.rating i {
    color: gold;
}

.testimonial_box h3 {
    font-size: 25px;
    /* margin-top: 1rem; */
    text-transform: capitalize;
    font-weight: 500;
}

.testimonial_box p {
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-align: justify;
    font-style: italic;
    overflow: hidden;
}

/* mobileNav */
.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    transition: .4s ease;
    z-index: 1999;
}

.mobileNav.active {
    right: 0;
    transition: .4s ease;
}

.mobile_logo img {
    width: 80px;
}

.mobileNav_content {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white-color);
}
.mobile_menu{
    height: 550px;
    overflow-y: scroll;
}
.mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.cancel_btn i {
    height: 28px;
    width: 28px;
    border-radius: 100%;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile_menu ul li a {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    align-items: center;
    gap: 3px;
    color: var(--black-color);
    text-transform: capitalize;
    transition: .3s ease;
}

.mobileDropdown.active {
    background-color: #eee;
}

.mobileDropdown_list {
    height: 0;
    overflow: hidden;
    transition: .3s ease;
}

.mobileDropdown.active .mobileDropdown_list {
    height: auto;
    transition: .3s ease;
}

.mobileDropdown {
    transition: .3s ease;
}

.mobileDropdown_list a {
    padding: 0 1rem !important;
    transition: .4s ease !important;
}

.mobileDropdown.active .mobileDropdown_list a {
    padding: 1rem !important;
    transition: .3s ease;
}

.icon-wishlist{
    background: #ccc !important;
    padding: .5rem !important;
    font-size: 25px !important;
    border-radius: 100% !important;
}


.whislist--btn a {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    padding: 2px;
    background-color: transparent;
    color: var(--secondory-color);
    border: none;
    outline: none;
    background-color: var(--white-fade);
}


.filter_list{
    overflow-x: scroll;
    height:500px;
}



@media(max-width:1200px) {
    .menu ul {
        gap: 2rem;
    }

    .header_icon a i {
        height: 35px;
        width: 35px;
    }

    .menu {
        display: none;
    }

    .myNav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .categories_wrapper,
    .myNav {
        padding: 1rem 4rem;
    }

    .banner_img img {
        /*height: auto;*/
        object-fit: cover;

    }

    .product_img img {
        height: 100%;
    }

    .product_content h3 {
        font-size: 18px;
    }

    .product_banner video {
        height: 400px;
    }

    .global_wrapper {
        padding: 36px;
    }

    .product_img img {
        height: 100%;
    }

    .product_content h3 {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .product_grid__box {
        margin-right: 5px;
    }

    .product_img span {
        font-size: 13px;
    }

    .rating i {
        font-size: 14px;
    }

    .testimonial_box p {
        font-size: 14px;
    }

    .categories_wrapper,
    .myNav {
        padding: 1rem 12px;
    }

    .global_wrapper {
        padding: 30px 0;
    }

    .global_content {
        margin-top: 20px;
    }

    section {
        padding: 4px  7px 12px !important;
    }

    .main_heading h2 {
        font-size: 24px;
    }

    .steal_deals__box {
        margin-bottom: 1rem;
    }

    .testimonial_box {
        padding: 1.5rem 2rem 1.5rem 3rem;
    }

    .testimonial_box h3 {
        font-size: 18px;
    }

    .slick-prev {
        left: -15px !important;
    }

    .logo img {
        width: 120px;
    }

    .myNav.sticky .logo img {
        width: 100px;

    }

    .header_icon a i {
        height: 30px;
        width: 30px;
        font-size: 15px;
    }

    .header_icon span {
        height: 18px;
        width: 18px;
        font-size: 10px;
        right: -5px;
    }

    .categories_slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        justify-content: start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .categories_box {
        flex: 0 0 auto;
        width: 120px;
        margin-bottom: 5px !important;
        margin: 0 10px;
        scroll-snap-align: start;
        text-align: center;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .categories_slider::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

}

@media(max-width:576px) {
    .topNav p {
        font-size: 12px;
        padding: 5px 0;
    }

    .product_content h3 {
        font-size: 15px;
    }

    .product_content p {
        font-size: 15px;
    }

    .product_img img {
        height: 100%;
    }

    .product_banner video {
        height: 300px;
    }

    .slick-next,
    .slick-prev {
        height: 34px !important;
        width: 34px !important;
    }

    .slick-prev {
        left: -5px !important;
    }

    .slick-next {
        right: 0 !important;
    }

    .testimonial_box {
        padding: 1rem 2rem 1rem;
        margin-right: 5px;
    }

    .logo img {
        width: 80px;
    }

    .myNav.sticky .logo img {
        width: 70px;

    }

    .categories_slider {
        gap: 0;
    }

 
    .main_heading h2 {
        font-size: 20px;
    }
}



/* index.blade.php start */ 
  @media(max-width:768px) {
            .deals_wrapper {
                padding: 20px 12px !important;
            }
        }

    /* ===============================
   POPUP OVERLAY
================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===============================
   POPUP BOX
================================ */
.popup-box-modern {
  background: #ffffff;
  width: 86%;
  max-width: 740px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ===============================
   CLOSE BUTTON
================================ */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.offer-text {
   font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
}

/* ===============================
   POPUP LAYOUT
================================ */
.popup-inner {
  display: flex;
  min-height: 380px;
}

/* ===============================
   LEFT CONTENT (TEXT)
================================ */
.popup-left {
  flex: 0.95; /* slightly smaller than image */
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-left .circle-heading {
  width: 230px;
  height: 230px;
  border-radius: 50%;

  background: #fff;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;

  border: 3px solid #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.popup-left p {
  font-size: 17.5px;
 
  line-height: 1.65;
  color: #555;
  margin-bottom: 26px;
  max-width: 96%;
  margin-top: 10%;
}

.popup-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 16px 54px;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-top: 15%;
}

.popup-btn:hover {
  background: #222;
}

/* ===============================
   RIGHT IMAGE (WIDER)
================================ */
.popup-right {
  flex: 1.15; /* IMAGE SLIGHTLY BIGGER */
}

.popup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   LEFT SIDE FIXED OFFER BUTTON
================================ */
.offer-fixed-box {
  position: fixed;
  left: 0;
  top: 71%;
  background: #2e2e2e8a;
  color: #ffffff;
  padding: 7px 18px;
  font-weight: 600;
  cursor: pointer;
  z-index: 99999;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.side-close {
  margin-left: 8px;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 768px) {

  /* POPUP BOX */
  .popup-box-modern {
    width: 94%;
    max-width: 420px;
    border-radius: 12px;
    max-height: 90vh;
    display: flex;
    overflow: hidden;   
  }

  /* FLEX ROW LIKE DESKTOP */
  .popup-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 240px;  
  }

  /* LEFT CONTENT */
  .popup-left {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   /* centers circle heading horizontally */
    text-align: center;    /* centers text below the circle */
  }

  /* CIRCLE HEADING */
  .popup-left .circle-heading {
    width: 140px;
    height: 140px;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* centers text inside circle vertically */
    align-items: center;      /* centers text inside circle horizontally */
    margin-bottom: 16px;
    border-width: 1.5px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    text-transform: uppercase;
  }

  .popup-left .circle-heading span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
  }

  /* PARAGRAPH */
  .popup-left p {
    font-size: 14px;
    line-height: 1.55;
    margin: 8px 0 12px;
  }

  /* BUTTON */
  .popup-btn {
    padding: 12px 24px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* RIGHT IMAGE */
  .popup-right {
    flex: 1;
    height: auto;
    display: flex;
  }

  .popup-right img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
  }

  /* CLOSE BUTTON */
  .popup-close {
    width: 28px;
    height: 28px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
}

/* index.blade.php end */ 


/* header.blade.php start */ 
.login .login_drop a:focus{
        background: #ccc;
    }
    /* Dropdown container */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        background: #fff;
        padding: 0;
        min-width: 180px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        z-index: 999;
    }
    
    .dropdown-menu li {
        list-style: none;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ccc;
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 8px 15px;
        font-size: 16px !important;
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }
    
    .dropdown-menu li a:hover {
        background: #eee;
    }
    
     /*Show dropdown on hover */
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    @media(max-width:991px){
        .m-hide{
            display: none !important;
        }
        
        /*.dropdown-toggle::after{*/
        /*    display: none !important;*/
        /*}*/
        
        /*.dropdown-toggle::before{*/
        /*    display: block !important;*/
        /*    content:'';*/
            
        /*}*/
    }

/* header.blade.php end */ 


/* header.blade.php end */ 
    .user-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* header.blade.php end */ 

/* index.blade.php start */ 
  .testimonial_box {
            width: 350px !important;
        }
        /* Wrapper */


        /* MAIN SECTION */
        .testimonial-section {
            background: #fafafa;
            padding: 60px 20px;
            text-align: center;
        }

        .testimonial-heading {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 45px;
            color: #222;
        }

        /* SLIDER */
        .testimonial-container {
            width: 100%;
            overflow: hidden;
        }

        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 25px;
            padding: 5px 5px 20px;
        }

        /* CARD — FIXED WIDTH SO EXACTLY 3 SHOW */
        .testimonial-card {
            width: calc(33.33% - 20px);
            flex-shrink: 0;
            background: #fff;
            padding: 25px;
            border-radius: 2px;
            border: 1px solid #010000;
            text-align: left;
            box-sizing: border-box;
        }

        /* TEXT */
        .testimonial-card p {
            font-size: 19px !important;
            color: #333;
            line-height: 1.7 !important;
            margin-bottom: 22px !important;
        }

        /* USER INFO */
        .client-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .client-info img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client-info h4 {
            font-size: 17px;
            font-weight: 600;
            color: #111;
        }

        .client-info span {
            font-size: 14px;
            color: #777;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .testimonial-card {
                width: calc(50% - 20px);
                /* 2 cards on tablet */
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                width: 90%;
                /* 1 card on mobile */
            }
        }


        .footer_up {
            padding: 55px 0;
            /*background: #fafafa;*/
        }

        .footer_up__box {
            text-align: center;
            background: #fff;
            padding: 25px 20px;
            border: 1px solid #666060;
            border-radius: 12px;
            margin-bottom: 25px;
            height: 100%;
        }

        .footer_up__box h3 {
            font-size: 20px;
            font-weight: 600;
        }

        .footer_icon_img {
            width: 60px;
            height: 60px;
            margin: 15px auto;
            display: block;
        }

        .footer_up__box p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }

        .footer_up__box a {
            color: #000;
            font-weight: 500;
            text-decoration: underline;
        }
/* index.blade.php start */ 
