:root {
    /* SublioStore Farbschema - Indigo/Lila */
    --primary-green: #6366f1; /* Indigo als Primärfarbe */
    --primary-green-dark: #4f46e5; /* Dunkleres Indigo */
    --primary-green-light: #818cf8; /* Helleres Indigo */
    --accent-color: #6366f1; /* Indigo Akzent */
    --secondary-green: #8b5cf6; /* Lila als Sekundärfarbe */
    --dark-bg: #0a0e0d;
    --dark-bg-secondary: #121716;
    --dark-card: #1a1f1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: rgba(99, 102, 241, 0.2);
    
    /* Service-spezifische Farben */
    --youtube-red: #FF0000;
    --spotify-green: #8b5cf6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e0d 0%, #121716 100%);
    --gradient-card: linear-gradient(145deg, rgba(26, 31, 30, 0.8), rgba(18, 23, 22, 0.9));
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Touch-optimierte Tap-Highlights */
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
}

html {
    scroll-behavior: smooth;
    /* Base font size for responsive scaling */
    font-size: 16px;
    /* Verhindere Doppel-Tap-Zoom auf iOS */
    touch-action: manipulation;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Better text rendering on mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    /* Verhindere Text-Auswahl beim Doppel-Tap */
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Erlaube Text-Auswahl in Eingabefeldern und Content */
input, textarea, [contenteditable], p, li, h1, h2, h3, h4, h5, h6, span {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}

/* Animierter Hintergrund */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--dark-bg);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #d946ef 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 13, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    animation: slideDown 0.5s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-green);
}

.cart-icon-wrapper {
    position: relative;
    margin-left: 0.5rem;
}

.cart-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.cart-btn:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-green);
}

.btn-login:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-register {
    background: var(--gradient-primary);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-user {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    position: relative;
}

.btn-user:hover {
    background: var(--dark-bg-secondary);
    border-color: var(--primary-green);
}

/* User Menu */
.user-menu {
    position: relative;
    margin-left: 0.5rem;
}

.btn-user {
    padding: 0.75rem 1.5rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.user-menu:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--dark-bg-secondary);
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.floating-card {
    width: 200px;
    height: 200px;
    background: var(--gradient-card);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-green);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

/* Products Section */
.products-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

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

.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    animation: fadeInUp 0.6s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow);
}

.product-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-badge.best-value {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.product-badge.ultimate {
    background: linear-gradient(135deg, #8B00FF 0%, #FF00FF 100%);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.savings {
    display: inline-block;
    background: rgba(29, 185, 84, 0.2);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.product-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-features i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.btn-add-cart {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    margin-top: 1rem;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: rgba(18, 23, 22, 0.5);
}

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--dark-bg-secondary);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-green);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
}

.payment-icons i {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--dark-card);
    box-shadow: var(--shadow-lg);
    z-index: 3001; /* Höher als modal-overlay (3000) */
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-cart:hover {
    color: var(--primary-green);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.remove-item {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.remove-item:hover {
    background: rgba(255, 59, 48, 0.2);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cart-total span:last-child {
    color: var(--primary-green);
}

/* Discount Code Section */
.discount-code-section {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(99, 102, 241, 0.05);
}

.discount-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.discount-input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.discount-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.discount-input::placeholder {
    text-transform: none;
}

.btn-apply-discount {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
}

.btn-apply-discount:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.discount-error {
    color: #ff3b30;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-error::before {
    content: '⚠️';
}

.discount-success {
    color: #34c759;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInDown 0.3s ease;
}

/* Cart Summary with Savings */
.cart-summary {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.summary-row.savings {
    color: #34c759;
}

.summary-row.discount {
    color: #ffc107;
}

.summary-row.total {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.savings-text {
    color: #34c759;
    font-weight: 600;
}

.discount-text {
    color: #ffc107;
    font-weight: 600;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #34c759, #30d158);
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--primary-green);
}

.btn-checkout {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    /* backdrop-filter: blur(5px); - ENTFERNT: Blur-Effekt */
    z-index: 3000;
    display: none;
}

.modal-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 3001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 90vw;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-content.modal-large {
    max-width: 700px;
}

.modal-content.modal-chat {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    height: 80vh;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem; /* Space between title and close button */
}

.modal-header h2 {
    color: var(--primary-green);
    flex: 1;
    padding-right: 1rem; /* Extra space from close button */
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem; /* Larger clickable area */
    margin: -0.5rem; /* Compensate padding to maintain visual position */
    flex-shrink: 0; /* Prevent shrinking */
    min-width: 2.5rem; /* Ensure minimum clickable width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-green);
}

/* Forms */
.auth-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.form-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: none;
}

.form-error.active {
    display: block;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.modal-footer {
    padding: 0 2rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.modal-footer a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Chat */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 70%;
    padding: 1rem;
    border-radius: 16px;
    animation: fadeInUp 0.3s ease;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--gradient-primary);
    color: white;
}

.chat-message.admin {
    align-self: flex-start;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
}

.chat-message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.chat-input {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
}

.chat-input input {
    flex: 1;
    padding: 0.875rem;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-send {
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 1.5rem;
}

/* Orders */
.orders-content {
    padding: 2rem;
}

/* Order Statistics Dashboard */
.order-stats-dashboard {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.savings-info {
    background: linear-gradient(135deg, #34c759, #30d158);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    animation: slideInDown 0.5s ease;
}

.savings-info i {
    font-size: 1.5rem;
}

.savings-info strong {
    font-size: 1.1rem;
}

.order-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.order-card:hover {
    border-color: var(--primary-green);
}

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

.order-id {
    font-weight: bold;
    color: var(--primary-green);
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-status.pending {
    background: rgba(255, 159, 10, 0.2);
    color: #ff9f0a;
}

.order-status.approved {
    background: rgba(29, 185, 84, 0.2);
    color: var(--primary-green);
}

.order-status.completed {
    background: rgba(0, 122, 255, 0.2);
    color: #007aff;
}

.order-status.rejected {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
}

/* Status Info Box */
.status-info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid;
}

.status-info-box.pending {
    background: rgba(255, 159, 10, 0.1);
    border-color: #ff9f0a;
    color: #ff9f0a;
}

.status-info-box.approved {
    background: rgba(29, 185, 84, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.status-info-box.completed {
    background: rgba(0, 122, 255, 0.1);
    border-color: #007aff;
    color: #007aff;
}

.status-info-box.rejected,
.status-info-box.cancelled {
    background: rgba(255, 59, 48, 0.1);
    border-color: #ff3b30;
    color: #ff3b30;
}

.status-info-box i {
    font-size: 1.2rem;
}

.order-details {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.order-actions {
    display: flex;
    gap: 1rem;
}

.order-actions .btn {
    flex: 1;
    padding: 0.75rem;
}

/* Payment */
.checkout-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 968px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
}

.checkout-form-section {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

.checkout-form-section h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.checkout-summary-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-summary {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

.checkout-terms {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.checkout-terms label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkout-terms a {
    color: var(--primary-green);
    text-decoration: underline;
}

.checkout-terms a:hover {
    color: var(--primary-green-light);
}

.payment-methods h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-option {
    background: var(--dark-bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-primary);
    font-size: 1rem;
    flex: 1;
}

.payment-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.payment-option.selected {
    border-color: var(--primary-green);
    background: rgba(29, 185, 84, 0.1);
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary-green);
}

.payment-option small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.payment-methods h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

/* Loading */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.loading i {
    font-size: 2rem;
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: scale(1);
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .modal-content {
        width: 95vw;
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .settings-container {
        flex-direction: column;
    }
    
    .settings-nav {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 0;
    }
    
    .settings-nav-btn {
        padding: 1rem;
        white-space: nowrap;
    }
    
    .settings-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Settings Styles */
.settings-container {
    display: flex;
    min-height: 500px;
}

.settings-nav {
    width: 250px;
    border-right: 1px solid var(--border-color);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-nav-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    border-left: 3px solid transparent;
}

.settings-nav-btn:hover {
    color: var(--primary-green);
    background: rgba(29, 185, 84, 0.1);
}

.settings-nav-btn.active {
    color: var(--primary-green);
    background: rgba(29, 185, 84, 0.1);
    border-left-color: var(--primary-green);
}

.settings-nav-btn i {
    width: 20px;
    text-align: center;
}

.settings-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    max-height: 70vh;
}

.settings-section {
    display: none;
}

.settings-section.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.settings-section h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.settings-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.settings-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.settings-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.settings-item-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.settings-item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.settings-item-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(29, 185, 84, 0.2);
    color: var(--primary-green);
}

.danger-zone {
    border-color: rgba(255, 59, 48, 0.3);
    background: rgba(255, 59, 48, 0.05);
}

.danger-zone h4 {
    color: #ff3b30;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-bg);
    border: 2px solid var(--border-color);
    transition: var(--transition-fast);
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-secondary);
    transition: var(--transition-fast);
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
    background-color: white;
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.settings-select {
    padding: 0.75rem;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    min-width: 150px;
}

.settings-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--dark-bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-green);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question i {
    transition: var(--transition-normal);
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Legal Modals */
.legal-modal {
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
}

.legal-content {
    padding: 1rem 0;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-section h4 {
    color: var(--text-primary);
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-green);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-updated {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    border-color: var(--primary-green);
}

.theme-toggle i {
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.theme-toggle .fa-moon {
    color: var(--primary-green);
}

.theme-toggle .fa-sun {
    color: var(--text-secondary);
}

/* Light Mode Variables */
body.light-mode {
    --dark-bg: #f5f5f5;
    --dark-bg-secondary: #ffffff;
    --dark-card: #fafafa;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: rgba(29, 185, 84, 0.3);
}

body.light-mode .theme-toggle .fa-moon {
    color: var(--text-secondary);
}

body.light-mode .theme-toggle .fa-sun {
    color: var(--primary-green);
}

body.light-mode .hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

body.light-mode .product-card {
    background: var(--dark-card);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Loading Animations */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader.warning-mode {
    background: linear-gradient(135deg, rgba(10, 14, 13, 0.98) 0%, rgba(18, 23, 22, 0.98) 100%);
}

.loader-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loader-spinner.small {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 1.5rem;
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
}

.loader-text i {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Loader Progress Bar */
.loader-progress {
    margin-top: 1.5rem;
    width: 300px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Warning Message Styles */
.warning-icon {
    font-size: 5rem;
    color: #ff9800;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.warning-message h2 {
    color: #ff9800;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-message p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.warning-detail {
    color: var(--text-secondary);
    font-size: 1rem !important;
}

.adblocker-instructions {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.adblocker-instructions h3 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.adblocker-instructions ul {
    list-style: none;
    padding: 0;
}

.adblocker-instructions li {
    color: var(--text-primary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.adblocker-instructions li:last-child {
    border-bottom: none;
}

.adblocker-instructions strong {
    color: var(--primary-green);
}

/* Success Message Styles */
.success-icon {
    font-size: 5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-message h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loader-content {
        padding: 1.5rem;
    }
    
    .warning-icon,
    .success-icon {
        font-size: 3rem;
    }
    
    .warning-message h2,
    .success-message h2 {
        font-size: 1.5rem;
    }
    
    .warning-message p,
    .success-message p {
        font-size: 1rem;
    }
    
    .adblocker-instructions {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .adblocker-instructions h3 {
        font-size: 1rem;
    }
    
    .adblocker-instructions li {
        font-size: 0.85rem;
    }
    
    .loader-progress {
        width: 100%;
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--dark-card) 25%,
        rgba(29, 185, 84, 0.1) 50%,
        var(--dark-card) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 400px;
    border-radius: 20px;
}

.skeleton-text {
    height: 20px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-title {
    height: 30px;
    border-radius: 4px;
    width: 60%;
    margin-bottom: 15px;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Install PWA Prompt */
.install-prompt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    z-index: 1000;
    animation: slideInUp 0.5s ease;
    display: none;
}

.install-prompt.show {
    display: block;
}

.install-prompt h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.install-prompt p {
    margin: 0 0 1rem;
    opacity: 0.9;
}

.install-prompt-buttons {
    display: flex;
    gap: 0.5rem;
}

.install-prompt-buttons button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.install-btn {
    background: white;
    color: var(--primary-green);
}

.install-btn:hover {
    transform: scale(1.05);
}

.dismiss-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==================== Advanced Order History Styles ==================== */

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Orders Filters */
.orders-filters {
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: var(--dark-bg-secondary);
    border-color: var(--primary-green);
}

.filter-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.search-box i {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Order Card Enhancements */
.order-card.has-unread {
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.2);
}

.order-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unread-badge {
    background: #ff4444;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* Order Timeline */
.order-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 1rem 0;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    background: var(--dark-card);
    padding: 0 0.5rem;
}

.timeline-step i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-bg-secondary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.timeline-step.completed i {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.timeline-step span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timeline-step.completed span {
    color: var(--primary-green);
    font-weight: 600;
}

/* Order Actions Enhancements */
.order-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.order-actions .btn {
    flex: 1;
    min-width: 120px;
    position: relative;
}

.order-actions .btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-green-dark);
}

.btn-secondary {
    background: var(--dark-bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
}

.btn-danger {
    background: #ff4444;
    color: white;
}

.btn-danger:hover {
    background: #cc0000;
}

.btn-success {
    background: var(--primary-green);
    color: white;
}

.btn-success:hover {
    background: var(--primary-green-dark);
}

.status-note {
    color: var(--text-secondary);
    font-style: italic;
    background: rgba(29, 185, 84, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

/* Order Details Modal */
.order-detail-content {
    max-height: 70vh;
    overflow-y: auto;
}

.detail-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Order Items List */
.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.order-item-detail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-detail .item-info {
    flex: 1;
}

.order-item-detail .item-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.order-item-detail .item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-item-detail .item-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-green);
}

/* Price Breakdown */
.price-breakdown {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    font-size: 1.2rem;
    color: var(--primary-green);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-green);
}

/* Detail Actions */
.detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.detail-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .order-timeline {
        font-size: 0.8rem;
    }
    
    .timeline-step i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .timeline-step span {
        font-size: 0.7rem;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .order-actions .btn {
        width: 100%;
    }
    
    .order-item-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-actions .btn {
        width: 100%;
    }
}

/* Empty State */
.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ==================== MOBILE OPTIMIZATIONS ==================== */

/* Burger Menu Styles - WICHTIG: Große Touch-Fläche! */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 48px;  /* Größere Touch-Fläche */
    height: 48px; /* Größere Touch-Fläche */
    background: rgba(99, 102, 241, 0.1); /* Indigo Hintergrund */
    border: 2px solid #6366f1; /* Indigo Border */
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.3);
    touch-action: manipulation;
    /* Verhindere Doppelklick-Zoom auf iOS */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    /* Bessere Klickbarkeit */
    min-width: 48px;
    min-height: 48px;
    transition: all 0.3s ease;
}

.burger-menu:active {
    transform: scale(0.95);
    background: rgba(99, 102, 241, 0.2);
}

.burger-menu span {
    width: 24px;  /* Zentrierte Linien */
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6); /* Indigo/Purple Gradient */
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    pointer-events: none; /* Verhindere dass Spans Klicks blockieren */
}

.burger-menu.active {
    background: rgba(99, 102, 241, 0.25);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Tablet Optimizations (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .nav-container {
        padding: 1rem 2rem;
    }
    
    /* Produkt-Grid für Tablets */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Hero Section anpassen */
    .hero-content {
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Cards größer für bessere Touch-Targets */
    .product-card {
        padding: 2rem;
    }
    
    .btn {
        min-height: 52px;
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    /* Modal-Größe anpassen */
    .modal-content {
        max-width: 85vw;
    }
    
    .modal-large {
        max-width: 90vw;
    }
}

/* Mobile Cart Improvements */
@media (max-width: 768px) {
    /* Responsive font scaling for smaller screens */
    html {
        font-size: 14px;
    }
    
    /* Burger Menu Display */
    .burger-menu {
        display: flex;
        order: 3; /* Platzierung rechts im Navbar */
    }
    
    /* Navbar Container - bessere Mobile-Anordnung */
    .nav-container {
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    /* Logo kleiner aber sichtbar */
    .logo {
        font-size: 1.1rem;
        order: 1;
        flex-shrink: 0;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
    
    /* Mobile Navigation - Slide-in von rechts */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85vw, 320px); /* Responsive Breite */
        height: 100vh;
        background: var(--dark-bg);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1rem 2rem 1rem; /* Platz für Close-Button oben */
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        order: 4;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Overlay beim Öffnen des Menüs */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Navigation Links - größere Touch-Targets */
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        margin: 0.5rem 0;
        border-radius: 12px;
        background: var(--dark-card);
        border: 1px solid var(--border-color);
        text-align: left;
        font-size: 1rem;
        min-height: 52px; /* Mindest-Touch-Größe */
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .nav-link:active {
        transform: scale(0.98);
        background: var(--primary-green);
        color: var(--dark-bg);
    }
    
    /* Cart Button in Mobile Menu */
    .cart-icon-wrapper {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .cart-btn {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        justify-content: center;
        min-height: 52px;
    }
    
    /* Auth Buttons */
    .auth-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .btn-login,
    .btn-register {
        width: 100%;
        margin: 0;
        min-height: 52px;
        font-size: 1rem;
    }
    
    /* User Menu */
    .user-menu {
        width: 100%;
    }
    
    .btn-user {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        font-size: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
        background: var(--dark-card);
    }
    
    .dropdown-menu a {
        padding: 1rem 1.25rem;
        min-height: 52px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    /* Cart Modal */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-large {
        width: 95%;
        max-width: 95%;
    }
    
    /* Cart Items */
    .cart-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-info {
        width: 100%;
    }
    
    .cart-item-price {
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
    }
    
    /* Produkt-Cards Touch-Optimierung */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .product-card h3 {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .product-features {
        gap: 0.75rem;
    }
    
    .product-features li {
        font-size: 0.95rem;
        padding: 0.5rem;
    }
    
    /* Buttons - Große Touch-Targets */
    .btn {
        min-height: 52px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        -webkit-tap-highlight-color: rgba(29, 185, 84, 0.3);
        touch-action: manipulation;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .btn-add-to-cart,
    .btn-cta {
        width: 100%;
        min-height: 56px;
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        display: none; /* Ausblenden auf Mobile für mehr Platz */
    }
    
    /* Checkout Content */
    .checkout-content {
        padding: 1rem;
    }
    
    .checkout-info {
        padding: 1rem;
    }
    
    .info-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .info-box ol {
        padding-left: 1.2rem;
    }
    
    .info-box li {
        margin-bottom: 0.5rem;
    }
    
    /* Checkout Summary */
    .checkout-summary {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .checkout-summary h3 {
        font-size: 1.1rem;
    }
    
    /* Terms Checkbox */
    .checkout-terms {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkout-terms label {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Submit Button */
    .btn-checkout {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
        min-height: 56px;
    }
    
    /* Modal Header */
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .close-modal {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ */
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding-right: 2.5rem;
    }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
    /* Even smaller font base */
    html {
        font-size: 13px;
    }
    
    .modal-content {
        width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    /* Smaller Modal Header */
    .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .close-modal {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    /* Compact Navigation */
    .nav-links {
        width: 240px;
        padding: 0.75rem;
    }
    
    .nav-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Compact Buttons */
    .btn-checkout {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Smaller Product Cards */
    .product-card {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .checkout-content {
        padding: 0.75rem;
    }
    
    .info-box {
        padding: 0.75rem;
    }
    
    .btn-checkout {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .modal-content {
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .checkout-content {
        padding: 0.5rem;
    }
    
    .info-box {
        padding: 0.75rem;
    }
    
    .info-box ol {
        margin: 0.5rem 0;
    }
    
    .info-box li {
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
    }
    
    .checkout-summary {
        padding: 0.75rem;
    }
    
    .checkout-terms {
        padding: 0.5rem;
    }
    
    .btn-checkout {
        padding: 0.75rem;
        margin-top: 0.5rem;
    }
}

/* Device-specific Optimizations */

/* Small phones (360px - 414px) - iPhone SE, Galaxy S8/S9 */
@media (min-width: 360px) and (max-width: 414px) {
    html {
        font-size: 13.5px;
    }
    
    .nav-links {
        width: 250px;
    }
}

/* Medium phones (415px - 480px) - iPhone 12/13, Pixel */
@media (min-width: 415px) and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .nav-links {
        width: 260px;
    }
}

/* Large phones (481px - 600px) - iPhone Pro Max, Galaxy Plus */
@media (min-width: 481px) and (max-width: 600px) {
    html {
        font-size: 14.5px;
    }
    
    .nav-links {
        width: 280px;
    }
}

/* Tablets (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-links {
        width: 300px;
    }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .burger-menu span {
        height: 2.5px;
    }
}

/* Ultra-wide phones (> 400px width, < 600px height) */
@media (min-width: 400px) and (max-height: 600px) and (orientation: landscape) {
    html {
        font-size: 13px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
}

/* AdBlocker Info Banner */
.info-banner {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
    color: #000;
    padding: 1rem 2rem;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
}

.info-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-banner-content i.fa-shield-alt {
    font-size: 2rem;
    color: #000;
}

.info-banner-content > div {
    flex: 1;
}

.info-banner-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-close-banner {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close-banner:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .info-banner {
        top: 60px;
        padding: 0.75rem 1rem;
    }
    
    .info-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-banner-content i.fa-shield-alt {
        font-size: 1.5rem;
    }
    
    .info-banner-content strong {
        font-size: 1rem;
    }
    
    .info-banner-content p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   Spotify Account Modal Styles
   ========================================== */

.spotify-credentials-form {
    margin-top: 1.5rem;
}

.spotify-credentials-form .form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.spotify-credentials-form .form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.spotify-credentials-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.spotify-credentials-form label i {
    margin-right: 0.5rem;
    color: var(--primary-green);
}

/* Responsive für Spotify Modal */
@media (max-width: 768px) {
    #spotifyAccountModal .modal-content {
        max-width: 95% !important;
        margin: 1rem;
    }
    
    #spotifyAccountModal .modal-body {
        padding: 1.5rem !important;
    }
    
    #spotifyAccountModal .info-box {
        padding: 1rem;
    }
    
    #spotifyAccountModal .info-box h3 {
        font-size: 1.1rem;
    }
    
    #spotifyAccountModal .info-box p,
    #spotifyAccountModal .info-box ul {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #spotifyAccountModal .modal-content {
        max-width: 100% !important;
        margin: 0.5rem;
        border-radius: 16px;
    }
}

/* ===================================
   PRICING MODAL STYLES
   =================================== */

.pricing-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
}

.pricing-row:not(.pricing-header) {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.pricing-row:not(.pricing-header):hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(5px);
}

.pricing-row:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.pricing-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pricing-duration {
    display: flex;
    flex-direction: column;
}

.pricing-duration-main {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.pricing-duration-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 0.3rem;
    width: fit-content;
}

.pricing-duration-badge.best {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.pricing-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.pricing-price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-savings {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pricing-savings-amount {
    font-weight: 600;
    color: #2ecc71;
    font-size: 1rem;
}

.pricing-savings-percent {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-action {
    display: flex;
    justify-content: flex-end;
}

.btn-add-to-cart-modal {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-add-to-cart-modal:active {
    transform: translateY(0);
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pricing-features ul li i {
    color: #2ecc71;
    font-size: 1rem;
}

/* Responsive Pricing Table */
@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.5rem 1rem;
    }
    
    .pricing-header {
        display: none;
    }
    
    .pricing-cell {
        justify-content: space-between;
    }
    
    .pricing-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 0.85rem;
    }
    
    .pricing-action {
        justify-content: center;
    }
    
    .btn-add-to-cart-modal {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #pricingModal .modal-content {
        max-width: 95% !important;
        margin: 1rem;
    }
    
    #pricingModal .modal-body {
        padding: 1rem !important;
    }
    
    .pricing-row {
        padding: 1rem 0.8rem;
    }
}


