/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #f8f6f4 0%, #faf8f6 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #5a4a3a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { color: #d4a574; }

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active { color: #d4a574; }

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
}

.lang-switcher a {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    color: #7f8c8d;
}

.lang-switcher a:hover { color: #d4a574; }
.lang-switcher a.active { color: #5a4a3a; background: #f0ebe5; }

/* ===== CART BUTTON ===== */
.cart-btn {
    background: #5a4a3a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cart-btn:hover { background: #d4a574; }

.cart-count {
    background: #e74c3c;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 6px;
    display: none;
}

.cart-count.show { display: inline; }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #5a4a3a;
    transition: all 0.3s ease;
    border-radius: 3px;
    position: absolute;
}

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

.hamburger.active span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active { max-height: 400px; }

.mobile-menu a {
    display: block;
    padding: 18px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background: #f8f6f4;
    color: #d4a574;
    padding-left: 30px;
}

.mobile-menu a:last-child { border-bottom: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lang-switcher { display: none !important; }
    .nav-menu      { display: none; }
    .hamburger     { display: flex; }
}

@media (min-width: 769px) {
    .mobile-menu { display: none !important; }
}
