/* Cookie */
button[data-cc="show-preferencesModal"] {
    background: #F0F4F7;
    border: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    padding: 10px;
    display: flex;
    pointer-events: all;
    cursor: pointer;
    transition: ease 0.5s;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 1);
}

button[data-cc="show-preferencesModal"]:hover {
    opacity: 0.7;
}

button[data-cc="show-preferencesModal"] svg {
    width: 25px;
    height: 25px;
}

/* Desktop Header */
header.desktop {
    border-bottom: solid 2px;
    padding: 10px 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header.desktop .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Header */
header.mobile {
    display: none;
    border-bottom: solid 2px;
    padding: 10px 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header.mobile .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    width: 210px;
}

/* Desktop Menu */
.header-menu a {
    color: var(--black);
    text-decoration: none;
    align-items: center;
}

.header-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-menu a.button {
    background: var(--blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.header-menu a.button:hover {
    background: #0056b3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Icons */
.hamburger-icon,
.close-icon {
    width: 24px;
    height: 24px;
    fill: var(--black);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-icon,
.mobile-menu-toggle:hover .close-icon {
    fill: var(--blue);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
}

.mobile-menu-content a {
    color: var(--black);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-menu-content a:last-child {
    border-bottom: none;
}

.mobile-menu-content a:hover {
    color: var(--blue);
}

.mobile-menu-content a.button {
    background: var(--blue);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    margin-top: 10px;
    border-bottom: none;
}

.mobile-menu-content a.button:hover {
    background: #0056b3;
    color: var(--white);
}

/* Responsive Headers */
@media (max-width: 768px) {
    header.desktop {
        display: none;
    }
    
    header.mobile {
        display: block;
    }
    
}

@media (min-width: 769px) {
    header.mobile {
        display: none;
    }
}