.header {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header.active {
    background: rgba(1, 15, 20, 1);
}

.header__row {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__group-1 {
    display: flex;
    align-items: center;
}

.header__group-2 {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__text {
    display: flex;
    flex-direction: column;
}

.header__text p {
    font-size: clamp(0.363125rem, 0.102rem + 0.9283vw, 0.9375rem);
    line-height: clamp(0.48375rem, 0.1355rem + 1.2384vw, 1.25rem);
    letter-spacing: 0.01em;
}

.header__btn {
    padding: 21px 61px;
}

.header__shop-btn,
.header__burger {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll {
    background: rgba(1, 15, 20, 1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    width: max-content;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    text-wrap: nowrap;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    background-color: rgba(7, 7, 7, 1);
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    gap: 4px;
}

.dropdown-menu.active {
    max-height: 600px;
}

.dropdown-menu li a {
    display: block;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.5);
}

.header__dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px 6px 24px;
    background-color: unset;
    color: var(--white-color);
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
    border-radius: 4px;
}

.header__dropdown-btn svg {
    transition: 0.5s ease;
}

.header__dropdown-btn.active {
    background: rgba(255, 255, 255, 0.1);
}

.header__dropdown-btn.active svg {
    transform: rotate(180deg);
}

.header__logo img {
    margin-right: clamp(1px, -0.364rem + 1.52vw, 16px);
    max-width: clamp(79px, 2.068rem + 10.20vw, 180px);
}

.header__icon {
    margin-right: clamp(16px, 0.375rem + 2.22vw, 38px);
}

.header__icon img {
    width: clamp(1.209375rem, 0.3386rem + 3.096vw, 3.125rem);
    height: clamp(1.209375rem, 0.3386rem + 3.096vw, 3.125rem);
}

.header__burger {
    display: none;
    background: unset;
}

.mobile-nav {
    display: none;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: auto;
    background: rgba(1, 15, 20, 1)  ;
    top: -100%;
    left: 0;
    transition: 0.4s ease-in-out;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-nav_active { 
    top: 60px;
}

.mobile-nav__column {
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.mobile__nav ul {
    display: flex;
    flex-direction: column;
}

.mobile__nav li {
    cursor: pointer;
}

.mobile__nav a {
    display: block;
    font-size: 14px;
    text-align: center;
    padding: 12px 8px;
    border-radius: 4px;
}

.mobile__nav a:active {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {

    .header__btn.btn, .header__dropdown-btn, .dropdown {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__row {
        padding: 15px 0;
    }

    .mobile-nav {
        display: block;
    }

    .header__shop-btn img {
        width: 24px;
        height: 24px;
    }
}
