* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Rajdhani", sans-serif;
    background: #050812;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050812;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loader-inner {
    text-align: center;
}
.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top-color: #00ffff;
    border-right-color: #ff00ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 7.5px rgba(0, 255, 255, 0.1);
}
.loader-text {
    font-family: "Orbitron", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}
.header.scrolled::before {
    opacity: 1;
}
.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-actions > .btn-icon,
.header-actions > .lang-toggle,
.header-actions > .header-balance {
    height: 40px;
    box-sizing: border-box;
}
.header-actions > .btn-icon,
.header-actions > .lang-toggle {
    min-width: 40px;
}
.support-wrapper {
    position: relative;
}
.notifications-wrapper {
    position: relative;
}
.notifications-btn {
    position: relative;
}
.notifications-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255, 51, 102, 0.2);
    color: #ff3366;
    font-size: 0.7rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}
.notifications-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: rgba(16, 22, 52, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.75rem;
    display: grid;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    z-index: 12;
}
.notifications-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.notifications-header {
    font-weight: 700;
    color: #00ffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.notifications-list {
    display: grid;
    gap: 0.5rem;
    max-height: 280px;
    overflow: auto;
    padding-right: 4px;
}
.notification-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: border 0.2s ease, transform 0.2s ease;
    color: #fff;
}
.notification-item:hover {
    border-color: rgba(0, 255, 255, 0.35);
    transform: translateY(-1px);
}
.notification-item.is-read {
    opacity: 0.65;
}
.notification-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}
.notification-meta {
    color: #8b9dc3;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}
.notification-empty {
    color: #8b9dc3;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.75rem 0.5rem;
}
.support-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: rgba(16, 22, 52, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.5rem;
    display: grid;
    gap: 0.25rem;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    z-index: 10;
}
.support-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.support-menu a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}
.support-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header-balance {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0 0.85rem;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.disputes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.disputes-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b9dc3;
    font-weight: 600;
}
.disputes-filter select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 10px;
    padding: 0.35rem 0.75rem;
    font-weight: 600;
}
.header-balance svg {
    width: 18px;
    height: 18px;
    color: #00ffff;
    align-self: center;
    display: block;
}
.header-balance .balance-amount {
    font-family: "Orbitron", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #00ffff;
    letter-spacing: 0.05em;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transform: translateY(7px);
    align-self: center;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
.header-balance:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-1px);
}
.header-balance:active {
    transform: translateY(0);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: #ffffff;
}
.logo svg {
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
}
.logo-text {
    letter-spacing: 0.1em;
}
.logo-text .highlight {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.nav {
    display: flex;
    gap: 2rem;
}
.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b9dc3;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover, .nav-link.active {
    color: #00ffff;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn-primary {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #050812;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 7.5px rgba(0, 255, 255, 0.1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(0, 255, 255, 0.3), inset 0 0 12.5px rgba(0, 255, 255, 0.1);
}
.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}
.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 5px rgba(0, 255, 255, 0.1);
}
.btn-full {
    width: 100%;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.btn-icon {
    background: transparent;
    border: none;
    color: #8b9dc3;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.btn-icon:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}
.btn-icon svg {
    display: block;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.lang-toggle .lang-code {
    font-family: "Orbitron", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #00ffff;
}
.btn-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.btn-mobile-menu span {
    width: 24px;
    height: 2px;
    background: #00ffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ff00ff, #ff3366);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    display: none;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.5), 0 0 16px rgba(255, 0, 255, 0.3), inset 0 0 4px rgba(255, 0, 255, 0.1);
}

.page {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
    animation: fadeIn 0.5s ease;
}
.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bg::before, .hero-bg::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}
.hero-bg::before {
    background: #00ffff;
    top: -200px;
    left: -200px;
    animation: float 8s ease-in-out infinite;
}
.hero-bg::after {
    background: #ff00ff;
    bottom: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite reverse;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-family: "Orbitron", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title .title-line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}
.hero-title .title-line:nth-child(1) {
    animation-delay: 0.2s;
}
.hero-title .title-line:nth-child(2) {
    animation-delay: 0.4s;
}
.hero-title .title-line:nth-child(3) {
    animation-delay: 0.6s;
}
.hero-title .title-line.highlight {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}
.hero-subtitle {
    font-size: 1.5rem;
    color: #8b9dc3;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.8s ease 0.8s forwards;
    opacity: 0;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeIn 0.8s ease 1s forwards;
    opacity: 0;
}
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeIn 0.8s ease 1.2s forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}
.stat-item .stat-number {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}
.stat-item .stat-label {
    color: #8b9dc3;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features {
    padding: 8rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}
.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #00ffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card .feature-icon svg {
    width: 100%;
    height: 100%;
}
.feature-card h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}
.feature-card p {
    color: #8b9dc3;
    line-height: 1.8;
}

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.page-title {
    font-family: "Orbitron", sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.catalog-sidebar {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 120px;
    overflow: visible;
    z-index: 5;
}
.catalog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-bar {
    position: relative;
    flex: 1;
    max-width: 500px;
}
.search-bar svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #5a6a8f;
}
.search-bar input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-bar input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 5px rgba(0, 255, 255, 0.1);
}
.search-bar input::placeholder {
    color: #5a6a8f;
}

.filter-group {
    margin-bottom: 2rem;
}
.filter-group h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-option:hover {
    background: rgba(255, 255, 255, 0.05);
}
.filter-option input[type=radio],
.filter-option input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #00ffff;
    cursor: pointer;
}
.filter-option span {
    color: #8b9dc3;
    font-size: 1rem;
}

.sort-select {
    padding: 0.75rem 1.5rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sort-select:focus {
    outline: none;
    border-color: #00ffff;
}
.sort-select option {
    background: #151b35;
    color: #ffffff;
}

.results-count {
    color: #8b9dc3;
    font-size: 1rem;
}

.products-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Desktop: 4 products per row */
@media (min-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Ultra-wide: 6 products per row */
@media (min-width: 1600px) {
    .container {
        max-width: 1700px;
    }
    .products-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
@media (min-width: 1900px) {
    .container {
        max-width: 1900px;
    }
    .hero-title {
        font-size: 6rem;
    }
    .hero-subtitle {
        font-size: 1.75rem;
    }
    .hero-stats {
        gap: 3rem;
    }
}
@media (min-width: 2200px) {
    .container {
        max-width: 2100px;
    }
    .hero-title {
        font-size: 6.5rem;
    }
    .hero-subtitle {
        font-size: 2rem;
    }
}


.product-card {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: translateZ(0);
    contain: layout paint;
    position: relative;
}
.product-card:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 7.5px rgba(0, 255, 255, 0.1);
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-card:hover .product-overlay {
    opacity: 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    position: relative;
    z-index: 1;
}
.product-image .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 2;
}
.product-card:hover .product-overlay,
.product-image:hover .product-overlay,
.product-overlay:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-buy-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(21, 27, 53, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
}

.qty-btn {
    background: transparent;
    border: none;
    color: #00ffff;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}
.qty-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.1);
}
.qty-btn:active {
    transform: scale(0.9);
}

.qty-input {
    width: 45px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input[type=number] {
    -moz-appearance: textfield;
}
.qty-input:focus {
    outline: none;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.8rem;
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    font-family: "Orbitron", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.product-description {
    color: #8b9dc3;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.product-rating .rating-star {
    color: #ffff00;
}
.product-rating .sales-count {
    color: #5a6a8f;
}

.product-price {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}
.about-subtitle {
    font-size: 1.3rem;
    color: #8b9dc3;
    max-width: 800px;
    margin: 0 auto;
}
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}
.about-block {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}
.about-block h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}
.about-block p {
    color: #8b9dc3;
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-stats-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 7.5px rgba(0, 255, 255, 0.1);
}
.stat-card .stat-big-number {
    font-family: "Orbitron", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
}
.stat-card .stat-big-label {
    color: #8b9dc3;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features-list {
    list-style: none;
}
.features-list li {
    color: #8b9dc3;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.features-list li:last-child {
    border-bottom: none;
}
.rules-list {
    list-style: none;
    margin-top: 1rem;
}
.rules-list li {
    color: #8b9dc3;
    font-size: 1.05rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rules-list li:last-child {
    border-bottom: none;
}

.auth-container {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.auth-box {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    animation: scaleIn 0.5s ease;
}
.auth-box:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-header h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}
.auth-header p {
    color: #8b9dc3;
}
.verify-email {
    margin-top: 0.5rem;
    color: #e6f6ff;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.verify-code-input {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    text-align: center;
    font-weight: 700;
}

.auth-form .form-group,
.account-form .form-group {
    margin-bottom: 1.5rem;
}
.auth-form .form-group label,
.account-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8b9dc3;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.auth-form .form-group input,
.account-form .form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.account-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    resize: vertical;
}
.auth-form .form-group input:focus,
.account-form .form-group input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 5px rgba(0, 255, 255, 0.1);
}
.account-form .form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 5px rgba(0, 255, 255, 0.1);
}
.auth-form .form-group input::placeholder,
.account-form .form-group input::placeholder {
    color: #5a6a8f;
}
.auth-form .form-options,
.account-form .form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #8b9dc3;
}
.checkbox-label input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #00ffff;
    cursor: pointer;
}

.link {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.link:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.auth-footer p {
    color: #8b9dc3;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}
.account-sidebar {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    position: sticky;
    top: 120px;
}
.account-menu {
    margin-bottom: 2rem;
}
.account-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #8b9dc3;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
}
.account-menu-item svg {
    width: 20px;
    height: 20px;
}
.account-menu-item:hover, .account-menu-item.active {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}
.account-content {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    min-height: 500px;
}
.account-tab {
    display: none;
    animation: fadeIn 0.5s ease;
}
.account-tab.active {
    display: block;
}
.account-tab h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 2rem;
}
.account-tab h3 {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    margin: 2rem 0 1rem;
}
.seller-apply-card {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}
.seller-apply-subtitle {
    color: #8b9dc3;
    margin-bottom: 1rem;
}
.seller-apply-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ffff;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.25);
    margin-bottom: 1.5rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.orders-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.orders-pagination .page-btn {
    background: rgba(21, 27, 53, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #8b9dc3;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}
.orders-pagination .page-btn:hover {
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.25);
}
.orders-pagination .page-btn.active {
    color: #0f131a;
    background: linear-gradient(135deg, #76e4ff, #b86bff);
    border-color: transparent;
}
.orders-pagination .page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}
.orders-pagination .page-ellipsis {
    color: #6b7aa5;
    padding: 0 0.2rem;
}
.admin-pagination {
    margin-top: 1rem;
    justify-content: flex-start;
}

.order-card {
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.order-card:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 5px rgba(0, 255, 255, 0.1);
}

.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-number {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    color: #00ffff;
}

.order-date {
    color: #5a6a8f;
    font-size: 0.9rem;
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.order-status.status-completed {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}
.order-status.status-pending {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    color: #8b9dc3;
    padding: 0.5rem 0;
}

.order-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-total {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
}

.purchases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
}
.modal-content {
    position: relative;
    background: #151b35;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3), inset 0 0 15px rgba(0, 255, 255, 0.1);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}
.modal-close {
    background: transparent;
    border: none;
    color: #8b9dc3;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-close:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.cart-modal {
    max-width: 500px;
}

.cart-items {
    padding: 2rem;
    max-height: 400px;
    overflow-y: auto;
}
.cart-items::-webkit-scrollbar {
    width: 8px;
}
.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.cart-items::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.5);
    border-radius: 4px;
}
.cart-items::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.7);
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 12px;
    margin-bottom: 1rem;
}
.cart-item-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.cart-item-info {
    flex: 1;
}
.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.cart-item-price {
    font-family: "Orbitron", sans-serif;
    color: #8b9dc3;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.cart-item-total {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
}
.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}
.cart-item-remove {
    background: transparent;
    border: none;
    color: #5a6a8f;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-item-remove:hover {
    color: #ff3366;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(21, 27, 53, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
}

.quantity-btn {
    background: transparent;
    border: none;
    color: #00ffff;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.quantity-btn:hover {
    color: #00ffff;
    transform: scale(1.1);
}
.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-value {
    font-family: "Orbitron", sans-serif;
    color: #ffffff;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 0.95rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: #5a6a8f;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-footer .cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.cart-footer .cart-total .total-price {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.checkout-modal {
    max-width: 600px;
}

.checkout-form {
    padding: 2rem;
}
.checkout-form h3 {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    margin: 2rem 0 1rem;
}
.checkout-form h3:first-child {
    margin-top: 0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(21, 27, 53, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.payment-method input[type=radio] {
    width: 20px;
    height: 20px;
    accent-color: #00ffff;
    cursor: pointer;
}
.payment-method:hover {
    border-color: rgba(0, 255, 255, 0.5);
}
.payment-method span {
    font-size: 1rem;
    color: #8b9dc3;
}

.checkout-summary {
    background: rgba(21, 27, 53, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: #8b9dc3;
}
.summary-row.summary-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}
.summary-row.summary-total span:last-child {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: #151b35;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    z-index: 3000;
    transform: translateY(200%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
}
.toast.active {
    transform: translateY(0);
    opacity: 1;
}
.toast-success {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3), inset 0 0 7.5px rgba(0, 255, 136, 0.1);
}
.toast-error {
    border-color: #ff3366;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5), 0 0 30px rgba(255, 51, 102, 0.3), inset 0 0 7.5px rgba(255, 51, 102, 0.1);
}
.toast-warning {
    border-color: #ffaa00;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.5), 0 0 30px rgba(255, 170, 0, 0.3), inset 0 0 7.5px rgba(255, 170, 0, 0.1);
}
.toast-info {
    border-color: #00ffff;
}

@media (max-width: 1200px) {
    .catalog-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .header-content {
        flex-wrap: wrap;
    }
    .header-actions {
        flex-wrap: wrap;
    }
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-stats {
        gap: 2rem;
    }
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-sidebar {
        position: static;
        margin-bottom: 2rem;
        max-height: 60vh;
        overflow: auto;
    }
    .catalog-header {
        gap: 1rem;
    }
    .header-actions {
        gap: 0.75rem;
    }
    .header-balance {
        padding: 0.4rem 0.75rem;
    }
    .account-layout {
        grid-template-columns: 1fr;
    }
    .account-sidebar {
        position: static;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .header-content {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .header-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 0.5rem;
    }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 0.5rem;
        display: none;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    }
    .nav.active {
        display: flex;
    }
    .btn-mobile-menu {
        display: flex;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .catalog-header {
        flex-direction: column;
        align-items: stretch;
    }
    .search-bar {
        max-width: 100%;
    }
    .catalog-sidebar {
        max-height: 55vh;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-large {
        grid-template-columns: 1fr;
    }
    .modal-content {
        width: 95%;
    }
    .auth-box {
        padding: 2rem;
    }
    .account-content {
        padding: 2rem;
    }
    .account-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .account-menu-item {
        margin-bottom: 0;
        padding: 0.75rem;
        justify-content: center;
    }
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .header {
        padding: 1rem 0;
    }
    .header-balance {
        width: 100%;
        justify-content: center;
    }
    .account-menu {
        grid-template-columns: 1fr;
    }
    .feature-card,
    .auth-box,
    .account-content {
        padding: 1.5rem;
    }
    .btn {
        padding: 0.75rem 1.5rem;
    }
}
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #5a6a8f;
    font-size: 1.2rem;
    grid-column: 1/-1;
}

.balance-overview {
    margin-bottom: 3rem;
}

.balance-card {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.balance-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}
.balance-card h3 {
    color: #8b9dc3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10%, 10%) scale(1.1);
    }
}
.balance-amount {
    font-family: "Orbitron", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.balance-description {
    color: #5a6a8f;
}

.deposit-methods {
    margin-bottom: 3rem;
}
.deposit-methods h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.deposit-subtitle {
    color: #8b9dc3;
    margin-bottom: 2rem;
}

.crypto-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.crypto-method-card {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.crypto-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
}
.crypto-method-card .crypto-icon {
    margin-bottom: 1.5rem;
}
.crypto-method-card .crypto-icon svg,
.crypto-method-card .crypto-icon img {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}
.crypto-method-card h4 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.crypto-method-card .crypto-rate {
    color: #8b9dc3;
    margin-bottom: 1.5rem;
}
.crypto-method-card .crypto-rate span {
    color: #00ffff;
    font-weight: 700;
}

.transaction-history h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 2rem;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-item {
    background: rgba(21, 27, 53, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.transaction-item:hover {
    border-color: rgba(0, 255, 255, 0.5);
}
.transaction-item.deposit {
    border-left: 3px solid #00ff88;
}
.transaction-item.purchase {
    border-left: 3px solid #ff3366;
}

.transaction-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.deposit .transaction-icon {
    background: rgba(0, 255, 136, 0.1);
}
.purchase .transaction-icon {
    background: rgba(255, 51, 102, 0.1);
}

.transaction-info {
    flex: 1;
}

.transaction-description {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.transaction-date {
    color: #5a6a8f;
    font-size: 0.9rem;
}

.transaction-amount {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}
.transaction-amount.deposit {
    color: #00ff88;
}
.transaction-amount.purchase {
    color: #ff3366;
}

.crypto-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.crypto-inline img {
    width: 16px;
    height: 16px;
}

.empty-message {
    text-align: center;
    padding: 3rem;
    color: #5a6a8f;
}

/* ========== DISPUTES CHAT ========== */
.dispute-modal-content {
    max-width: 760px;
    padding: 0 1.75rem 1.5rem;
}
.dispute-modal-content .modal-header {
    margin: 0 -1.75rem 1.25rem;
    padding: 1.75rem;
}
.dispute-status {
    color: #8b9dc3;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.dispute-messages {
    max-height: 320px;
    overflow: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}
.dispute-empty {
    color: #5a6a8f;
    text-align: center;
    padding: 1rem;
}
.dispute-message {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    max-width: 80%;
}
.dispute-message.me {
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
}
.dispute-message.them {
    align-self: flex-start;
    margin-right: auto;
}
.dispute-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
}
.dispute-message.me .dispute-bubble {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.25);
}
.dispute-meta {
    font-size: 0.75rem;
    color: #6b7aa5;
    margin-top: 0.25rem;
}
.dispute-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: start;
}
.dispute-input-row textarea {
    resize: vertical;
    min-height: 70px;
    padding: 0.75rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
}
.dispute-actions {
    margin-top: 0.75rem;
}
.dispute-hint {
    margin-top: 0.75rem;
    color: #6b7aa5;
    font-size: 0.85rem;
}
.disputes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dispute-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dispute-item-title {
    font-weight: 700;
    color: #ffffff;
}
.dispute-item-meta {
    color: #8b9dc3;
    font-size: 0.9rem;
}
.dispute-item-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.dispute-status-pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}
.dispute-status-pill.open {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.12);
}
.dispute-status-pill.closed {
    color: #8b9dc3;
    background: rgba(139, 157, 195, 0.12);
}
@media (max-width: 768px) {
    .dispute-input-row {
        grid-template-columns: 1fr;
    }
    .dispute-message {
        max-width: 100%;
    }
    .dispute-item-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .dispute-item-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ========== 404 PAGE ========== */
.error-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}
.error-card {
    background: rgba(21, 27, 53, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}
.error-code {
    font-family: "Orbitron", sans-serif;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    margin-bottom: 1rem;
}
.error-title {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.error-subtitle {
    color: #8b9dc3;
    max-width: 520px;
    margin: 0 auto 2rem;
}
.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.error-hint {
    margin-top: 1.5rem;
    color: #6b7aa5;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .error-card {
        padding: 2.25rem;
    }
    .error-code {
        font-size: 4rem;
    }
    .error-title {
        font-size: 1.6rem;
    }
}

.deposit-modal {
    max-width: 700px;
}
.deposit-title {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.deposit-title-icon {
    width: 24px;
    height: 24px;
}

.deposit-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.deposit-qr canvas {
    width: 100%;
    border-radius: 8px;
    background: white;
    padding: 1rem;
}

.deposit-info h3 {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    margin-bottom: 1rem;
}

.deposit-address {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.deposit-address input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: monospace;
    font-size: 0.9rem;
}
.deposit-address button {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    color: #00ffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.deposit-address button:hover {
    background: rgba(0, 255, 255, 0.2);
}

.deposit-details {
    margin-bottom: 2rem;
}
.deposit-details p {
    padding: 0.5rem 0;
    color: #8b9dc3;
}
.deposit-details p strong {
    color: #ffffff;
}

.deposit-warning {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid #ffaa00;
    color: #ffaa00;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.deposit-status {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(21, 27, 53, 0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}
.status-indicator.pending {
    color: #ffaa00;
}
.status-indicator.confirmed {
    color: #00ff88;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    animation: blink 1.5s ease-in-out infinite;
}
.confirmed .status-dot {
    animation: none;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.balance-payment-info {
    padding: 1.5rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.balance-payment-info h3 {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    margin-bottom: 1rem;
}

.current-balance-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}
.current-balance-display .user-balance {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.orders-container #ordersContainer .empty-message, .ordersContainer #ordersContainer .empty-message {
    text-align: center;
    padding: 3rem;
    color: #5a6a8f;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.breadcrumbs a {
    color: #8b9dc3;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumbs a:hover {
    color: #00ffff;
}

.breadcrumb-separator {
    color: #5a6a8f;
}

.breadcrumb-current {
    color: #00ffff;
}

.product-details-layout {
    margin-bottom: 4rem;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.thumbnail:hover, .thumbnail.active {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 7.5px rgba(0, 255, 255, 0.1);
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-category-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.product-details-title {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.product-details-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-stars {
    font-size: 1.2rem;
}

.rating-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff;
}

.sales-count-details {
    color: #8b9dc3;
    font-size: 0.95rem;
}

.product-details-price {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.product-details-description {
    color: #8b9dc3;
    line-height: 1.8;
}
.product-details-description h3 {
    font-family: "Orbitron", sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.product-details-description h4 {
    font-family: "Orbitron", sans-serif;
    color: #00ffff;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}
.product-details-description p {
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.product-features li {
    display: flex;
    align-items: center;
    color: #8b9dc3;
    font-size: 1rem;
}

.product-details-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.related-products-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.related-products-section .section-title {
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-gallery {
        position: static;
    }
    .product-details-title {
        font-size: 2rem;
    }
    .price-amount {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.8rem;
    }
    .product-details-title {
        font-size: 1.5rem;
    }
    .price-amount {
        font-size: 2rem;
    }
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* ========== ENHANCED PRODUCT DETAILS PAGE ========== */

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.main-image:hover .image-zoom-hint {
    opacity: 1;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Product Info */
.product-details-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-sku {
    color: #5a6a8f;
    font-size: 0.9rem;
}

.product-details-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

.reviews-count {
    color: #5a6a8f;
}

.product-details-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.price-old {
    font-size: 1.5rem;
    color: #5a6a8f;
    text-decoration: line-through;
}

.price-discount {
    background: #ff3366;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
}

.product-short-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8b9dc3;
}

.quantity-selector-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector-detail label {
    font-weight: 600;
    color: #8b9dc3;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

#detailQuantity {
    width: 80px;
    height: 40px;
    text-align: center;
    background: rgba(21, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.product-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #8b9dc3;
}

.guarantee-item svg {
    color: #00ffff;
    flex-shrink: 0;
}

/* Tabs */
.product-tabs {
    margin-top: 4rem;
}

.tabs-header {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #8b9dc3;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #00ffff;
}

.tab-btn.active {
    color: #00ffff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
}

.tabs-content {
    padding: 3rem 0;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.tab-panel h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #00ffff;
    margin: 2rem 0 1rem;
}

.tab-panel p {
    color: #8b9dc3;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.included-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.included-list li {
    color: #8b9dc3;
    padding: 0.75rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 8px;
}

.feature-item svg {
    color: #00ffff;
    flex-shrink: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
    padding: 1rem;
    color: #8b9dc3;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #fff;
    width: 200px;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 12px;
}

.reviews-average {
    text-align: center;
}

.average-rating {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.rating-stars-large {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.reviews-count-text {
    color: #5a6a8f;
}

.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-bar span:first-child {
    width: 40px;
    color: #8b9dc3;
}

.review-bar .bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.review-bar .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.5s ease;
}

.review-bar span:last-child {
    width: 40px;
    text-align: right;
    color: #5a6a8f;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    padding: 2rem;
    background: rgba(21, 27, 53, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: #fff;
}

.review-date {
    color: #5a6a8f;
    font-size: 0.9rem;
}

.review-rating {
    font-size: 1.2rem;
}

.review-text {
    color: #8b9dc3;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.verified-purchase {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-guarantees {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .included-list {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-details-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* ===== Purchases: show as a single list (not columns) ===== */
.purchases-list{
    display:flex;
    flex-direction:column;
    gap:0;
}

.purchases-list .purchase-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1.25rem;
    padding:1.1rem 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.purchases-list .purchase-meta{
    min-width:0;
}

.purchases-list .purchase-title{
    color:#00ffff;
    font-weight:700;
    margin-bottom:0.25rem;
    word-break:break-word;
}

.purchases-list .purchase-sub{
    color:#8b9dc3;
    font-size:0.9rem;
    display:flex;
    flex-wrap:wrap;
    gap:0.5rem;
    align-items:center;
}

.purchases-list .purchase-dot{
    opacity:0.7;
}

.purchases-list .purchase-actions{
    display:flex;
    gap:0.75rem;
    flex-wrap:wrap;
    justify-content:flex-end;
}

@media (max-width: 768px){
    .purchases-list .purchase-item{
        flex-direction:column;
        align-items:flex-start;
    }
    .purchases-list .purchase-actions{
        width:100%;
    }
    .purchases-list .purchase-actions .btn{
        width:100%;
    }
}

/* ===== Purchases: show as a single list (not columns) ===== */
.purchases-list{
    display:flex;
    flex-direction:column;
    gap:0;
}

.purchases-list .purchase-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1.25rem;
    padding:1.1rem 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.purchases-list .purchase-meta{
    min-width:0;
}

.purchases-list .purchase-title{
    color:#00ffff;
    font-weight:700;
    margin-bottom:0.25rem;
    word-break:break-word;
}

.purchases-list .purchase-sub{
    color:#8b9dc3;
    font-size:0.9rem;
    display:flex;
    flex-wrap:wrap;
    gap:0.5rem;
    align-items:center;
}

.purchases-list .purchase-dot{
    opacity:0.7;
}

.purchases-list .purchase-actions{
    display:flex;
    gap:0.75rem;
    flex-wrap:wrap;
    justify-content:flex-end;
}

@media (max-width: 768px){
    .purchases-list .purchase-item{
        flex-direction:column;
        align-items:flex-start;
    }
    .purchases-list .purchase-actions{
        width:100%;
    }
    .purchases-list .purchase-actions .btn{
        width:100%;
    }
}

/* =========================
   Deposit Setup Modal Styles
   affects only #depositSetupModal
   ========================= */

#depositSetupModal .modal-content.deposit-modal{
  width: min(640px, 92vw);
  border-radius: 28px;
  overflow: hidden;
  max-height: 88vh;
  overflow-y: auto;

  background: #f7f7f8;
  border: 1px solid #e2e4e8;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.18),
    0 2px 0 rgba(255,255,255,0.8) inset;
}

#depositSetupModal .modal-header{
  padding: 26px 30px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #eceef2;
}

#depositSetupModal .modal-header h2{
  margin: 0;
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 40px;
  color: #0d0f12;
}

#depositSetupModal .modal-close{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #d9dce2;
  background: #ffffff;
  color: #5b5f67;
  cursor: pointer;
  transition: 0.15s ease;
}
#depositSetupModal .modal-close:hover{
  transform: translateY(-1px);
  border-color: #bfc5d0;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

#depositSetupModal .deposit-setup-body{
  padding: 18px 30px 28px;
}

#depositSetupModal .deposit-brand{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid #e3e6ee;
  border-radius: 18px;
  padding: 10px 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
#depositSetupModal .brand-icon{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e9f8f1;
}
#depositSetupModal .brand-icon img{
  width: 24px;
  height: 24px;
}
#depositSetupModal .brand-title{
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 800;
  color: #0f1116;
  font-size: 1.1rem;
}

#depositSetupModal .deposit-amount-display{
  text-align: center;
  margin: 18px 0 14px;
}
#depositSetupModal .amount-value{
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #0f1116;
}
#depositSetupModal .amount-sub{
  color: #6f747d;
  margin-top: 6px;
}

#depositSetupModal .deposit-timer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e3e6ee;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
#depositSetupModal .timer-label{
  color: #6f747d;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
#depositSetupModal .timer-value{
  color: #1a8f4d;
  font-weight: 800;
  font-size: 1.1rem;
}

#depositSetupModal .deposit-form-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

#depositSetupModal .select-with-icon{
  position: relative;
}
#depositSetupModal .select-icon{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef1f5;
  border: 1px solid #e2e4e8;
}
#depositSetupModal .select-icon img{
  width: 22px;
  height: 22px;
}
#depositSetupModal .net-badge{
  font-weight: 800;
  color: #2c2f35;
  font-size: 0.75rem;
}
#depositSetupModal .select-with-icon select{
  padding-left: 56px;
}

#depositSetupModal .deposit-summary{
  background: #ffffff;
  border: 1px solid #e3e6ee;
  border-radius: 18px;
  padding: 16px;
  margin-top: 18px;
}
#depositSetupModal .summary-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eef1f5;
  color: #6f747d;
}
#depositSetupModal .summary-row:last-child{
  border-bottom: none;
}
#depositSetupModal .summary-row span:last-child{
  color: #0f1116;
  font-weight: 800;
}

#depositSetupModal .deposit-actions{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

#depositSetupModal .deposit-content{
  padding: 26px;
}

#depositSetupModal .form-group{
  max-width: 420px;
}

#depositSetupModal .form-group label{
  display: block;
  margin-bottom: 8px;
  font-family: "Rajdhani", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f747d;
}

#depositSetupModal input,
#depositSetupModal select{
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;

  background: #ffffff;
  border: 1px solid #dfe3ea;
  color: #121417;

  outline: none;
  transition: 0.15s ease;
}

#depositSetupModal input::placeholder{
  color: #9aa0aa;
}

#depositSetupModal input:focus,
#depositSetupModal select:focus{
  border-color: #b8bdc6;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

/* prettier select */
#depositSetupModal select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.5) 50%),
    linear-gradient(135deg, rgba(0,0,0,0.5) 50%, transparent 50%),
    linear-gradient(to right, #e2e4e8, #e2e4e8);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    calc(100% - 40px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 18px;
  background-repeat: no-repeat;
}

/* buttons area */
#depositSetupModal .btn{
  border-radius: 16px;
  padding: 12px 18px;
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#depositSetupModal .btn::before{
  display: none;
}

#depositSetupModal .btn-primary{
  min-width: 180px;
  background: #111214;
  color: #ffffff;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.25);
}
#depositSetupModal .btn-primary:hover{
  transform: translateY(-1px);
}

/* cancel button look */
/* сделать кнопки одинаковыми по размеру */
#depositSetupModal #createDepositBtn,
#depositSetupModal #cancelDepositBtn{
    height: 64px;           /* высота */
    padding: 0 26px;        /* боковые отступы */
    min-width: 210px;       /* ширина */
    font-size: 18px;
    border-radius: 18px;
}
#depositSetupModal #cancelDepositBtn{
    background: #ffffff;
    color: #111214;
    border: 1px solid #dfe3ea;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
#depositSetupModal #cancelDepositBtn:hover{
    transform: translateY(-1px);
}

/* responsive: buttons stack on small screens */
@media (max-width: 520px){
  #depositSetupModal .modal-header h2{ font-size: 34px; }
  #depositSetupModal .deposit-setup-body{ padding: 16px; }
  #depositSetupModal .btn,
  #depositSetupModal .btn-primary{
    width: 100%;
    min-width: unset;
  }
  #depositSetupModal .deposit-actions{
    flex-direction: column;
  }
}
