:root {
    --primary-color: #FFB900;
    --red-color: #FF0000;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --heading-color: #070707;
    --sub-heading-color: #3B3B3B;
    --text-color: #555;
    --white-color: #ffffff;
    --bg-black: #000000;
}

/* HEADER */
.navbar {
    /* padding:1rem 2rem; */
    background: var(--white-color);
    /* box-shadow:0 5px 20px rgba(0,0,0,0.05); */
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LOGO */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #667eea;
}

/* MENU LINKS */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #333 !important;
    transition: 0.3s;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: #FFB900;
}

.navbar-expand-lg .navbar-nav {
    gap: 10px;
}

/* DESKTOP SUBMENU - HOVER */
@media(min-width:1024px) {
    .dropdown:hover>.dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
        transition: all 0.4s ease;
    }

    .dropdown>.dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        max-height: 0;
        transition: all 0.4s ease;
    }
}

/* CTA BUTTON */
 .btn-cta {
    background: #FFB900;
    color: var(--white-color);
    border-radius: 8px;
    padding: 4px 12px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px !important;
}

.btn-cta:hover {
    background: #ffbb00;
    color: var(--white-color) !important;
}

/* E-COMMERCE ICONS */
.header-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.header-icons a {
    color: #333;
    font-size: 1.2rem;
    position: relative;
    transition: 0.3s;
}

.header-icons a:hover {
    color: #ffbb00;
    transform: translateY(-3px);
}

/* ICON BADGES */
.header-icons a span {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff4d6d;
    color: var(--white-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
}

/* SEARCH BOX ANIMATION */
.search-box {
    position: absolute;
    top: 165%;
    right: 0px;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
    transition: 0.4s;
    overflow: hidden;
    width: 300px;
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    /* height: 35px; */
}

.search-box.active {
    transform: translateY(-50%) scaleX(1);
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 50px;
}

.search-box button {
    background: none;
    border: none;
    color: var(--bg-black);
    cursor: pointer;
    font-size: 1rem;
}

/* MOBILE SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: -450px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transition: 0.4s;
    padding: 2rem 1rem;
}

.side-menu.active {
    left: 0;
}

.side-menu .close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    color: #333;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin-bottom: 1rem;
}

.side-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
    transition: 0.3s;
}

.side-menu ul li a:hover {
    color: var(--primary-color);
}

.side-menu ul li ul {
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}

.side-menu ul li.active ul {
    max-height: 500px;
}

.side-menu ul li i.toggle-submenu {
    float: right;
    cursor: pointer;
}

/* HAMBURGER */
.navbar-toggler {
    border: none;
}

.navbar-collapse {
    gap: 20px;
}

.side-menu .close-btn {
    position: relative;
}

.side-menu .close-btn i {
    position: absolute;
    right: 0;
    top: 0;
}

@media(min-width:1024px) {

    .side-menu,
    .navbar-toggler {
        display: none;
    }
}