/* Top Header */
.top-header {
    background: #101010;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
    border-bottom: 1px solid #FFD700;
    transition: transform 0.3s ease;
    overflow: hidden; /* Отключаем скролл внутри топ-хедера */
}

.top-header.hidden {
    transform: translateY(-100%);
}

.top-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
    overflow: hidden; /* Отключаем скролл внутри контейнера */
}

.top-header-link {
    display: block;
    transition: transform 0.3s ease;
}

.top-header-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.top-header-link:hover {
    transform: scale(1.1);
}

/* Основные стили header */
.cyber-header {
    background: #101010;
    position: fixed;
    top: 61px;
    width: 100%;
    z-index: 1000;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    transition: top 0.3s ease;
}

.cyber-header.top-hidden {
    top: 0;
}

.cyber-header::before, .cyber-header::after {
    display: none;
}

@keyframes glowYellow {
    0% { box-shadow: 0 0 0px #FFD700; }
    50% { box-shadow: 0 0 15px #FFD700; }
    100% { box-shadow: 0 0 5px #FFD700; }
}

@keyframes glowWhite {
    0% { box-shadow: 0 0 0px #FFD700; }
    50% { box-shadow: 0 0 15px #FFD700; }
    100% { box-shadow: 0 0 5px #FFD700; }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Блоки внутри шапки */
.hamburger-block {
    flex: 0 1 auto;
}

.logo-block {
    flex: 0 1 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.profile-block {
    flex: 0 1 auto;
}

.social-block {
    flex: 0 1 auto;
}

.cyber-user-social {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-left: auto;
}

/* Логотип в центре */
.cyber-logo {
    text-align: center;
}

.logo-img {
    max-width: 200px;
    max-height: 40px;
    width: auto;
    height: auto;
}

/* Секция Hero */
.hero {
    text-align: center;
    color: #FFFFFF;
    padding: 60px 20px; /* Увеличиваем высоту секции */
}

/* Адаптивность */
@media (max-width: 768px) {
    .top-header-container {
        gap: 10px;
    }

    .top-header-img {
        width: 25px;
        height: 25px;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo-img {
        max-width: 150px;
        max-height: 30px;
    }

    .home-container {
        padding: 20px;
    }

    .image-grid {
        min-height: 250px;
    }

    .image-item img {
        width: 120px;
    }

    /* Показываем мобильный нижний блок */
    .mobile-footer {
        display: block;
    }

    /* Скрываем соцсети и уведомления в шапке */
    .social-block, .notifications-block {
        display: none;
    }

    /* Уменьшаем отступы в шапке */
    .cyber-user-social {
        gap: 20px;
    }
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
    width: 12px !important;
}

::-webkit-scrollbar-track {
    background: #151515 !important;
    border-left: 1px solid #FFD700 !important;
}

::-webkit-scrollbar-thumb {
    background: #FFD700 !important;
    border-radius: 6px !important;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.7) !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFFF99 !important;
}

/* Для Firefox */
html, body {
    scrollbar-width: thin !important;
    scrollbar-color: #FFD700 #151515 !important;
}

/* Иконка пользователя и соцсети */
.user-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.user-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.user-icon-img {
    width: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.user-icon-link:hover .user-icon-img {
    transform: scale(1.1);
}

.user-icon-label {
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    transition: transform 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.user-icon-link:hover .user-icon-label {
    transform: translateY(-5px);
}

.social-icons {
    display: flex;
    gap: 40px;
}

.social-icon-link {
    display: block;
    transition: transform 0.3s ease;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon-link:hover .social-icon {
    transform: translateY(-5px);
}

/* Фон тела */
body {
    background-color: #000;
}

/* Custom Checkout Styles */
.custom-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checkout-left, .checkout-right {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.checkout-left h3, .checkout-right h3 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 24px;
}

#customer_details .col-1, #customer_details .col-2 {
    margin-bottom: 20px;
}


