 /* --- GLOBAL STYLES --- */
 body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- HEADER & NAVIGATION --- */
.header {
    background: #f5bf2a;
    padding: 20px 60px;
    border-bottom: 3px solid #222;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-menu a {
    margin: 0 18px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    text-decoration: underline;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    width: 35px;
    height: 35px;
}

.profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ddd;
    padding: 5px;
}

/* --- MOBILE MENU COMPONENTS (Hidden on Desktop) --- */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
}



/* --- FOOTER SECTION --- */
.footer {
    background: #f5bf2a;
    padding: 30px 60px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 7px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 250px;
    font-weight: 500;
}

.footer-social p {
    margin: 0 0 6px 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.footer-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 50%;
}

.footer-icon:hover {
    transform: scale(1.1);
}

.copyright {
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
}


/* === DROPDOWN === */
.dropdown {
    position: relative;
}


.dropbtn {
    margin: 0 18px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.dropbtn:hover {
    text-decoration: underline;
}

/* dropdown box */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 9999;
}


/* dropdown links */

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

/* hover effect */
.dropdown-content a:hover {
    background: none;
    text-decoration: underline;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content {
    display: block;
}
