@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Padauk:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans" ;
}

body {
    background-image: url("../Assist/master/backgroundimage.png");
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    padding: 0px 30px;
    position: fixed;
    top: 0px;
    z-index: 999 !important;
    background-color: white;
}
.logo-section{
    height: 55px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo-section>img{
    height: 50px;
}
.menu-section{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
 .search-bar{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    border: 1px solid #3F3F3F;
    border-radius: 20px;
    padding: 5px;
    width: 400px;
}
.search-bar>img{
    height: 30px;
    background-color: #EFDFDF;
    border-radius: 50%;
    padding: 5px;
}
.search-bar>input{
    background-color: transparent;
    border: none;
    outline: none;
}
.round-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    padding: 0px 6px;
}
.round-button>img{
    height: 28px;
}
.number-of-round{
    background-color: #FF0000;
    color: white;
    height: 15px;
    width: 15px;
    font-size: 11px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    margin-left: 15px;
    margin-bottom: 20px;
    display: none;
}
.signup-button {
    background-color: #A10404;
    margin-left: 30px;
    border-radius: 8px;
    color: white;
    padding: 13px 39px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 1px solid #D9D9D9;

}
.signup-wrapper {
    position: relative;
    display: inline-block;
    z-index: 99999 !important; 
}

.signup-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
    padding: 10px;
    list-style: none;
    border-radius: 6px;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999999 !important;
}
.signup-dropdown li {
    padding: 10px 16px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #D9D9D9;

}
.signup-dropdown li:hover {
    color: #A10404;
    background: #EFDFDF;
    border-radius: 4px;
}
.signup-wrapper:hover .signup-dropdown,
.signup-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* container for the whole mobile menu */
#mobile-menu {
  display: none; /* keep as you already had for desktop */
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background: #fff;
  overflow-y: auto;
  height: calc(100vh - 75px);
  z-index: 10001;
}

/* dropdown item wrapper */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}
.mobile-dropdown1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}
.mobile-dropdown2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

/* header that user clicks */
.dropdown-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 16px;
  cursor: pointer;
}

/* arrow transition/rotation */
.arrow {
  transition: transform 0.25s ease;
}

/* collapsed submenu (hidden) */
/* remove display:flex here — use block so height controls work reliably */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease, opacity 0.25s ease;
  margin: 0;
  list-style: none;
  background-color: #F6F6F6;
  opacity: 0;
  pointer-events: none;      /* prevent focus/click when closed */
}

.mobile-submenu>li:hover{
    background-color: #EFDFDF;
}

/* items inside submenu */
.mobile-submenu > li {
  padding: 5px 20px;
  color: #3F3F3F;
  font-weight: 400;
  background-color: #f7f7f7;
}

/* opened state */

.mobile-dropdown.open .mobile-submenu {
  max-height: 600px; /* enough to show content, a large value works for animation */
  opacity: 1;
  pointer-events: auto;
  width: 100%;
  border-radius: 4px;
}



.mobile-dropdown.open .arrow {
    transform: rotate(180deg);
}
.welcome-main-section{
    background-image: url("~/UiReleted/Assist/master/backgroundimage.png");
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #a1040413;
}
.image-section .circle-image{
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-section .circle-image>span{
    font-size: 20px;
    color: #2a882e;
    font-weight: 600;
}
.welcome-text-section{
    display: flex;
    flex-direction: column;
}
.welcome-text-section>span{
    color: black;
    font-size: 18px;
    font-weight: 600;
}
.welcome-text-section>a{
    color: #A10404;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.main-bottom-section{
    background-color: #f7f7f7;
}
.sub-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
}
.sub-section>span{
    color: #3F3F3F;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0px 5px 0px;
}
.mobile-nav-menu{
    margin-top: 10px;
    background-color: white;
    list-style: none;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
}
.mobile-nav-menu1{
    margin-top: 10px;
    background-color: white;
    list-style: none;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
}
.mobile-nav-menu.not-logged-in{
    background-color: #D9D9D9;
}
.mobile-nav-menu.not-logged-in .mobile-icon{
    background-color: #8E8989;
}
.mobile-nav-menu.not-logged-in .mobile-icon>img{
    mix-blend-mode: multiply;
    opacity: 0.8;
}
.mobile-nav-menu>li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mobile-nav-menu1>li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mobile-icon-main{
    display: flex;
    align-items: center;
    gap: 10px;
}
 .mobile-icon{
    background-color: #EFDFDF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;

}

.mobile-icon-main>span{
    font-size: 16px;
    font-weight: 500;
    color: #3F3F3F;
}
/* Level 1 submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown.open > .mobile-submenu {
    max-height: 1000px;
    background-color: white;
    margin-top: 5px;
}

/* Level 2 submenu */
.mobile-dropdown-sub{
    display: flex;
    flex-direction: column;
}
.mobile-dropdown-sub>span{
    padding: 10px;
    padding-left: 0px;
}
.mobile-dropdown-sub > ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    list-style: none;
    background-color: white;
}
.mobile-dropdown-sub.open-sub > ul {
    max-height: 800px;
}
.mobile-dropdown-sub > ul>li{
    padding: 10px;
    color: black;
    font-weight: 500;
}

/* Mobile Radio buttons */
.signup-page-navigations{
    display: none;
}

.mobile-logout-section{
    padding-top: 30px;
    background-color: #f7f7f7;
}
.mobile-logout-sub{
    background-color: #A10404;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    padding-bottom: 80px;
    color: white;
}
.logout-button{
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestions-box {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 400px;
    width: 100%;
    background: #fff;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    position: fixed;
    z-index: 999;
    top: 78px;
    left: 120px;
    border-radius: 5px;
    padding: 10px;
}

.suggestions-box li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #D9D9D9;
    color: #3F3F3F;
    font-size: 14px;
}

.suggestions-box li:hover {
    background: #EFDFDF;
    color: #A10404;
}
/* Hide scrollbar buttons + custom scrollbar */
.suggestions-box::-webkit-scrollbar {
    width: 6px; /* thin scrollbar */
}

.suggestions-box::-webkit-scrollbar-track {
    background: #f2dada;      /* light track */
    border-radius: 10px;
}

.suggestions-box::-webkit-scrollbar-thumb {
    background: rgb(179, 179, 179);      /* darker thumb */
    border-radius: 10px;
}

.suggestions-box::-webkit-scrollbar-thumb:hover {
    background: #a10404;      /* stronger on hover */
}

/* Remove scrollbar arrows */
.suggestions-box::-webkit-scrollbar-button {
    display: none;
}

#desktop-search::-webkit-search-cancel-button,
#mobile-search::-webkit-search-cancel-button {
    display: none;
}

#desktop-search,
#mobile-search {
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width:1130px) {
    .search-bar{
        width: 500px;
    }
}
@media (min-width:1440px) {
    .search-bar{
        width: 600px;
    }   
}


@media (max-width: 595px) {
    .signup-page-navigations {
        display: block;
        position: absolute;
        background-color: white;
        top: 0px;
        height: 100%;
        z-index: 99999;
        width: 100%;
    }
    .sigup-navigation-heading {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
        padding-left: 20px;
        background-image: url("'~/UiReleted/Assist/master/Rectangle 398.svg'");
        background-color: #a1040413;
        height: 100px;
    }
    .sigup-navigation-heading>span {
        color: #A10404;
        font-size: 24px;
        font-weight: 500;
    }
    .radio-buttons-main {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
        padding-left: 20px;
        gap: 30px;
    }
    .radio-button {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .radio-input-main {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .radio-img-main {
        background-color: #EFDFDF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }
    .radio-input-main>span {
        font-weight: 600;
    }
    .continue-btn {
        margin-top: 30px;
        width: 100%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .continue-btn>span {
        background-color: #A10404;
        padding: 10px 60px;
        width: 70%;
        border-radius: 5px;
        font-weight: 500;
        text-align: center;
    }

    /* Hide the default radio button */
    .radio-buttons-main input[type="radio"] {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

    /* Create a custom radio button */
    .radio-buttons-main input[type="radio"] + label::before {
        content: '';
        display: inline-block;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        border: 2px solid #4caf50; /* Green border */
        background-color: white;
        transition: background-color 0.3s ease, transform 0.3s ease;
        margin-right: 10px;
    }

    /* When the radio is checked, change the background to green */
    .radio-buttons-main input[type="radio"]:checked + label::before {
        background-color: #4caf50;
        border-color: #4caf50;
        transform: scale(1.1); /* Slightly increase the size when checked */
    }
    #error-tostify{
        margin-top: 50px;
        display: none;
        align-items: center;
        justify-content: center;
    }
    #error-tostify>span{
        background-color: rgba(168, 20, 20, 0.267);
        padding: 5px 10px;
        border-radius: 5px;

    }
}

/* Ensure the profile dropdown is hidden by default */
.user-profile-icon .img-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    height: 100%;
    padding-left: 30px;
}

.img-name > .circle-image {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #a104042d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-name .circle-image>span{
    color: rgb(42, 71, 165);
    font-weight: 700;
}

.img-name #user-name {
    font-size: 12px;
    text-wrap: nowrap;
}


/* Initially hide the profile dropdown */
.profile-dropdown {
    display: none;
    position: absolute;
    top: 65px;
    right: 10px;
    background-color: white;
    border-radius: 4px;
    padding: 10px;
}

.profile-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-dropdown ul li {
    padding: 5px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
    color: #3F3F3F;
    border-radius: 5px;
}
.profile-dropdown ul li>span{
    font-size: 14px;
}

.profile-dropdown-image {
    background-color: #EFDFDF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
}

/* Show the profile dropdown on hover */
.user-profile-icon:hover .profile-dropdown {
    display: block;
}

/* Hover effect for list items */
.profile-dropdown ul li:hover {
    background-color: #EFDFDF;
    color: #A10404;
}

.profile-dropdown ul li:hover .profile-dropdown-image {
    background-color: white;
}
.logout-option-desktop{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
    cursor: pointer;
        color: #716B6B;

}
.logout-option-desktop:hover{
    color: #A10404;
}



/* Mobile Search Bar */
.mobile-search-bar-main{
    display: none;
    position: relative;
    top: 75px;
    padding: 20px 15px;
    background-color: #f7f7f7;
    z-index: 999;
    transition: all 0.5s ease;
}
.mobile-search-bar{
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-radius: 30px;
}
@media (max-width:340px) {
    .mobile-search-bar{
        width: 200px;
    }
}
.mobile-search-bar>input{
    border: none;
    outline: none;
    background-color:transparent;
    font-size:16px;
    margin-left: 15px;
}

/* Banner Section */

.featured-brands{
    background: white;
}
.carousel-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 75px;
}

.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2); /* 20% black */

}

.carousel-slide img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 1;
}

/* Dots below the image */
.dots {
    width: 100%;
    text-align: center;
    padding-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin: 0 5px;
}

.dot.active {
    background-color: #A10404;
}

/* Notification-content */

.notification-main-box{
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #F5F5F5;
    border-radius: 8px;
    width: 600px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    padding: 10px;
    display: none;
    
}
/* ===== WebKit browsers (Chrome, Edge, Safari) ===== */
.notification-main-box::-webkit-scrollbar {
    width: 6px; /* reduced width */
}

.notification-main-box::-webkit-scrollbar-track {
    background: transparent; /* or any color you want */
}

.notification-main-box::-webkit-scrollbar-thumb {
    background-color: #999; /* scrollbar color */
    border-radius: 10px;
}

.notification-main-box::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}

/* Remove scrollbar buttons (arrows) */
.notification-main-box::-webkit-scrollbar-button {
    display: none;
}

/* ===== Firefox ===== */
.notification-main-box {
    scrollbar-width: thin;               /* thin scrollbar */
    scrollbar-color: #999 transparent;   /* thumb color | track color */
}
@media (max-width:700px) {
    .notification-main-box{
        width: 90%;
    }
}
@media (max-width:595px) {
    .notification-main-box{
        margin-top: 80px;
        top: none;
        bottom: 65px;
        width: 100%;
        right: 0px;
        border-radius: 0px;
        max-height: 100%;
        z-index: 9999;
    }
}
.notification-main-box>ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.notification-main-box .notification-content{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #EFDFDF;
    cursor: pointer;
}
.notification-content div>img{
    height: 80px;
    border-radius: 5px;
}
.contents-noti{
    display: flex;
    flex-direction: column;
}
.contents-noti>span{
    font-size: 11px;
    color: #716B6B;
    text-align: right;
}
.contents-noti>.noti-head{
    font-size: 16px;
    font-weight: 600;
    color: #3F3F3F;
    padding-bottom: 5px;
}
.contents-noti>.noti-content{
    font-size: 14px;
    font-weight: 600;
    color: #716B6B;
}


/* Banner section Content */

.middle-nav-bar {
    position: absolute;
    z-index: 100;
    left: 50%;
    top: 100px;
    transform: translate(-50%);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    list-style: none;
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    /* Glass effect */
    background: rgba(255, 255, 255, 0.034);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item {
    position: relative;
    padding: 10px 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    
}
.nav-item>span{
    font-size: 18px;
    text-wrap: nowrap;
    font-family: Padauk;

}

/* SUBMENU (Initially hidden) */
.dropdown {
    position: absolute;
    top: 55px;
    left: -100px;
    background: white;
    padding: 12px 0;
    list-style: none;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); 
    transition: all 0.25s ease;
    z-index: 9999;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    height: max-content;
    gap: 10px;
    width: max-content;
}

.dropdown>li {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #3F3F3F;
    gap: 8px;
    font-weight: 500;
}
.submenu-dropdown-main{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    border-radius: 8px;
}
.submenu-dropdown-main>li{
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    padding: 5px 10px;  
}



.submenu-dropdown-main>li:hover{
    color: #A10404;
    background: #EFDFDF;
    border-radius: 4px;
}

/* SHOW submenu on hover */
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.banner-main-content{
    position: absolute;
    z-index: 99;
    top: 220px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.banner-heading{
    font-size: 30px;
    color: white;
    font-weight: 500;
    max-width: 500px;
    width: 100%;
    text-align: center;
}
.banner-line .line{
    border: 1px solid white;
    width: 700px;
}
.small-para{
    color: white;
    font-size: 16px;
    max-width: 600px;
    text-align: center;
}
.banner-explore-btn{
    margin-top: 15px;
}
.banner-explore-btn>button{
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.034);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

/* Featured Brands */
.featured-brands{
    padding-top: 40px;
    background-color: transparent;
}
.heading-tag-for-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.heading-tag-for-section>div{
    font-size: 24px;
    font-weight: 600;
}
.heading-tag-for-section .heading-line{
    border: 1px solid #A10404;
    width: 185px;
}
:root{
  --logo-size:64px;
  --gap:36px;
  --speed-px-per-sec:50;
}


/* wrapper */
.logo-marquee-wrap{
    padding:20px 0px; 
    display:flex; 
    justify-content:center; 
    background: transparent;
}

/* viewport (visible area) */
.logo-marquee{
    width:100%; 
    background-color: transparent;
}
.marquee-viewport{
    overflow:hidden; 
    width:100%;
}

/* content row (will be duplicated) */
.marquee-content{
  display:flex;
  gap:var(--gap);
  align-items:center;
  flex-wrap:nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

/* each logo item */
.marquee-item{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-width:100px;
  user-select:none;
}

.marquee-item img{
  width:var(--logo-size);
  height:var(--logo-size);
  object-fit:cover;
  display:block;
  margin-bottom:8px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.12);
  cursor: pointer;
}

.brand-name{
    font-size:12px;
    color:#444;
    white-space:nowrap
}

.logo-marquee:hover .marquee-content,
.logo-marquee:focus-within .marquee-content{
  animation-play-state:paused;
}


/* keyframes - translate by CSS variable --move px which JS sets */
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(calc(var(--move) * -1))}
}

@media (max-width:1068px) {
    .submenu-dropdown-main>li{
        font-size: 12px;
        padding: 4px 8px;
    }
    .nav-menu{
        gap: 30px;
    }
}


@media (max-width:835px) {
    .dropdown{
        left: -80px;
    }
    
}
@media (max-width:916px) {
    .search-bar{
        width: 300px;
    }
    .nav-item>span{
        font-size: 14px;
    }
}
@media (max-width:840px) {
    .signup-button{
        padding: 10px 20px;
        font-size: 14px;
        margin-left: 20px;
    }
}

@media (max-width:815px) {

    /* Nav Bar */
     .search-bar{
        width: 250px;
    }


    /* Banner Section */
    .nav-menu{
        gap: 15px;
    }

    .banner-main-content{
        top: 200px;
    }
    .carousel-container { 
        height: 400px;
        width: 100%; 
    }
    .banner-heading{
        font-size: 24px;
        max-width: 400px;
    }
    .banner-line .line{
        width: 500px;
    }
    .small-para{
        font-size: 14px;
        max-width: 400px;
    }
    .banner-explore-btn>button{
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width:790px) {
    .dropdown{
        left: -100px;
    }
    .round-button{
        padding: 0px 3px;
    }
    .round-button>img{
        height: 20px;
    }
}

@media (max-width:751px) {
    .dropdown{
        font-size: 14px;
    }
    .submenu-dropdown-main{
        padding: 5px;
    }
    .submenu-dropdown-main>li{
        font-size: 12px;
    }
}

@media (max-width:730px) {
    .nav-menu{
        gap: 10px;
    }
}
@media (max-width:716px) {
    .logo-section{
        gap: 10px;
    }
    .search-bar{
        width: 230px;
    }
}
@media (max-width:700px) {
    .nav-item>span{
        font-size: 12px;
    }   
}
@media (max-width:698px) {
    .dropdown{
        left: -80px;
    }
    .submenu-dropdown-main{
        padding: 5px;
    }
    .submenu-dropdown-main>li{
        font-size: 10px;
    }
}

@media (max-width:672px) {
    .search-bar{
        width: 200px;
    }
}

@media (max-width:660px) {
    /* Nav Bar */
    nav{
        height: 75px;
    }
    .middle-nav-bar{
        top: 80px;
    }
     .nav-menu{
        gap: 10px;
        padding: 5px 5px;
    }

    .logo-section{
        height: 45px;
    }
    .signup-button{
        margin-left: 0px;
    }
    /* Banner Section */
    .banner-heading{
        font-size: 20px;    
    }
    .carousel-container { 
        margin-top: 75px;
        height: 300px;
        width: 100%;
    }
    .banner-main-content{
        top: 150px;
        gap: 10px;
    }
    .dropdown{
        left: -60px;
        font-size: 12px;
    }
    #home-furnishing-dropdown{
        left: -100px !important;
    }

}
@media (max-width:595px) {
    /* .middle-nav-bar, .menu-section .search-bar, .round-button, .signup-button{
        display: none;
    }
    #hamburger-menu{
        display: block; 
    }
    .line{
        width: 300px;
    } */
}


/* ----------------------- */
/* HAMBURGER MENU */
/* ----------------------- */

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.hamburger-menu span {
    height: 4px;
    width: 100%;
    background-color: #A10404;
    border-radius: 4px;
}
#mobile-erangoli-logo{
    display: none;
}
#desktop-erangoli-logo{
    cursor: pointer;
}

@media (max-width: 595px) {

    .middle-nav-bar{
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
    

    /* #mobile-erangoli-logo{
        display: flex;
        z-index: 99;
    } */
    .search-bar{
        display: none;
    }


   
    .mobile-search-bar-main{
        display: block;
    }


    .menu-section {
        display: none;
    }

    #mobile-menu{
        display: none;
    }

    /* Show menu when active */
    .menu-open {
        display: flex !important;
        flex-direction: column;
    }


    .signup-wrapper {
        width: 100%;
    }

    .signup-dropdown {
        position: relative;
        width: 100%;
    }
    .banner-line .line{
        width: 250px;
    }

    .heading-tag-for-section>div{
        font-size: 18px;
    }
    .banner-main-content{
        top: 230px;
    }
    .suggestions-box{
        top: 150px;
        left: 5px;
    }
}
@media (max-width:425px) {
    .search-bar{
        width: 200px;
    }
}

.pd-share {
  position: relative;
  cursor: pointer;
}
/* Popup container */
.share-popup {
  position: absolute;
  bottom: 45px;
  right: 0;
  background: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  display: flex;
  gap: 10px;
  border: 1px solid #D9D9D9;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 50;
}

/* Show popup */
.share-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Icons */
.share-popup img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.share-popup img:hover {
  transform: scale(1.15);
}

.wishlist-icon {
    cursor: pointer;
  transition: transform 0.2s ease;
}
.wishlist-icon.active {
  transform: scale(1.15);
}




