/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
 
.logo-gradient {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #D83F87 0%, #8b5cf6 50%, #44318D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    transition: opacity 0.2s ease;
}
 
.logo:hover .logo-gradient {
    opacity: 0.85;
}
 
/* ===== NAV DESKTOP ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
 
.nav-list a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.75);
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}
 
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
 
.nav-list a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
 
.nav-list a:hover::after {
    transform: scaleX(1);
}
 
/* CTA nav button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: linear-gradient(135deg, #D83F87, #44318D);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: var(--transition);
    white-space: nowrap;
}
 
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,63,135,0.45);
}
 
/* ===== BURGER ===== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1200;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
 
.burger:hover {
    background: rgba(255,255,255,0.08);
}
 
.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
 
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* ===== BTN-BUY ===== */
.btn-buy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, #D83F87, #44318D);
    transition: var(--transition);
}
 
.btn-buy:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(216,63,135,0.5);
}
 
.btn-buy .sub-text {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.65;
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0;
}
 
/* ===== STORE BUTTONS ===== */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border: 1px solid rgba(216,63,135,0.4);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
}
 
.store-btn:hover {
    border-color: var(--pink);
    background: rgba(216,63,135,0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,63,135,0.2);
}
 
/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 992px) {
    .burger {
        display: flex;
    }
 
    .menu-contact-info {
        display: none;
    }
 
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(360px, 100vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        background: rgba(13, 8, 30, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255,255,255,0.07);
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
        padding: 80px 32px 40px;
    }
 
    .nav-menu.active {
        right: 0;
    }
 
    /* Mobile menu overlay bg */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background:
            radial-gradient(ellipse at 30% 20%, rgba(216,63,135,0.12), transparent 60%),
            radial-gradient(ellipse at 70% 80%, rgba(68,49,141,0.15), transparent 60%);
        pointer-events: none;
    }
 
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }
 
    .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
 
    .nav-list li:first-child {
        border-top: 1px solid rgba(255,255,255,0.05);
    }
 
    .nav-list a {
        display: block;
        padding: 18px 24px;
        font-size: 18px;
        letter-spacing: 2px;
        color: rgba(255,255,255,0.85);
        border-radius: 0;
    }
 
    .nav-list a::after {
        display: none;
    }
 
    .nav-list a:hover {
        color: var(--pink);
        background: rgba(216,63,135,0.06);
    }
 
    .nav-cta {
        margin-top: 32px;
        padding: 14px 36px;
        font-size: 15px;
    }
}
 
/* ===== BODY NO-SCROLL ===== */
body.no-scroll {
    overflow: hidden;
}
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.store-btn {
    width: 48px;
    height: 48px;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* hover эффект */
.store-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(216, 63, 135, 0.4);
}
/* ===== STORE ICONS (HEADER) ===== */
.store-buttons-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-buttons-header a {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-buttons-header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-buttons-header a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216,63,135,0.4);
}
@media (max-width: 992px) {
    .store-buttons-header {
        margin-top: 20px;
    }
}
.top-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: flex-end;
}

.top-icons a {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.top-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}.top-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: flex-end;
}

.top-icons a {
    width: 52px;
    height: 52px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.top-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}   
@media (max-width: 768px) {


    .top-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-top: 12px;
    }
}
