/* Navigation Styles */
.header {
    background: linear-gradient(rgba(45, 48, 56, 0.9), rgba(45, 48, 56, 0.95));
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--color-accent);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-bg);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Admin Button Styles */
.admin-btn {
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    display: none; /* Hidden by default */
}

.admin-btn:hover {
    background: var(--color-text-secondary);
}

.admin-btn.visible {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 5px 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 18px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

.hamburger.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 18px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 18px;
}

/* Mobile Navigation */
@media screen and (max-width: 1024px) {
    .nav-right {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--color-bg-secondary);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-right.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .nav-link {
        width: 100%;
        padding: 0.5rem 0;
        justify-content: center;
    }

    .cart-icon {
        margin: 0 auto;
    }

    .admin-btn {
        width: 100%;
        margin: 0 auto;
    }
}

/* Additional Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        margin-left: auto;
        margin-right: 1rem;
    }

    .nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }
} 