﻿.multi-range-slider * {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

.multi-range-slider {
    display: flex;
    position: relative;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: 1px 1px 4px #000;
    flex-direction: column;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.multi-range-slider .bar-left {
    border-radius: 10px 0 0 10px;
    padding: 4px 0
}

.multi-range-slider .bar-left,.multi-range-slider .bar-right {
    width: 25%;
    background-color: #f0f0f0;
    box-shadow: inset 0 0 5px #000
}

.multi-range-slider .bar-right {
    border-radius: 0 10px 10px 0
}

.multi-range-slider .bar-inner {
    background-color: lime;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    position: relative;
    border: 1px solid #000;
    justify-content: space-between;
    box-shadow: inset 0 0 5px #000
}

.multi-range-slider .bar-inner-left,.multi-range-slider .bar-inner-right {
    width: 50%
}

.multi-range-slider .thumb {
    background-color: #fff;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.multi-range-slider .thumb:before {
    content: "";
    background-color: inherit;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    box-shadow: 0 0 3px #000,inset 0 0 5px gray;
    border-radius: 50%;
    z-index: 1;
    margin: -8px -12px;
    cursor: pointer
}

.multi-range-slider .input-type-range:focus+.thumb:after {
    content: "";
    position: absolute;
    top: -4px;
    left: -7px;
    width: 11px;
    height: 11px;
    z-index: 2;
    border-radius: 50%;
    border: 1px dotted #000;
    box-shadow: 0 0 5px #fff,inset 0 0 10px #000
}

.multi-range-slider .caption {
    position: absolute;
    bottom: 35px;
    width: 2px;
    height: 2px;
    left: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    display: none
}

.multi-range-slider .thumb .caption * {
    position: absolute;
    min-width: 30px;
    height: 30px;
    font-size: 75%;
    text-align: center;
    line-height: 30px;
    background-color: blue;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 0 5px #000;
    padding: 0 5px;
    white-space: nowrap
}

.multi-range-slider .input-type-range:focus+.thumb .caption,.multi-range-slider .thumb:active .caption {
    display: flex
}

.multi-range-slider .input-type-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none
}

.multi-range-slider .ruler {
    margin: 10px 0 -5px;
    display: flex;
    overflow: hidden
}

.multi-range-slider .ruler .ruler-rule {
    border-left: 1px solid;
    border-bottom: 1px solid;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 5px 0
}

.multi-range-slider .ruler .ruler-rule:last-child {
    border-right: 1px solid
}

.multi-range-slider .ruler .ruler-sub-rule {
    border-left: 1px solid;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 3px 0;
    bottom: 0;
    margin-bottom: -5px
}

.multi-range-slider .ruler .ruler-sub-rule:first-child {
    border-left: none
}

.multi-range-slider .labels {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top: 10px;
    margin-bottom: -20px
}

.multi-range-slider .label {
    font-size: 80%;
    display: flex;
    width: 1px;
    justify-content: center
}

.multi-range-slider .label:first-child {
    justify-content: start
}

.multi-range-slider .label:last-child {
    justify-content: end
}

.multi-range-slider.zero-ranage-margin .thumb-left {
    right: 12px
}

.multi-range-slider.zero-ranage-margin .thumb-right {
    left: 8px
}

.multi-range-slider.disabled {
    border: 1px solid #c8c8c8;
    box-shadow: 1px 1px 4px #b4b4b4;
    color: #b4b4b4
}

.multi-range-slider .bar {
    display: flex
}

.multi-range-slider.disabled .bar-left,.multi-range-slider.disabled .bar-right {
    background-color: #c9c9c9;
    box-shadow: inset 0 0 5px #a0a0a0
}

.multi-range-slider.disabled .bar-inner {
    background-color: #82f382;
    border: 1px solid #959595;
    box-shadow: inset 0 0 5px #676767
}

.multi-range-slider.disabled .thumb {
    background-color: #fff
}

.multi-range-slider.disabled .thumb:before {
    border: 1px solid #c8c8c8;
    box-shadow: 0 0 3px #232323,inset 0 0 5px gray
}

.multi-range-slider.disabled .input-type-range:focus+.thumb:after {
    border: 1px dotted #232323;
    box-shadow: 0 0 5px #fff,inset 0 0 10px #232323
}

.multi-range-slider.disabled .thumb .caption * {
    background-color: #545489;
    color: #c7c7c7;
    box-shadow: 0 0 5px #232323
}

.multi-range-slider-black * {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

.multi-range-slider-black {
    display: flex;
    position: relative;
    background-color: #000;
    border: 1px solid gray;
    padding: 30px 10px 25px;
    flex-direction: column;
    color: #fff;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.multi-range-slider-black .bar {
    display: flex
}

.multi-range-slider-black .bar.active * {
    transition: none
}

.multi-range-slider-black .bar-left {
    width: 25%;
    background-color: gray;
    border-radius: 10px 0 0 10px;
    box-shadow: inset 0 0 5px #000;
    border: 1px solid #000;
    padding: 5px 0
}

.multi-range-slider-black .bar-right {
    width: 25%;
    background-color: gray;
    border-radius: 0 10px 10px 0;
    box-shadow: inset 0 0 5px #000;
    border: 1px solid #000
}

.multi-range-slider-black .bar-inner {
    background-color: lime;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    position: relative;
    border: 1px solid #000;
    justify-content: space-between;
    box-shadow: inset 0 0 5px #000
}

.multi-range-slider-black .bar-inner-left,.multi-range-slider-black .bar-inner-right {
    width: 50%
}

.multi-range-slider-black .thumb {
    background-color: #fff;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.multi-range-slider-black .thumb:before {
    content: "";
    background-color: inherit;
    position: absolute;
    width: 20px;
    height: 30px;
    border: 1px solid #000;
    box-shadow: 0 0 5px #000,inset 0 0 10px gray;
    border-radius: 7px;
    z-index: 1;
    margin: -10px -12px;
    cursor: pointer
}

.multi-range-slider-black .input-type-range:focus+.thumb:after {
    content: "";
    position: absolute;
    top: -6px;
    left: -8px;
    width: 12px;
    height: 22px;
    z-index: 2;
    border-radius: 7px;
    border: 1px dotted #000;
    box-shadow: 0 0 5px #fff,inset 0 0 10px #000
}

.multi-range-slider-black .caption {
    position: absolute;
    bottom: 45px;
    width: 2px;
    height: 2px;
    left: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible
}

.multi-range-slider-black .thumb .caption * {
    position: absolute;
    min-width: 30px;
    height: 30px;
    font-size: 75%;
    text-align: center;
    line-height: 30px;
    background-color: blue;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 0 5px #000;
    padding: 0 5px;
    white-space: nowrap
}

.multi-range-slider-black .input-type-range:focus+.thumb .caption,.multi-range-slider-black .thumb:active .caption {
    display: flex
}

.multi-range-slider-black .input-type-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none
}

.multi-range-slider-black .ruler {
    margin: 10px 0 -5px;
    display: flex;
    overflow: hidden
}

.multi-range-slider-black .ruler .ruler-rule {
    border-left: 1px solid;
    border-bottom: 1px solid;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 5px 0
}

.multi-range-slider-black .ruler .ruler-rule:last-child {
    border-right: 1px solid
}

.multi-range-slider-black .ruler .ruler-sub-rule {
    border-left: 1px solid;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 3px 0;
    bottom: 0;
    margin-bottom: -5px
}

.multi-range-slider-black .ruler .ruler-sub-rule:first-child {
    border-left: none
}

.multi-range-slider-black .labels {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top: 10px;
    margin-bottom: -20px
}

.multi-range-slider-black .label {
    font-size: 80%
}

.multi-range-slider-black.zero-ranage-margin .thumb-left {
    right: 12px
}

.multi-range-slider-black.zero-ranage-margin .thumb-right {
    left: 8px
}

/* FAQ стили */
.faq-answer {
    font-size: 16px;
    line-height: 1.5;
    color: white;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-icon {
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.faq-icon.open {
    color: red;
    transform: rotate(45deg);
}

.faq-icon::before {
    content: '+';
}

.faq-icon.open::before {
    content: '−';
}

/* FAQ Styles - Override existing animations */
div[data-state="closed"][data-orientation="vertical"] {
    transition: none !important;
}

div[data-state="open"][data-orientation="vertical"] {
    transition: none !important;
}

/* Smooth accordion animations */
div[data-state="closed"][data-orientation="vertical"] [role="region"] {
    animation: none !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: hidden !important;
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    transform: scaleY(0) !important;
    transform-origin: top !important;
    display: none !important;
}

div[data-state="open"][data-orientation="vertical"] [role="region"] {
    animation: none !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: visible !important;
    max-height: 1000px !important;
    opacity: 1 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    transform: scaleY(1) !important;
    transform-origin: top !important;
    display: block !important;
}

.mobile-cart-icon {
    display: none !important;
}

/* Discord баннер - бегущая строка на всех размерах */
.sticky.z-50.min-h-18 > div:first-child {
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.sticky.z-50.min-h-18 > div:first-child > div:not(.mobile-cart-icon) {
    animation: scroll-left 15s linear infinite !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.sticky.z-50.min-h-18 > div:first-child > div:not(.mobile-cart-icon) * {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
}

.sticky.z-50.min-h-18 > div:first-child > div:not(.mobile-cart-icon) svg {
    flex-shrink: 0 !important;
    vertical-align: middle !important;
}

.sticky.z-50.min-h-18 > div:first-child > div:not(.mobile-cart-icon) p {
    margin: 0 !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Мобильная версия - дополнительные стили */
@media (max-width: 1023px) {
    .mobile-cart-icon {
        display: block !important;
        width: 24px;
        height: 24px;
        cursor: pointer;
        position: fixed !important;
        right: 20px !important;
        top: 40px !important;
        background: transparent;
        border: none;
        padding: 0;
        outline: none;
        z-index: 100 !important;
        transform: none !important;
    }
    
    .sticky.z-50.min-h-18 > div:first-child {
        padding-right: 60px !important;
        display: flex !important;
        align-items: center !important;
        height: 32px !important;
    }
    
    .sticky.z-50.min-h-18 > div:first-child svg {
        display: none !important;
    }
}

/* Карусель скинов - скролл только на мобильных */
@media (max-width: 1023px) {
    [role="region"][aria-roledescription="carousel"] > div {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
    }
    
    [role="region"][aria-roledescription="carousel"] > div > div {
        display: flex !important;
        flex-wrap: nowrap !important;
    }
}

/* На ПК - скрываем скролл, оставляем стрелки */
@media (min-width: 1024px) {
    [role="region"][aria-roledescription="carousel"] > div {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth !important;
    }
    
    [role="region"][aria-roledescription="carousel"] > div > div {
        display: flex !important;
        flex-wrap: nowrap !important;
    }
    
    /* Делаем стрелки кликабельными на ПК */
    button[class*="absolute"][class*="-left-12"],
    button[class*="absolute"][class*="-right-12"] {
        pointer-events: auto !important;
        cursor: pointer !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    button[class*="absolute"][class*="-left-12"]:not([disabled]),
    button[class*="absolute"][class*="-right-12"]:not([disabled]) {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* Убираем disabled состояние визуально */
    button[class*="absolute"][class*="-left-12"][disabled],
    button[class*="absolute"][class*="-right-12"][disabled] {
        pointer-events: auto !important;
        cursor: pointer !important;
        opacity: 0.5 !important;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Plus/Minus icon styles - Fix the icon issue */
div[data-state="closed"][data-orientation="vertical"] button svg {
    transition: all 0.3s ease !important;
    color: #fff !important; /* White plus by default */
    transform: rotate(0deg) !important;
}

div[data-state="open"][data-orientation="vertical"] button svg {
    transition: all 0.3s ease !important;
    color: #ff0000 !important; /* Red minus when open */
    transform: rotate(45deg) !important; /* Rotate to make it a minus */
}

/* FAQ content text styling */
div[data-orientation="vertical"] [role="region"] div {
    font-family: 'Matrix', 'Courier New', 'Courier', monospace !important;
    font-size: 16px !important;
    line-height: 1.5;
    color: #8f8f8f !important; /* Changed to requested color */
    padding: 20px 20px 20px 40px; /* Left padding to shift text right */
    margin-left: 20px; /* Additional shift right from question */
}

/* Mobile Burger Menu Styles */
@media (max-width: 1023px) {
    /* Burger menu button styles */
    .burger-menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 12px;
        transition: all 0.3s ease;
    }
    
    .burger-menu-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .burger-menu-button:focus {
        outline: 2px solid #4ade80;
        outline-offset: 2px;
    }
    
    /* Burger menu icon styles */
    .burger-menu-icon {
        width: 24px;
        height: 24px;
        color: currentColor;
        transition: all 0.3s ease;
    }
    
    /* Mobile header styles */
    .mobile-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        height: 100%;
        padding: 12px;
    }
    
    .mobile-header .logo-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-header .actions-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none !important;
    }
    
/* Mobile navigation overlay - always positioned */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile navigation panel - always positioned */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    border-right: 1px solid #333;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-panel.active {
    left: 0;
}
    
/* Mobile navigation links - always styled */
.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 40px;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4ade80;
    color: #4ade80;
}

/* Close button for mobile menu - always styled */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
}

/* Desktop styles - hide mobile menu */
@media (min-width: 1024px) {
    .mobile-header {
        display: none !important;
    }
    
    .mobile-nav-overlay,
    .mobile-nav-panel {
        display: none !important;
    }
    
    .desktop-nav {
        display: flex !important;
    }
}

/* Mobile burger button styles - always positioned */
.mobile-burger-btn {
    display: none; /* Hidden by default, shown on mobile */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-burger-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-burger-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke: currentColor;
}

/* Show burger button on mobile */
@media (max-width: 1023px) {
    .mobile-burger-btn {
        display: block !important;
    }
}