* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
.main-header {
    background: linear-gradient(90deg, #ffffff, #fff0f5);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 50px;
}

/* NAV */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: #e91e63;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

/* SUBMENU */
.submenu-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    display: none;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.submenu:hover > .submenu-menu {
    display: block;
}

/* CART */
.header-icons {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #e91e63;
    color: white;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 50%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* ANIMATION TO CROSS */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100%;
        background: white;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        transition: 0.3s;
        padding-top: 80px;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
    }

    /* Disable hover */
    .dropdown-menu,
    .submenu-menu {
        position: static;
        display: none;
        box-shadow: none;
    }

    .dropdown.active > .dropdown-menu {
        display: block;
    }

    .submenu.active > .submenu-menu {
        display: block;
    }
}