/* ========================================
   HEADER LAYOUT
   ======================================== */

.duckydoubles-header {
    width: 100%;
    max-width: 672px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .duckydoubles-header {
        gap: 16px;
    }
}

.duckydoubles-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0px 8px;
}

.duckydoubles-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.duckydoubles-header-branding {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.duckydoubles-header-duck {
    width: 40px;
    height: 40px;
    padding: 4px;
    flex-shrink: 0;
}

.duckydoubles-header-wordmark {
    height: 32px;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .duckydoubles-header-wordmark {
        height: 40px;
    }
}

.duckydoubles-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.duckydoubles-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(9, 14, 24, 0.4);
    backdrop-filter: blur(6px);
}

.duckydoubles-menu-toggle-label {
    font-size: 14px;
    font-weight: 600;
}

.duckydoubles-menu-toggle-icon {
    font-size: 20px;
    line-height: 1;
}

.duckydoubles-menu-toggle--active,
.duckydoubles-menu-toggle--active:hover {
    background: #ffffff;
    color: #2d1a52;
}

.duckydoubles-menu-toggle--active .duckydoubles-menu-toggle-icon,
.duckydoubles-menu-toggle--active .duckydoubles-menu-toggle-label {
    color: inherit;
}
