/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,251,247,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
}
.nav-logo span { font-size: 28px; }
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    transition: transform 0.2s;
}
.cart-icon .ic { font-size: 22px; }
.cart-icon:hover { transform: scale(1.1); }
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--pink);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-badge.hidden { display: none; }

/* Language toggle */
.lang-toggle {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.lang-toggle:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== NAV SEARCH ===== */
.nav-search {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0 14px;
    height: 36px;
    width: 220px;
    transition: all 0.2s;
}
.nav-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20,83,45,0.1);
    width: 260px;
}
.nav-search svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-lighter); }
.nav-search input {
    border: none; background: transparent; outline: none;
    font-size: 13px; color: var(--text); padding: 0 8px;
    width: 100%; font-family: inherit;
}
.nav-search input::placeholder { color: var(--text-lighter); }

/* ===== CATEGORY DROPDOWN ===== */
.nav-cat-wrap { position: relative; }
.nav-cat-btn {
    display: flex; align-items: center; gap: 6px;
    background: transparent; color: var(--text);
    border: none; font-size: 15px; font-weight: 500;
    cursor: pointer; padding: 4px 0;
    font-family: inherit;
}
.nav-cat-btn:hover { color: var(--primary); }
.nav-cat-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.nav-cat-btn.open svg { transform: rotate(180deg); }
.nav-cat-dropdown {
    display: none; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%); margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 160px; z-index: 200;
    padding: 6px 0; overflow: hidden;
}
.nav-cat-dropdown.open { display: block; }
.nav-cat-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; font-size: 14px;
    color: var(--text); cursor: pointer;
    transition: background 0.15s;
    border: none; background: none; width: 100%;
    font-family: inherit; text-align: left;
}
.nav-cat-item:hover { background: var(--bg); color: var(--primary); }
.nav-cat-item svg { width: 18px; height: 18px; color: var(--text-lighter); flex-shrink: 0; }
.nav-cat-item.active { color: var(--primary); font-weight: 600; background: rgba(20,83,45,0.04); }

/* ===== HAMBURGER (MOBILE) ===== */
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); padding: 4px; }
