/* Header Styles */
.header {
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-scale-wrap {
    transform: scale(var(--header-scale, 1));
    transform-origin: center top;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 45px;
    width: auto;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 32px;
}

.icon-home, .icon-list {
    height: 32px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.icon-home:hover, .icon-list:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.header-icons a {
    text-decoration: none;
    display: inline-block;
    line-height: 0;
}

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

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    width: 100%;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #f47920;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 160px;
        top: calc(100% + 20px);
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .dropdown-item {
        padding: 14px 14px;
        font-size: 13px;
    }

    .header-inner { 
        padding: 0 12px; 
    }
}