/* Reset any existing styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Copy all styles from the <style> tag in your HTML */
body {
    font-family: 'Montserrat', sans-serif;
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.5rem;
    background-color: #FFD700;
    z-index: 2000;
    height: 70px;
}

/* ... rest of the styles ... */

/* Cart icon styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    margin-left: auto;  /* This will push it to the right of the logo */
    margin-right: 20px; /* Space between cart icon and hamburger menu */
    user-select: none;
    display: flex;
    align-items: center;
    z-index: 2001; /* Ensure it's clickable */
    padding: 10px; /* Larger click area */
    transition: opacity 0.3s ease;
}

.cart-icon:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    display: none;
}

/* Update header container */
.header-container {
    width: 100%;
    padding: 0 1rem;
    margin: 0;
    display: flex;
    justify-content: flex-start; /* Change from space-between to flex-start */
    align-items: center;
    background-color: #FFD700;
}

/* Update hamburger position */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        background-color: #FFD700;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.logo {
    font-size: 2.5rem;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    background-color: #FFD700;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
        margin-right: 0;
    }
} 