/* ======================================
   CactusIO Store - Mobile Optimized Styles
   Verbesserte mobile Benutzererfahrung
====================================== */

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

html, body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'fatfrank', 'Arial', sans-serif;
    background: var(--store-dark);
    color: var(--store-text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    /* Mobile optimiert */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    max-width: 100vw; /* Verhindert horizontales Scrollen */
}

/* ======================================
   LOADING SCREEN - Mobile Optimiert
====================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--store-dark) 0%, var(--store-surface) 50%, var(--store-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Mobile: Reduzierte Animationen für bessere Performance */
@media (max-width: 768px) {
    .orb {
        filter: blur(80px);
        opacity: 0.2;
    }
    
    .orb-1 {
        width: 250px;
        height: 250px;
        animation-duration: 12s;
    }
    
    .orb-2 {
        width: 400px;
        height: 400px;
        animation-duration: 15s;
    }
    
    .orb-3 {
        width: 200px;
        height: 200px;
        animation-duration: 10s;
    }
}

/* Mobile: Vereinfachte Partikel-Animation */
@media (max-width: 576px) {
   
    
}

.auth-background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.3;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--store-primary);
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 650px;
    height: 650px;
    background: var(--store-secondary);
    top: 60%;
    right: 2%;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--store-primary-light);
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--store-primary);
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-right: 3px solid var(--store-secondary);
    animation-duration: 2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-bottom: 3px solid var(--store-primary-light);
    animation-duration: 2.5s;
}

.loader-dots {
    display: flex;
    gap: 0.5rem;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: var(--store-primary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ======================================
   MAIN LAYOUT - Erweiterte Container
====================================== */
.store-main {
    min-height: 100vh;
    width: 100%;
    background: var(--store-dark);
    padding-top: 100px;
    position: relative;
    margin: 0;
    box-sizing: border-box;
    max-width: 100vw; /* Verhindert horizontales Scrollen */
    overflow-x: hidden;
}

.container {
    max-width: 1900px; /* Erhöht von 1400px auf 1900px */
    margin: 0 auto;
    padding: 0 3rem; /* Erhöht von var(--space-lg) für mehr Abstand */
    width: 100%;
    box-sizing: border-box;
}

/* ======================================
   HERO SECTION - Vollbild ohne Ränder mit verbessertem Abstand
====================================== */
.store-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    box-sizing: border-box;
    padding: 0 2rem; /* Zusätzlicher Abstand im Hero */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--store-surface) 0%, var(--store-dark) 50%, var(--store-surface-darker) 100%);
    transform-style: preserve-3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(104, 190, 124, 0.15) 0%, transparent 70%);
    animation: overlayFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes overlayFloat {
    0%, 100% { transform: translateZ(0px) scale(1); }
    50% { transform: translateZ(10px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px; /* Leicht erhöht für bessere Lesbarkeit */
    padding: 0 var(--space-lg);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--store-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--store-primary), var(--store-primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(104, 190, 124, 0.3);
    animation: titleFloat 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px) translateZ(0px); }
    50% { transform: translateY(-5px) translateZ(10px); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--store-text-muted);
    margin-bottom: var(--space-lg);
    animation: subtitleFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
    transform-style: preserve-3d;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px) translateZ(0px); }
    50% { transform: translateY(-3px) translateZ(5px); }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--store-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-bounce);
    transform-style: preserve-3d;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    border: 1px solid var(--store-glass-border);
    /* Mobile Touch-Optimierung */
    min-height: 44px;
    cursor: pointer;
    user-select: none;
}

.hero-features .feature:hover {
    transform: translateY(-3px) translateZ(5px);
    color: var(--store-primary);
    background: rgba(104, 190, 124, 0.1);
    box-shadow: var(--shadow-md);
}

.hero-features .feature i {
    color: var(--store-primary);
    font-size: 1.1rem;
    transition: var(--transition-bounce);
}

.hero-features .feature:hover i {
    transform: scale(1.2) rotateY(15deg);
}

/* ======================================
   SECTION TITLES mit verbessertem Spacing
====================================== */
.section-title {
    font-size: 3.5rem;
    color: var(--store-primary);
    text-align: center;
    margin-bottom: 4rem; /* Erhöhter Abstand unter Titeln */
    position: relative;
    text-shadow: 0 0 15px rgba(104, 190, 124, 0.3);
    transform-style: preserve-3d;
    padding: 0 1rem; /* Seitlicher Abstand für Titel */
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(104, 190, 124, 0.3);
    z-index: -1;
    transform: translateX(-5px) translateY(5px) translateZ(-10px);
    filter: blur(3px);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--store-primary), var(--store-primary-hover));
    margin: var(--space-md) auto 0;
    border-radius: 2px;
    box-shadow: var(--store-glow-primary);
    animation: lineFloat 2s ease-in-out infinite;
}

@keyframes lineFloat {
    0%, 100% { transform: translateZ(0px); }
    50% { transform: translateZ(5px); }
}

/* ======================================
   PAGINATION - Mobile Optimiert mit verbessertem Spacing
====================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem; /* Erhöhter Abstand zwischen Pagination Buttons */
    margin-top: 3rem;
    perspective: 1000px;
    flex-wrap: wrap;
    padding: 0 1rem; /* Zusätzlicher Abstand */
}

.pagination-btn {
    background: var(--store-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--store-glass-border);
    color: var(--store-text);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    transform-style: preserve-3d;
    min-width: 44px; /* Mobile Touch-Target */
    min-height: 44px; /* Mobile Touch-Target */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    touch-action: manipulation; /* Mobile Optimierung */
    -webkit-tap-highlight-color: transparent; /* iOS Tap-Highlight entfernen */
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--store-primary);
    color: var(--store-dark);
    transform: translateY(-2px) translateZ(3px);
    box-shadow: var(--shadow-md);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    color: var(--store-text-muted);
    font-size: 0.9rem;
    margin: 0 1rem;
    font-family: Arial, sans-serif;
    white-space: nowrap;
}

/* ======================================
   NOTIFICATION TOAST - Mobile Optimiert
====================================== */
.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--store-surface);
    border: 1px solid var(--store-glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-toast);
    transform: translateX(400px);
    transition: transform var(--transition-normal);
    display: none; /* Standardmäßig versteckt */
    align-items: center;
    gap: var(--space-md);
    max-width: 400px;
    backdrop-filter: blur(var(--glass-backdrop-blur));
    -webkit-backdrop-filter: blur(var(--glass-backdrop-blur));
}

.notification-toast.show {
    display: flex; /* Sichtbar machen */
    transform: translateX(0);
}

.notification-toast.warning {
    border-left: 4px solid var(--store-warning);
    background: linear-gradient(135deg, 
        rgba(255, 152, 0, 0.1) 0%, 
        rgba(255, 152, 0, 0.05) 100%);
}

.notification-toast.error {
    border-left: 4px solid var(--store-error);
    background: linear-gradient(135deg, 
        rgba(244, 67, 54, 0.1) 0%, 
        rgba(244, 67, 54, 0.05) 100%);
}

.notification-toast.success {
    border-left: 4px solid var(--store-success);
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.1) 0%, 
        rgba(76, 175, 80, 0.05) 100%);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    transform-style: preserve-3d;
}

.toast-icon {
    color: var(--store-success);
    font-size: 1.2rem;
    transition: var(--transition-spring);
}

.notification-toast.show .toast-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0% { transform: scale(0) rotateZ(-180deg); }
    50% { transform: scale(1.2) rotateZ(-90deg); }
    100% { transform: scale(1) rotateZ(0deg); }
}

.toast-message {
    color: var(--store-text);
    font-weight: var(--font-weight-medium);
}

/* ======================================
   MODAL BASE - Mobile Optimiert
====================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--store-glass);
    backdrop-filter: blur(var(--glass-backdrop-blur));
    -webkit-backdrop-filter: blur(var(--glass-backdrop-blur));
    border: 1px solid var(--store-glass-border);
    border-radius: var(--radius-xl);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: calc(var(--z-modal) + 1);
    transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--store-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    color: var(--store-text);
    width: 44px; /* Mobile Touch-Target */
    height: 44px; /* Mobile Touch-Target */
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.modal-close:hover {
    background: var(--store-error);
    color: var(--store-text);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--space-2xl);
    font-family: Arial, sans-serif;
}

/* ======================================
   ERWEITERTE MOBILE RESPONSIVE DESIGN - Container Anpassungen
====================================== */

/* Allgemeine Vollbild-Regeln */
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Verhindere horizontales Scrollen */
body, .store-main, .container {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Große Bildschirme (1200px+) */
@media (min-width: 1200px) {
    .container {
        padding: 0 4rem; /* Noch mehr Abstand auf großen Bildschirmen */
    }
}

/* Sehr große Bildschirme (1600px+) */
@media (min-width: 1600px) {
    .container {
        padding: 0 5rem; /* Maximaler Abstand auf sehr großen Bildschirmen */
    }
}

/* Große Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem; /* Angepasst für Tablets */
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .store-hero {
        height: 50vh;
        min-height: 350px;
        margin-bottom: 4rem;
    }
}

/* Kleine Tablets und große Smartphones */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem; /* Mobile Abstand */
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .store-main {
        padding-top: 80px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .store-hero {
        height: 45vh;
        min-height: 300px;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 1rem; /* Reduzierter Hero-Abstand */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-features {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .hero-features .feature {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        min-height: 44px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .notification-toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
        min-width: auto;
        bottom: 1rem;
        padding: 1rem;
        width: calc(100vw - 2rem);
    }
    
    .pagination-info {
        margin: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* 3D Effekte für Mobile deaktivieren für bessere Performance */
    .hero-content,
    .hero-features .feature,
    .pagination-btn {
        transform: none !important;
        transform-style: flat !important;
    }
    
    .hero-features .feature:hover,
    .pagination-btn:hover {
        transform: translateY(-2px) !important;
        transform-style: flat !important;
    }
    
    /* Animationen reduzieren */
    .hero-title,
    .hero-subtitle,
    .hero-overlay {
        animation: none;
    }
    
    .section-title::after {
        animation: none;
    }
}

/* Standard Smartphones */
@media (max-width: 576px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .store-main {
        padding-top: 70px;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }
    
    .container {
        padding: 0 0.75rem; /* Minimaler aber ausreichender Abstand */
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .store-hero {
        height: 40vh;
        min-height: 280px;
        margin-bottom: 2rem;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .hero-features .feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.3rem;
        justify-content: center;
        padding: 0 0.5rem;
    }
    
    .pagination-btn {
        min-width: 40px;
        min-height: 40px;
        font-size: 0.8rem;
    }
    
    .pagination-info {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        order: -1;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85vh;
        border-radius: var(--radius-lg);
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .notification-toast {
        right: 0.5rem;
        left: 0.5rem;
        bottom: 0.5rem;
        transform: translateY(100px);
        border-radius: var(--radius-sm);
        max-width: calc(100vw - 1rem);
        width: auto;
    }

    .notification-toast.show {
        display: flex;
        transform: translateY(0);
    }
    
    .loader-logo {
        width: 80px;
        height: 80px;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }
}

/* Sehr kleine Smartphones */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-features .feature {
        max-width: 260px;
        font-size: 0.85rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .notification-toast {
        padding: 0.8rem;
    }
}

/* Landscape Modus für Smartphones */
@media (max-width: 768px) and (orientation: landscape) {
    .store-hero {
        height: 60vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-features .feature {
        width: auto;
        max-width: none;
    }
}

/* ======================================
   ACCESSIBILITY IMPROVEMENTS
====================================== */
.pagination-btn:focus,
.modal-close:focus,
.hero-features .feature:focus {
    outline: 2px solid var(--store-primary);
    outline-offset: 2px;
}

/* Hochkontrast-Modus */
@media (prefers-contrast: high) {
    .notification-toast,
    .modal-content {
        border: 2px solid var(--store-text);
    }
    
    .pagination-btn,
    .hero-features .feature {
        border: 2px solid var(--store-text);
    }
}

/* Reduzierte Bewegungen für Benutzer mit Bewegungsempfindlichkeit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-overlay,
    .section-title::after,
    .orb,
    .floating-particles .particle {
        animation: none !important;
    }
}

/* ======================================
   PERFORMANCE OPTIMIZATIONS FÜR MOBILE
====================================== */
.hero-content,
.notification-toast,
.modal-content,
.pagination-btn,
.hero-features .feature {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* GPU-Beschleunigung für Touch-Interaktionen */
@media (max-width: 768px) {
    .hero-features .feature,
    .pagination-btn,
    .modal-close {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

/* Dark Mode Optimierungen für Mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    body {
        background: #0a0a0a;
    }
    
    .notification-toast {
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .modal-content {
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(20px);
    }
}

/* ======================================
   ZUSÄTZLICHE CONTENT WRAPPER KLASSEN
====================================== */

/* Content Wrapper für extra Sicherheit */
.content-wrapper {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Zusätzliche Klasse für Sections die den vollen Container nutzen sollen */
.full-width-section {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 3rem;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .content-wrapper,
    .full-width-section {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper,
    .full-width-section {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .content-wrapper,
    .full-width-section {
        padding: 0 0.75rem;
    }
}