/* ===== MAIN HEADER ===== */
.main-header {
    padding: 0px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #39dbff94;

}

div#mainHeader {
    width: 100%;
    background: #000412 ;
}

.header-icons {
    display: flex;
    gap: 1px;
    align-items: center;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
}

/* LOGO */


.logo img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(91, 27, 189, 0.2));
}

.logo:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 8px 16px rgba(91, 27, 189, 0.4));
}

/* NAVIGATION */
.nav-wrapper {
    position: relative;
    padding: 8px 8px;
}

.nav-links {
    display: flex;
    gap: 21px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #A7C2D5;
    padding: 10px 0px;
    border-radius: 40px;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-family: var(--heading-bold);
    font-weight: 700;
    letter-spacing: 2px;
}


.active_link {
    color: #39DBFF ! important;
    text-transform: uppercase;
}

/* 1. Base styles for the links - crucial for positioning the line */
.nav-links a {
    position: relative;
    /* Keeps the line anchored to the link text */
    text-decoration: none;
    display: inline-block;
    padding-bottom: 5px;
    /* Creates space for the line underneath */
}

/* 2. Setup the pseudo-element for ALL links (Hidden by default with 0% width) */
.nav-links a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #00AFFF;
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 10px #00AFFF,
        0 0 30px rgba(0, 175, 255, 0.7),
        0 0 60px rgba(0, 175, 255, 0.5);
}

/* 3. HOVER Effect: Expand the line to 100% width when mouse rolls over */
.nav-links a:hover::before {
    width: 100%;
}

/* 4. ACTIVE State: Keeps the line at 100% width on the current page link */
.nav-links .active_link a::before,
.nav-links a.active_link::before {
    width: 100% !important;
}

span.cart_item_count {
    background-color: black;
    color: #000;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    border-radius: 27px;
    position: absolute;
    top: -1px;
    right: -3px;
    background: #00AFFF;
    font-weight: 700;
    font-family: var(--para-font);
}

.header-icons i {
    font-size: 21px;
}

.header_logo {
    height: 89px;
    object-fit: scale-down;
}



/* Active link */
.nav-links a.active {
    color: #fff;
    font-family: var(--secondary-medium-font);
}


/* INDICATOR */
.nav-indicator {
    position: absolute;
    height: 48px;
    background: #6000A0;
    border-radius: 40px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
    box-shadow: 0 8px 20px #5b1bbd66, inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
}

/* RIGHT ICONS */

.icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-circle.purple {
    background: linear-gradient(135deg, #5b1bbd, #7e3ae0);
    color: #fff;
    border: none;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1001;
}

i.fas.fa-shopping-bag {
    color: #A7C2D5;
}

.mobile-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: 0.3s ease;
    border-radius: 3px;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
    width: 80%;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    background: #7e3ae0;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
    background: #7e3ae0;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    background: #010717;
    padding: 30px 25px;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    box-shadow: -10px 0 40px rgba(91, 27, 189, 0.3);
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-close i {
    color: #00AFFF;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 80px;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: #A7C2D5;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 2px 0px;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: var(--secondary-medium-font);
}

.mobile-menu a i {
    width: 30px;
    font-size: 22px;
    color: #7e3ae0;
}

.mobile-menu a:hover {
    background: rgba(91, 27, 189, 0.1);
    transform: translateX(10px);
}

.menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #5b1bbd;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.menu-close:hover {
    background: #5b1bbd;
    color: #fff;
    transform: rotate(90deg);
}

.wrappermobbile {
    display: none;
}

.bannerheading {
    position: absolute;
    width: 100%;
    top: 241px;
}

.res-wrapper-django1 {
    display: none;
}



/* RESPONSIVE */
@media(max-width:1367px) {
    .nav-links {
        display: flex;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        padding: 10px 14px;
    }
}

@media(max-width:1119px) {
    .nav-links {
        display: flex;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
}

@media(max-width:991px) {
    .res-wrapper-django1 {
        display: block !important;
    }

    .mobile-menu a {
        gap: 15px;
        padding: 2px 0px;
    }

    .wrapper-wihhh {
        width: 100% !important;
        text-align: start !important;
    }

    .talk-bottom {
        margin-top: 60px !important;
        padding-bottom: 40px !important;
    }

    .talk-footer::before {
        bottom: 300px !important;
    }

    .mobile-menu {
        padding: 30px 15px;
        width: 380px;
    }

    i.fas.fa-user.ms-2.w-unset {
        color: #fff;
    }

    .wrapper-wihhh {
        width: 100%;
    }

    .bannerheading {
        top: 171px !important;
    }

    .wrappermobbile {
        display: block;
        padding-left: 36px;
    }

    .wrappermobbile a {
        padding: 0;
    }



    .wrappermobbile a .icon-circle i {
        padding-left: 5px;
    }

    .mobile-menu {
        z-index: 111111;
    }

    .nav-wrapper,
    .header-icons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo img {
        height: 100px;
        position: relative;
        top: -11px;
    }

    .header-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 10px;
    }

    .talk-top h2.talk-heading.letters {
        font-size: 50px;
    }
}

@media(max-width:576px) {
    .top-strip {
        font-size: 13px;
        padding: 8px;
    }

    .talk-bottom {
        margin-top: 30px;
        padding-bottom: 40px;
        text-align: start ! important;
    }

    .logo img {
        height: 70px;
    }

    .logo {
        position: relative;
        border-radius: 12px;
        top: 10px;
    }

    .mobile-menu {
        width: 100%;
    }
}