header {
    background: rgba(247, 242, 232, 0.95);
    padding: 0.25rem 0;
    box-shadow: 0 2px 8px rgba(184,134,11,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10001;
    height: 60px;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
}

.header-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: auto;
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
}

.logo a:hover {
    text-decoration: underline;
}

nav {
    display: flex;
    align-items: center;
    height: auto;
    gap: 1.5rem;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: color 0.2s, box-shadow 0.2s, border-bottom 0.2s;
    position: relative;
    line-height: 1.2;
}

nav a:hover {
    color: var(--secondary);
    text-decoration: none;
}

nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.2s;
    position: absolute;
    left: 0;
    bottom: -2px;
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle .fas {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    display: none;
    background-color: var(--light);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 1px solid rgba(184, 134, 11, 0.1);
    width: 100%;
    min-width: 180px;
    padding: 0.5rem 0;
    margin-top: 5px;
    opacity: 1;
    transform: none;
    transition: none;
    border-radius: 8px;
    left: 0;
    z-index: 10002;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem !important;
    background: transparent !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    color: var(--secondary) !important;
    text-align: center;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(184, 134, 11, 0.08) !important;
    color: var(--primary) !important;
}

/* Override nav a styles for dropdown link */
.dropdown-menu a::after {
    display: none !important; /* No underline effect needed here */
}

.admin-link {
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.admin-link:hover {
    color: var(--secondary);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-link {
    position: relative;
    color: var(--primary);
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.2s;
}

.cart-link:hover {
    color: var(--secondary);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
} 