/* ----- БАЗА ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Rajdhani', sans-serif;
    background: #0d0d0d;
    color: #f0f0f0;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- ПЕРЕМЕННЫЕ (красно-белые) ----- */
:root {
    --primary: #e6242b;
    --secondary: #ffffff;
    --accent: #ff4d4d;
    --dark: #0d0d0d;
    --card: #1a1a1a;
    --shadow: 0 0 30px rgba(230, 36, 43, 0.4);
}

/* ----- КНОПКИ ----- */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 60px;
    border: 2px solid var(--secondary);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.btn:hover {
    background: var(--secondary);
    color: #0d0d0d;
    box-shadow: 0 0 60px var(--secondary);
    transform: scale(1.05);
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary);
}
.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 60px var(--secondary);
    color: #0d0d0d;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- ХЭДЕР ----- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--primary);
    padding: 14px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}
.logo i {
    color: var(--primary);
    margin-right: 12px;
}
.logo span {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
nav ul {
    display: flex;
    gap: 30px;
    font-weight: 600;
    font-size: 1.05rem;
}
nav ul li a {
    transition: 0.3s;
    position: relative;
    color: #ccc;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}
nav ul li a:hover,
nav ul li a.active {
    color: #fff;
}
.nav-cta .btn {
    padding: 10px 30px;
    font-size: 0.85rem;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* ----- ГЕРОЙ (главная) ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 30% 40%, #2a0a0a, #0d0d0d 80%);
    overflow: hidden;
}
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.hero-text {
    flex: 1 1 60%;
    text-align: left;
}
.hero-image-wrapper {
    flex: 0 0 200px;
    text-align: center;
}
.hero-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    animation: floatGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(230, 36, 43, 0.4));
    transition: filter 0.3s;
    border: 2px solid var(--primary);
}
.hero-image:hover {
    filter: drop-shadow(0 0 40px rgba(230, 36, 43, 0.8));
}
@keyframes floatGlow {
    0% { transform: translateY(0px) scale(1); filter: drop-shadow(0 0 20px rgba(230,36,43,0.3)); }
    50% { transform: translateY(-10px) scale(1.03); filter: drop-shadow(0 0 40px rgba(230,36,43,0.6)); }
    100% { transform: translateY(0px) scale(1); filter: drop-shadow(0 0 20px rgba(230,36,43,0.3)); }
}
.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(230, 36, 43, 0.3);
    margin-bottom: 0.5rem;
}
.hero-text p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #ddd;
    letter-spacing: 1px;
}
.hero-text .btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ----- СТРАНИЦЫ (общие) ----- */
.page-section {
    padding: 120px 0 80px;
    background: var(--dark);
    min-height: 100vh;
}
.page-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-section .content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}
.page-section .content ul {
    list-style: disc;
    padding-left: 30px;
    margin: 20px 0;
}
.page-section .content ul li {
    margin-bottom: 10px;
}
.rules-block {
    background: var(--card);
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid var(--primary);
    margin-bottom: 30px;
}
.rules-block h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.rules-block .sub {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ----- СЕТКИ (карточки) ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: var(--card);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(230, 36, 43, 0.2);
    transition: 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(230, 36, 43, 0.2);
}
.feature-card i {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--primary);
}
.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 1rem;
    opacity: 0.8;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.news-item {
    background: var(--card);
    padding: 28px;
    border-radius: 16px;
    border-left: 6px solid var(--primary);
    transition: 0.3s;
}
.news-item:hover {
    border-left-color: #fff;
    background: #2a1a1a;
    transform: scale(1.02);
}
.news-item .date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.news-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin: 10px 0 8px;
}
.news-item p {
    opacity: 0.8;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.shop-item {
    background: var(--card);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(230, 36, 43, 0.2);
    transition: 0.3s;
}
.shop-item:hover {
    border-color: var(--primary);
    transform: scale(1.03);
}
.shop-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #111;
    padding: 4px;
    transition: 0.3s;
    margin-bottom: 10px;
}
.shop-item:hover img {
    border-color: #fff;
    transform: scale(1.05);
}
.shop-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.shop-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}
.shop-item .old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1rem;
    margin-right: 10px;
}
.shop-item .badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.shop-item .btn {
    padding: 8px 25px;
    font-size: 0.8rem;
}

/* ----- КОРЗИНА ----- */
#cart-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(230, 36, 43, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cart-toggle:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 0 60px var(--primary);
}
#cart-toggle .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #0d0d0d;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
#cart-panel {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 420px;
    max-height: 75vh;
    background: #1a1a1a;
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    z-index: 9998;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    color: #f0f0f0;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#cart-panel.open {
    display: flex;
    transform: scale(1);
    opacity: 1;
}
#cart-panel::-webkit-scrollbar {
    width: 6px;
}
#cart-panel::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}
#cart-panel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
#cart-panel h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    border-bottom: 2px solid rgba(230,36,43,0.3);
    padding-bottom: 12px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#cart-panel h3 .close-cart {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}
#cart-panel h3 .close-cart:hover {
    color: #fff;
    transform: rotate(90deg);
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    gap: 10px;
}
.cart-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.cart-item-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #111;
    padding: 2px;
}
.cart-item-icon-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.cart-item .name {
    font-weight: 600;
}
.cart-item .qty {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item .qty button {
    background: #333;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item .qty button:hover {
    background: var(--primary);
}
.cart-item .qty span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}
.cart-item .item-total {
    font-weight: 700;
    color: var(--primary);
    min-width: 70px;
    text-align: right;
}
.cart-item .remove-item {
    background: none;
    border: none;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}
.cart-item .remove-item:hover {
    color: var(--primary);
    transform: scale(1.2);
}
.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 18px 0 15px;
    text-align: right;
    border-top: 2px solid var(--primary);
    padding-top: 18px;
}
#cart-panel .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}
#cart-panel .btn-secondary {
    background: transparent;
    border-color: #555;
    color: #aaa;
}
#cart-panel .btn-secondary:hover {
    background: #333;
    border-color: #888;
    color: #fff;
}
.empty-cart {
    text-align: center;
    opacity: 0.6;
    padding: 30px 0;
    font-size: 1.1rem;
}
.empty-cart i {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: var(--primary);
}

/* ----- ПОДВАЛ ----- */
footer {
    background: #0a0a0a;
    padding: 30px 0 10px;
    border-top: 2px solid var(--primary);
    text-align: center;
    font-size: 0.95rem;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(230, 36, 43, 0.2);
}
.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}
.footer-logo span {
    color: #fff;
}
.footer-links a {
    color: #ccc;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
}
.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-payments span {
    color: #aaa;
    font-weight: 600;
    margin-right: 5px;
}
.footer-payments img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: 0.3s;
}
.footer-payments img:hover {
    filter: brightness(1);
    transform: scale(1.05);
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 15px 0 20px;
}
.footer-socials a {
    color: #aaa;
    font-size: 1.8rem;
    transition: 0.3s;
    cursor: pointer;
}
.footer-socials a:hover {
    color: var(--primary);
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--primary);
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 10px;
}
.footer-bottom .info {
    text-align: left;
    line-height: 1.6;
}
.footer-bottom .info strong {
    color: #fff;
}
.footer-bottom .info a {
    color: var(--primary);
    text-decoration: underline;
}
.footer-bottom .info a:hover {
    color: #fff;
}
.footer-bottom .disclaimer {
    text-align: right;
    opacity: 0.7;
    font-size: 0.85rem;
    max-width: 400px;
}
.footer-copy {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(230, 36, 43, 0.15);
    font-size: 0.8rem;
    opacity: 0.5;
}
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom .disclaimer {
        text-align: center;
    }
}

/* ----- МОДАЛЬНЫЕ ОКНА ----- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(230,36,43,0.3);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}
.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}
.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
}
.modal-content p {
    line-height: 1.8;
    opacity: 0.9;
}
.modal-content .btn-secondary {
    background: transparent;
    border-color: #555;
    color: #aaa;
}
.modal-content .btn-secondary:hover {
    background: #333;
    border-color: #888;
    color: #fff;
}

/* ----- СПИННЕР ----- */
.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(230,36,43,0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ----- КНОПКИ РЕЖИМОВ И КАТЕГОРИЙ ----- */
.mode-btn, .category-btn {
    background: var(--card);
    border: 2px solid #444;
    color: #ccc;
    padding: 10px 24px;
    border-radius: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mode-btn:hover, .category-btn:hover {
    border-color: var(--primary);
    color: #fff;
}
.mode-btn.active, .category-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(230,36,43,0.3);
}

/* ----- ВРАЙТЫ ----- */
.wraith-package {
    background: var(--card);
    border: 2px solid #444;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}
.wraith-package:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(230,36,43,0.3);
}
#customWraithAmount::-webkit-inner-spin-button,
#customWraithAmount::-webkit-outer-spin-button {
    opacity: 1;
}
#customWraithAmount {
    background: #1a1a1a;
    border: 1px solid #555;
    color: #fff;
    font-weight: 600;
    outline: none;
}
#customWraithAmount:focus {
    border-color: var(--primary);
}

/* ----- ТОСТЫ ----- */
#toastContainer {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    pointer-events: none;
}
.toast {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    border-left: 6px solid;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    animation: slideInRight 0.4s ease forwards;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.toast i {
    font-size: 1.4rem;
}
.toast-success {
    border-left-color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
}
.toast-success i {
    color: #2ecc71;
}
.toast-error {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.15);
}
.toast-error i {
    color: #e74c3c;
}
.toast-warning {
    border-left-color: #f1c40f;
    background: rgba(241, 196, 15, 0.15);
}
.toast-warning i {
    color: #f1c40f;
}
.toast-fade-out {
    animation: fadeOutRight 0.4s ease forwards;
}
@keyframes slideInRight {
    0% { transform: translateX(120%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOutRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

/* ----- КРАСИВЫЕ КНОПКИ ВАЛЮТ ----- */
.currency-btn {
    background: var(--card);
    border: 2px solid #444;
    color: #ccc;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.currency-btn:hover {
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(230,36,43,0.2);
}
.currency-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 25px rgba(230,36,43,0.4);
    transform: scale(1.05);
}
.currency-btn.active:hover {
    transform: scale(1.08);
}

/* ----- ЗАЩИТА ИЗОБРАЖЕНИЙ ОТ ВЫДЕЛЕНИЯ И ПЕРЕТАСКИВАНИЯ ----- */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img::selection {
    background: transparent;
}

/* ----- АДАПТИВ ----- */
@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text .btn-group {
        justify-content: center;
    }
    .hero-image-wrapper {
        flex: 0 0 120px;
        margin-top: 20px;
    }
    .hero-image {
        max-width: 120px;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-text p {
        font-size: 1.1rem;
    }
    #cart-panel {
        width: 320px;
        right: 10px;
        bottom: 100px;
        padding: 20px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(13,13,13,0.98);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 30px 0;
        gap: 20px;
        border-bottom: 2px solid var(--primary);
    }
    nav ul.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
}
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-image {
        max-width: 90px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    #cart-panel {
        width: 290px;
        right: 5px;
        bottom: 90px;
    }
}
@media (max-width: 900px) {
    .page-section h1 {
        font-size: 2.8rem;
    }
}

/* ----- ПЛАВНАЯ ЗАГРУЗКА СТРАНИЦ ----- */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease;
    opacity: 0;
}
#page-loader.active {
    display: flex;
    opacity: 1;
}
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(230, 36, 43, 0.15);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.loader-text span {
    color: var(--primary);
}
/* ----- МЕТКА "ЭКСКЛЮЗИВ" В КОРЗИНЕ ----- */
.cart-item-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cart-item-exclusive-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(230, 36, 43, 0.1);
    border: 1px solid var(--primary);
    padding: 1px 10px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}
.cart-item .name {
    font-weight: 600;
    font-size: 1rem;
}
.cart-item-mode {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 2px;
}

/* ----- МЕТКА "ЭКСКЛЮЗИВ" В ОФОРМЛЕНИИ ----- */
.checkout-item-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.checkout-item-exclusive-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(230, 36, 43, 0.1);
    border: 1px solid var(--primary);
    padding: 1px 10px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}
.checkout-item-name {
    font-weight: 600;
}
.checkout-item-mode {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 2px;
    background: rgba(255,255,255,0.05);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}