@charset "utf-8";
/* === QUANTUM CSS - DIGITALE METAMORPHOSE - FINALE VERSION === */

:root {
    --quantum-blue: #001aff;
    --deep-space: #000a2c;
    --nebula-silver: #e0e5ec;
    --chrome-white: #ffffff;
    --neon-pulse: #00f6ff;
    --void-black: #000000;
    --holographic-gradient: linear-gradient(135deg, var(--quantum-blue), var(--neon-pulse));
    --transition-speed: 0.8s;
    --animation-timing: cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === CURSOR SYSTEM === */
html, body {
    cursor: none !important;
}

*, *::before, *::after {
    cursor: none !important;
}

.cursor {
    position: fixed !important;
    width: 8px !important;
    height: 8px !important;
    background: #001aff !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 0 10px #001aff !important;
}

.cursor-follower {
    position: fixed !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #00f6ff !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 99998 !important;
    opacity: 0.8 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate(-50%, -50%) !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    html, body, *, *::before, *::after {
        cursor: auto !important;
    }
    .cursor, .cursor-follower {
        display: none !important;
    }
}

/* === BODY === */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--deep-space);
    color: var(--chrome-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 15%, rgba(0, 26, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 85%, rgba(0, 246, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
    background: var(--holographic-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pulse);
}

/* === LOADING SCREEN === */
.quantum-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-space);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.quantum-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    max-width: 400px;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 900;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 20px rgba(0, 246, 255, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(0, 246, 255, 0.8)); }
}

.loader-progress {
    width: 100%;
    height: 4px;
    background: rgba(0, 246, 255, 0.2);
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background: var(--holographic-gradient);
    width: 0%;
    transition: width 0.3s ease;
}

.loader-text {
    font-size: 1rem;
    color: var(--nebula-silver);
    opacity: 0.8;
}

/* === NAVIGATION === */
.nav-quantum {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-quantum.sticky,
.nav-quantum.scrolled {
    backdrop-filter: blur(20px);
    background: rgba(0, 10, 44, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 246, 255, 0.2);
    padding: 15px 40px;
}

.quantum-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quantum-logo:hover {
    letter-spacing: 0.25em;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--chrome-white);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-pulse);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(0);
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-pulse);
}

/* Shop Link Special */
.nav-link[href*="shop"] {
    background: var(--holographic-gradient);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--deep-space) !important;
    font-weight: 700;
    animation: shopPulse 2s infinite;
}

@keyframes shopPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 246, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 246, 255, 0.8); }
}

.nav-link[href*="shop"]::before {
    display: none;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 18px;
    justify-content: space-between;
    position: relative;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--neon-pulse);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Search */
.nav-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--chrome-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: var(--neon-pulse);
    transform: scale(1.1);
}

.search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: rgba(0, 10, 44, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.search-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#search-input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 4px;
    color: var(--chrome-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#search-input:focus {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.3);
}

#search-input::placeholder {
    color: var(--nebula-silver);
    opacity: 0.6;
}

.search-results {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(0, 246, 255, 0.1);
}

.search-result-title {
    font-weight: 600;
    color: var(--chrome-white);
    margin-bottom: 5px;
}

.search-result-type {
    font-size: 0.8rem;
    color: var(--neon-pulse);
    text-transform: uppercase;
}

/* === BUTTONS === */
.quantum-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--neon-pulse);
    color: var(--chrome-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    border-radius: 4px;
}

.quantum-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-pulse);
    z-index: -1;
    transition: left 0.4s ease;
}

.quantum-button:hover {
    color: var(--deep-space);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 246, 255, 0.3);
}

.quantum-button:hover::before {
    left: 0;
}

.quantum-button.primary {
    border-color: var(--quantum-blue);
}

.quantum-button.primary::before {
    background: var(--quantum-blue);
}

.quantum-button.secondary {
    border-color: var(--nebula-silver);
    color: var(--nebula-silver);
}

.quantum-button.secondary::before {
    background: var(--nebula-silver);
}

.quantum-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quantum-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.quantum-button:disabled::before {
    left: -100%;
}

/* === HERO SECTION === */
.quantum-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 40px;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.1;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 246, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--nebula-silver);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* === QUANTUM SPIRAL === */
.quantum-spiral {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.quantum-spiral canvas {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    animation: spiralRotate 20s linear infinite;
}

@keyframes spiralRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.quantum-spiral::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--neon-pulse);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: var(--quantum-blue);
    animation: spiralSpin 3s linear infinite;
    opacity: 0.6;
}

@keyframes spiralSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === SECTIONS === */
.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    color: var(--chrome-white);
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--neon-pulse);
}

/* === PROJECTS === */
.quantum-projects {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 40px;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    aspect-ratio: 6/5;
    overflow: hidden;
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
    background: rgba(0, 10, 44, 0.3);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pulse);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(30%) brightness(0.8);
}

.project-card:hover .project-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--chrome-white);
    font-weight: 600;
}

.project-category {
    font-size: 0.9rem;
    color: var(--neon-pulse);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.project-description {
    font-size: 0.95rem;
    color: var(--nebula-silver);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: rgba(0, 246, 255, 0.2);
    color: var(--neon-pulse);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 246, 255, 0.3);
}

/* === PAGE HEADER === */
.page-header {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, rgba(0, 10, 44, 0.9), rgba(0, 26, 76, 0.8));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--nebula-silver);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* === FILTERS === */
.project-filters,
.hardware-filters {
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-tab {
    background: transparent;
    border: 2px solid rgba(0, 246, 255, 0.3);
    color: var(--chrome-white);
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--holographic-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--neon-pulse);
    color: var(--deep-space);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 246, 255, 0.3);
}

.filter-tab:hover::before,
.filter-tab.active::before {
    left: 0;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    background: rgba(0, 10, 44, 0.6);
    border: 2px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    color: var(--chrome-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
}

.search-box input::placeholder {
    color: var(--nebula-silver);
    opacity: 0.6;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--neon-pulse);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: var(--quantum-blue);
    transform: translateY(-50%) scale(1.1);
}

.sort-controls select {
    background: rgba(0, 10, 44, 0.6);
    border: 2px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    color: var(--chrome-white);
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-controls select:focus {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
}

.sort-controls option {
    background: var(--deep-space);
    color: var(--chrome-white);
}

/* === HARDWARE STYLES === */
.quantum-hardware-page {
    min-height: 100vh;
    padding: 80px 40px;
    position: relative;
}

.hardware-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.hardware-card {
    position: relative;
    background: rgba(0, 10, 44, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.hardware-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pulse);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.2);
}

.hardware-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.hardware-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%) brightness(0.8);
}

.hardware-card:hover .hardware-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.hardware-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hardware-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--chrome-white);
    font-weight: 600;
}

.hardware-category {
    color: var(--neon-pulse);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hardware-description {
    font-size: 0.95rem;
    color: var(--nebula-silver);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-available {
    background: rgba(0, 200, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 200, 0, 0.4);
}

.status-reserved {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.status-sold {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.rarity-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--holographic-gradient);
    color: var(--deep-space);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* === COOKIE NOTICE === */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 10, 44, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 246, 255, 0.2);
    padding: 20px;
    z-index: 5000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--nebula-silver);
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 20px;
    border: 2px solid;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: inherit;
}

.cookie-accept {
    border-color: var(--neon-pulse);
    color: var(--neon-pulse);
}

.cookie-accept:hover {
    background: var(--neon-pulse);
    color: var(--deep-space);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 246, 255, 0.3);
}

.cookie-decline {
    border-color: var(--nebula-silver);
    color: var(--nebula-silver);
}

.cookie-decline:hover {
    background: var(--nebula-silver);
    color: var(--deep-space);
    transform: translateY(-2px);
}

.cookie-info {
    color: var(--neon-pulse);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cookie-info:hover {
    text-decoration: underline;
    color: var(--quantum-blue);
}

/* === PROCESS SECTION === */
.quantum-process {
    min-height: 100vh;
    position: relative;
    padding: 100px 40px;
    display: flex;
    align-items: center;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.process-items {
    position: relative;
    padding-left: 50px;
}

.process-line {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 2px;
    background: var(--holographic-gradient);
    z-index: 1;
}

.process-item {
    position: relative;
    margin-bottom: 100px;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item-inner {
    position: relative;
    padding-left: 80px;
    transition: all 0.4s ease;
}

.process-number {
    position: absolute;
    top: 0;
    left: -50px;
    width: 60px;
    height: 60px;
    background: var(--holographic-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.5);
    color: var(--deep-space);
}

.process-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--chrome-white);
    font-weight: 600;
}

.process-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--nebula-silver);
    max-width: 800px;
}

/* === TECHNOLOGY SECTION === */
.quantum-tech-matrix {
    min-height: 100vh;
    position: relative;
    padding: 100px 40px;
    display: flex;
    align-items: center;
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: rgba(0, 10, 44, 0.5);
    border: 1px solid rgba(0, 246, 255, 0.2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 8px;
}

.tech-item:hover {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 30px rgba(0, 246, 255, 0.2);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-pulse);
    transition: all 0.4s ease;
}

.tech-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--chrome-white);
    font-weight: 600;
}

.tech-category {
    font-size: 0.8rem;
    color: var(--neon-pulse);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.tech-description {
    font-size: 0.9rem;
    color: var(--nebula-silver);
    line-height: 1.5;
}

/* === REFERENCES SECTION === */
.quantum-references {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(45deg, rgba(0, 10, 44, 0.7), rgba(0, 26, 76, 0.7));
}

.references-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reference-item {
    position: relative;
    background: rgba(0, 10, 44, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reference-item:hover {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
    transform: translateY(-5px);
}

.reference-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chrome-white);
    margin-bottom: 8px;
}

.reference-industry {
    font-size: 0.9rem;
    color: var(--neon-pulse);
    margin-bottom: 5px;
}

.reference-period {
    font-size: 0.8rem;
    color: var(--nebula-silver);
    opacity: 0.7;
}

/* === STATS SECTION === */
.quantum-stats,
.project-stats,
.hardware-stats {
    padding: 100px 40px;
    background: rgba(0, 0, 0, 0.2);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 10, 44, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pulse);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--chrome-white);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === CTA SECTION === */
.quantum-cta,
.projects-cta,
.hardware-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--deep-space), rgba(0, 26, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--nebula-silver);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--holographic-gradient);
    border: none;
    border-radius: 50%;
    color: var(--deep-space);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 246, 255, 0.5);
}

/* === FLASH MESSAGES === */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 5000;
    max-width: 400px;
}

.flash-message {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    backdrop-filter: blur(20px);
    border: 1px solid;
    animation: slideInRight 0.5s ease-out;
    font-size: 0.9rem;
}

.flash-message.flash-success {
    background: rgba(0, 200, 0, 0.1);
    border-color: rgba(0, 200, 0, 0.3);
    color: #00ff00;
}

.flash-message.flash-error {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.flash-message.flash-warning {
    background: rgba(255, 200, 0, 0.1);
    border-color: rgba(255, 200, 0, 0.3);
    color: #ffd700;
}

.flash-message.flash-info {
    background: rgba(0, 246, 255, 0.1);
    border-color: rgba(0, 246, 255, 0.3);
    color: var(--neon-pulse);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    margin-left: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.flash-close:hover {
    opacity: 1;
}

/* === MODALS === */
.project-modal,
.hardware-modal,
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 10, 44, 0.95);
    backdrop-filter: blur(15px);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: rgba(0, 10, 44, 0.9);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--neon-pulse);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--neon-pulse);
    color: var(--deep-space);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    padding: 30px;
}

/* === FORMS === */
.contact-form,
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--neon-pulse);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form input,
.contact-form textarea,
.inquiry-form input,
.inquiry-form textarea {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 4px;
    color: var(--chrome-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: var(--nebula-silver);
    opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--neon-pulse);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.2);
}

.contact-form textarea,
.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FOOTER === */
.quantum-footer {
    padding: 100px 40px 30px;
    position: relative;
    background: var(--deep-space);
    overflow: hidden;
    margin-top: 100px;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--holographic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nebula-silver);
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--chrome-white);
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--neon-pulse);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-item {
    margin-bottom: 15px;
}

.footer-link {
    color: var(--nebula-silver);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--neon-pulse);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 246, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-pulse);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-link {
    color: var(--chrome-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-pulse);
}

.contact-text {
    color: var(--nebula-silver);
    font-size: 0.95rem;
    line-height: 1.4;
}

.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: var(--nebula-silver);
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright-links {
    display: flex;
    gap: 30px;
}

.copyright-link {
    color: var(--nebula-silver);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.copyright-link:hover {
    color: var(--neon-pulse);
    opacity: 1;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .projects-grid,
    .hardware-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 10, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .project-filters,
    .hardware-filters {
        position: static;
        padding: 40px 20px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-quantum {
        padding: 15px 20px;
    }
    
    .quantum-hero,
    .quantum-projects,
    .quantum-process,
    .quantum-tech-matrix,
    .quantum-references,
    .quantum-stats,
    .quantum-cta {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .projects-grid,
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .filter-tabs {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quantum-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--neon-pulse);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --quantum-blue: #0040ff;
        --neon-pulse: #00ffff;
        --nebula-silver: #ffffff;
    }
}
/* === HEADER WARENKORB STYLES === */
/* Diese Stile sollten in die quantum.css eingefügt werden */

/* Navigation Controls Container */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Header Cart Styles */
.nav-cart {
    position: relative;
}

.cart-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.cart-toggle:hover {
    background: rgba(0, 246, 255, 0.1);
    color: var(--accent-color);
    transform: scale(1.05);
}

.cart-toggle:active {
    transform: scale(0.95);
}

.cart-icon {
    font-size: 1.5rem;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: cartBadgePulse 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cart-badge.show {
    display: flex;
}

@keyframes cartBadgePulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: var(--accent-color);
    color: var(--bg-primary);
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 0, 0, 0.1);
    color: var(--error-color);
}

.cart-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty p {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.cart-empty span {
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    animation: cartItemSlideIn 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

@keyframes cartItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.item-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-name {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.item-quantity {
    color: var(--text-secondary);
}

.item-price {
    font-weight: bold;
    color: var(--accent-color);
}

.item-remove {
    position: absolute;
    top: 0.5rem;
    right: 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.item-remove:hover {
    background: rgba(255, 0, 0, 0.1);
    color: var(--error-color);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
}

.total-amount {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-actions button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-cart-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.view-cart-btn:hover {
    background: var(--bg-primary);
    border-color: var(--accent-color);
}

.checkout-btn {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.checkout-btn:hover {
    background: rgba(0, 246, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 246, 255, 0.3);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 300px;
    font-size: 0.9rem;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification.error {
    background: var(--error-color);
}

.cart-notification.info {
    background: var(--info-color);
}

/* Overlay for mobile */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
    
    .nav-controls {
        gap: 0.5rem;
    }
    
    .cart-toggle {
        padding: 0.25rem;
    }
    
    .cart-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .cart-header {
        padding: 1rem;
    }
    
    .cart-content {
        padding: 0.5rem;
    }
    
    .cart-footer {
        padding: 1rem;
    }
    
    .cart-item {
        padding: 0.75rem 0;
    }
    
    .item-name {
        font-size: 0.85rem;
    }
    
    .item-details {
        font-size: 0.75rem;
    }
}

/* Animation for cart updates */
@keyframes cartUpdate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cart-toggle.updated {
    animation: cartUpdate 0.3s ease;
}

/* Loading state */
.cart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.cart-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

/* Custom scrollbar for cart content */
.cart-content::-webkit-scrollbar {
    width: 6px;
}

.cart-content::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.cart-content::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.cart-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}