/**
 * Lalee B2B Shop - Combined Stylesheet
 * Alle Frontend-Styles zusammengefasst
 */

/* =============================================
   FONTS
   ============================================= */

/* Google Fonts - Locally Hosted */

/* Merriweather - Regular (400) */
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/merriweather-v30-latin-regular.woff2') format('woff2');
}

/* Merriweather - Light (300) */
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/merriweather-v30-latin-300.woff2') format('woff2');
}

/* Roboto - Regular (400) */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2');
}

/* Roboto - Bold (700) */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/roboto-v30-latin-700.woff2') format('woff2');
}

/* Global Typography */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 400;
}

h1.light, h2.light, h3.light {
    font-weight: 300;
}

strong, b {
    font-weight: 700;
}

/* =============================================
   BASIS-STYLES
   ============================================= */

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

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Global Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #896f53;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background:rgba(168, 161, 149, 0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

/* =============================================
   HEADER
   ============================================= */


main{border-top: 1px solid #e0e0e0;}
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    top: 0;
    z-index: 1000;
}
.header-upper {
    background: #896f53;
    color: white;
    padding: 10px 0;
}
.header-upper-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.welcome-text {
    font-size: 14px;
}
.header-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}
.header-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}
.header-links a:hover {
    opacity: 0.8;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
    padding-right: 15px;
    border-right: 1px solid rgba(255,255,255,0.3);
}
.lang-flag {
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.2s;
    border-radius: 2px;
    overflow: hidden;
}
.lang-flag:hover {
    opacity: 1;
    transform: scale(1.1);
}
.lang-flag.active {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}
.lang-flag img {
    display: block;
}
.header-main {
    padding: 20px 0;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img {
    height: auto;
    margin-right: 15px;
    max-width: 253px;
}
.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav-menu a:hover {
    color: #896f53;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #896f53;
    transition: width 0.3s;
}
.nav-menu a:hover::after {
    width: 100%;
}
.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background: #896f53;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s;
}
.cart-icon:hover {
    transform: translateY(-2px);
    color: white;
}
.cart-count {
    background: #ff4757;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    min-width: 18px;
    text-align: center;
}
.user-menu {
    position: relative;
}
.user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: background 0.3s;
    text-decoration: none;
}
.user-toggle:hover {
    background: #e9ecef;
}
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px 0;
    min-width: 200px;
    display: none;
    z-index: 1001;
}
.user-dropdown.show {
    display: block;
}
.user-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}
.user-dropdown a:hover {
    background: #f8f9fa;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile-Only und Desktop-Only Klassen */
.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}

@media (max-width: 992px) {
    
    
    
    .page-title{font-size:30px !Important}
    
    .form-group {margin-bottom:5px !important}
    /* Mobile-Only anzeigen, Desktop-Only ausblenden */
    .mobile-only {
        display: list-item;
    }
    .desktop-only {
        display: none !important;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        background: white;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        padding: 80px 20px 20px;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .nav-menu.show {
        transform: translateX(0);
    }
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-menu li.mobile-logout {
        margin-top: 20px;
        border-top: 2px solid #896f53;
    }
    .nav-menu li.mobile-logout a {
        color: #c33;
    }
    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 18px;
    }
    .mobile-menu-toggle {
        display: flex;
        background: #896f53;
        border-radius: 8px;
        z-index: 1001;
    }
    .mobile-menu-toggle .hamburger-line {
        background: white;
    }

    /* Header-Container: Logo links, Rest rechts */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Navigation rechtsbündig */
    .main-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .user-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cart-icon {
        padding: 12px 12px;
        font-size: 14px;
    }

    /* Warenkorb-Text auf Mobile ausblenden */
    .cart-text {
        display: none;
    }
}

@media (max-width: 768px) {
    
    
    .order-details{padding:0px !important}
    
    .header-upper-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .header-upper {
        padding: 8px 0;
    }
    .header-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 12px;
    }
    .logo img {
        max-width: 180px;
    }
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    
    
    .order-item{padding:10px !important;font-size:14px !important;}
    
    .header-main {
        padding: 10px 0;
    }
    .logo img {
        max-width: 140px;
    }
    .cart-icon {
        padding: 8px 10px;
    }
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* =============================================
   HOME PAGE
   ============================================= */

/* Video Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-video-container {
    width: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    display: none;
}

.hero-cta {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    margin-top: 20px;
}

.hero-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hero Video Mobile - zentriert und vergrößert */
@media (max-width: 768px) {
    .hero-section {
        height: 167px;
    }

    .hero-video-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        /*! width: auto; */
        height: auto;
    }
}

.collections-section {
    padding: 34px 0;
    background: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: #424246;
    margin-bottom: 20px;
}
.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 18px;
    margin-bottom: 60px;
}

.stats-section {
    padding: 60px 0;
    background: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}
.stat-label {
    color: #7f8c8d;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}
.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   COLLECTIONS
   ============================================= */

/* Grid Layout */
.collections-grid,
.selection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Container */
.collection-card,
.selection-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card:hover,
.selection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

/* Image Wrapper */
.collection-image,
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

/* Image */
.collection-image img,
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-image-placeholder {
    background: linear-gradient(135deg, #bdbbbc 0%, #bdbbbc 100%);
}

/* Hover Zoom Effect */
.collection-card:hover .collection-image img,
.selection-card:hover .card-image {
    transform: scale(1.05);
}

/* Overlay Content */
.collection-content,
.card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
    color: white;
}

.nobg .collection-content {background:none !important}

/* Title */
.collection-name,
.card-overlay-title {
    font-size: 20px;
    font-weight: 498;
    color: white;
    margin: 0 0 8px 0;
}

/* Subtitle/Description */
.collection-description,
.card-overlay-subtitle {
    font-size: 14px;
    margin: 0 0 0px 0;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

/* Meta Information */
.collection-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 14px;
    color: rgb(137, 111, 83);
}


.collection-image:hover .quality-count {background:rgba(168, 161, 149, 0.9)}

/* Quality Count Badge */
.quality-count {
    background: #896f53;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 400;
}



/* Action Link/Button */
.card-overlay-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: rgb(137, 111, 83);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.3s;
}

.card-image-wrapper:hover .card-overlay-link{background: rgba(168, 161, 149, 0.9) !important}

.collection-card:hover .card-overlay-link,
.selection-card:hover .card-overlay-link {
    background: #896f53;
}

/* Legacy Card Overlay */
.card-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    padding-right: 20px;
}

.card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collections-grid,
    .selection-cards {
        grid-template-columns: 1fr;
    }

    .collection-image,
    .card-image-wrapper {
        height: 220px;
    }

    .collection-name,
    .card-overlay-title {
        font-size: 20px;
    }

    .collection-content,
    .card-overlay-content {
        padding: 20px;
    }
}

/* Page-specific Styles */
.collections-page {
    padding: 60px 0;
    min-height: 80vh;
    background: #f8f9fa;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #424246;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

/* =============================================
   LOGIN PAGE
   ============================================= */

.login-section {
    padding: 40px 0;
}
.login-container {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    align-items: flex-start;
}
.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    align-items: stretch;
}
.login-form-section {
    flex: 1;
    padding: 34px;
}
.login-info-section {
    flex: 1;
    background: linear-gradient(135deg, #896f53 0%, #6d5841 100%);
    padding: 38px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}
.form-subtitle {
    color: #666;
    margin-bottom: 40px;
}
.form-group {
    margin-bottom: 10px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 26px;
    font-size: 16px;
    /*! transition: all 0.3s; */
}
.form-control:focus {
    outline: none;
    border-color: #896f53;
    box-shadow: 0 0 0 3px rgba(137, 111, 83, 0.1);
}
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}
.btn-login {
    width: 100%;
    padding: 14px;
    background: #896f53;
    color: white;
    border: none;
    border-radius: 54px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-login:hover {
    background: #6d5841;
    transform: translateY(-2px);
}
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-info {
    background: #cce7ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
}
.info-list li:before {
    content: "✓";
    margin-right: 15px;
    font-size: 20px;
}
.register-section {
    /*! margin-top: 30px; */
    padding-top: 30px;
    /*! border-top: 1px solid #e0e0e0; */
    text-align: center;
}
.register-link {
    color: #896f53;
    text-decoration: none;
    font-weight: 600;
}
.register-link:hover {
    color: #6d5841;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    .login-wrapper {
        grid-template-columns: 1fr;
    }
    .login-info-section {
        display: none;
    }
    .login-form-section {
        padding: 30px 20px;
        margin: 0px auto;
    }
    .form-title {
        font-size: 24px;
    }
}

/* =============================================
   DASHBOARD
   ============================================= */

.dashboard-section {
    padding: 40px 0;
    min-height: 80vh;
    background: #f8f9fa;
}
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
.welcome-header {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.welcome-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}
.welcome-subtitle {
    color: #666;
    font-size: 16px;
}

.cart-text{padding-left:10px;}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    background: #896f53;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card-header {
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: between;
    align-items: center;
}
.card-body {
    padding: 0;
}
.order-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.order-item {
    padding: 10px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-item:last-child {
    border-bottom: none;
}
.order-info {
    flex: 1;
}
.order-number {
    font-weight: 600;
    color: #333;
    /*! margin-bottom: 5px; */
}
.order-date {
    color: #666;
    font-size: 14px;
}
.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    background: #caf2c1;
    color: #333;
    min-width: 220px;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
}
.order-amount {
    font-size: 16px;
    color: #333;
    margin-left: 20px;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 130px;
    text-align: right;
}
.quick-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quick-action {
    padding: 0;
}
.action-link {
    display: block;
    padding: 20px 30px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.action-link:hover {
    background: #f8f9fa;
    color: #896f53;
}
.action-link:last-child {
    border-bottom: none;
}
.action-icon {
    font-size: 18px;
    margin-right: 12px;
    vertical-align: middle;
}
.btn-primary {
    background: linear-gradient(135deg, #896f53 0%, #896f53 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: transform 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    color: white;
}
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .order-status {
        display: none;
    }
    .order-amount {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */

.ean-info {
    font-size: 10px;
    color: #888;
    margin-top: 2px;
    font-family: monospace;
    background: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
}

.products-section {
    padding: 40px 0;
    min-height: 80vh;
    padding-bottom: 100px;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.search-bar {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-btn {
    padding: 10px 20px;
    background: #896f53;
    color: white;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #333;
}

.breadcrumb span {
    color: #333;
}

.order-grid-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #896f53 0%, #a88372 100%);
    border-radius: 8px;
}

.grid-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.grid-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 30px;
    border-radius: 40px;
    border: none;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-secondary:hover {
    background: #f0f0f0;
    color: #666;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
}

.order-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.order-table td {
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: white;
    vertical-align: middle;
}

.color-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.color-swatch {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #ddd;
    flex-shrink: 0;
}

.quantity-input {
    width: 70px;
    padding: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    text-align: center;
    font-size: 14px;
    transition: border-color 0.3s;
    margin: 5px auto;
    display: block;
}

.quantity-input:focus {
    outline: none;
    border-color: #667eea;
}

.article-cell {
    text-align: center;
    position: relative;
    padding: 8px 5px;
    vertical-align: middle;
}

.stock-info {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.price-info {
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    margin: 3px auto 5px auto;
    display: block;
    text-align: center;
}

.arrival-info {
    font-size: 10px;
    color: #e74c3c;
    margin-top: 2px;
    font-weight: 500;
}

/* Fixed Order Bar */
.fixed-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f5f5f5;
    padding: 10px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    border-top: 1px solid #ddd;
}

.fixed-order-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.fixed-order-bar .total-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.fixed-order-bar .total-value {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.fixed-order-bar .btn-primary {
    background: #896f53;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.fixed-order-bar .btn-primary:hover {
    background: rgba(168, 161, 149, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cart Link neben dem Warenkorb-Button */
.cart-link {
    color: #896f53;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.2s ease;
}

.cart-link:hover {
    color: #7a6248;
    text-decoration: underline;
}

.fixed-order-bar .cart-link {
    color: #555;
    font-size: 15px;
}

.fixed-order-bar .cart-link:hover {
    color: #896f53;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}

.availability-badge {
    display: block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    margin: 5px auto;
    width: fit-content;
}

.stock-low {
    background: #e74c3c;
    color: white;
}

.stock-medium {
    background: #f39c12;
    color: white;
}

.stock-high, .stock-ok {
    background: #27ae60;
    color: white;
}

.search-results {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.search-result-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.search-result-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.result-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: linear-gradient(135deg, #af9e8a 0%, #896f53 100%);
}

.result-details {
    flex: 1;
}

.result-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.result-specs {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.result-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-add {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: stretch;
    }
    .search-bar {
        min-width: unset;
    }
    .selection-cards {
        grid-template-columns: 1fr;
    }
    .order-table {
        font-size: 12px;
    }
    .search-result-item {
        flex-direction: column;
    }

    .fixed-order-bar {
        position: relative;
        margin-top: 20px;
        border-radius: 12px;
    }

    .fixed-order-bar-inner {
        flex-direction: column;
        gap: 15px;
    }

    .products-section {
        padding-bottom: 40px;
    }
}

/* =============================================
   CART PAGE
   ============================================= */

.cart-section {
    padding: 40px 0;
    min-height: 80vh;
}
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.cart-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.cart-items {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cart-header {
    padding: 25px;
    border-bottom: 2px solid #f0f0f0;
}
.cart-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}
.item-list {
    padding: 0;
}
.cart-item {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    transition: background-color 0.2s;
}
.cart-item:hover {
    background-color: #f8f9fa;
}
.cart-item:last-child {
    border-bottom: none;
}
.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.item-details {
    min-width: 0;
}
.item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}
.item-specs {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}
.item-article {
    color: #999;
    font-size: 12px;
}
.item-ean {
    color: #999;
    font-size: 11px;
    margin-top: 2px;
}
.ean-link {
    color: #000;
    /*! text-decoration: none; */
}
.ean-link:hover {
    text-decoration: underline;
}
.stock-warning {
    background: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-top: 5px;
    display: inline-block;
}
.stock-critical {
    background: #f8d7da;
    color: #721c24;
}
.next-arrival-info {
    color: #e67e22;
    font-size: 12px;
    margin-top: 5px;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.2s;
}
.qty-btn:hover {
    background: #f0f0f0;
    border-color: #667eea;
    color: #667eea;
}
.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.qty-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px;
    font-size: 14px;
}
.qty-input:focus {
    outline: none;
    border-color: #667eea;
}
.item-price {
    font-size: 16px;
    color: #333;
    text-align: right;
    min-width: 100px;
}
.unit-price {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}
.total-price {
    font-weight: 600;
    color: #896f53;
    font-size: 16px;
}
.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-btn:hover {
    background: #fee;
    color: #c0392b;
    transform: scale(1.1);
}
.order-summary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    height: fit-content;
    padding: 10px;
}
.summary-header {
    padding: 25px;
    border-bottom: 2px solid #f0f0f0;
}
.summary-header h3 {
    margin: 0;
    color: #333;
}
.summary-content {
    padding: 25px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 9px;
}
.textarea {
    min-height: 80px;
    resize: vertical;
}
.btn-block {
    width: 100%;
    margin-bottom: 15px;
}
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}
.empty-cart h2 {
    color: #666;
    margin-bottom: 10px;
}
.empty-cart p {
    color: #999;
    margin-bottom: 30px;
}
.loading {
    opacity: 0.6;
    pointer-events: none;
}
@media (max-width: 768px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 15px;
        padding: 15px;
        position: relative;
    }
    .item-image {
        width: 70px;
        height: 70px;
        grid-row: span 2;
    }
    .item-details {
        grid-column: 2;
    }
    .quantity-controls {
        grid-column: 2;
        justify-content: flex-start;
    }
    .item-price {
        position: absolute;
        right: 15px;
        top: 15px;
        text-align: right;
    }
    .item-price .unit-price {
        font-size: 11px;
    }
    .item-price .total-price {
        font-size: 16px;
    }
    .cart-item > div:last-child {
        position: absolute;
        left: 15px;
        bottom: 15px;
    }
    .remove-btn {
        font-size: 16px;
        padding: 5px;
    }
}

/* =============================================
   ORDERS PAGE
   ============================================= */

.orders-section {
    padding: 40px 0;
    min-height: 80vh;
}
.orders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.orders-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.order-item:hover {
    background: #f8f9fa;
}
.order-item:last-child {
    border-bottom: none;
}
.order-header {
    /*! padding: 0px; */
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}
.order-info h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}
.order-meta {
    color: #666;
    font-size: 14px;
}
.order-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: transform 0.3s;
}
.order-toggle.expanded {
    transform: rotate(180deg);
}
.order-details {
    display: none;
    padding: 0 25px 25px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
}
.order-details.show {
    display: block;
}
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.detail-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}
.detail-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}
.items-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}
.items-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e9ecef;
}
.items-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}
.items-table tr:last-child td {
    border-bottom: none;
}
.item-info {
    line-height: 1.4;
}
.backorder-notice {
    background: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-top: 5px;
    display: inline-block;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
}
.pagination a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}
.pagination .current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}
@media (max-width: 768px) {
    .order-header {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: left;
    }
    
    .order-info h3{font-size:14px}
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    .table-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }
    .items-table {
        font-size: 13px;
        min-width: 500px;
    }
    .items-table th,
    .items-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    .items-table td:nth-child(2) {
        white-space: normal;
        min-width: 150px;
    }
}

/* =============================================
   ACCOUNT PAGE
   ============================================= */

.account-section {
    padding: 40px 0;
    min-height: 80vh;
}
.account-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.account-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 25px;
}
.account-card .card-header {
    background: #896f53;
    color: white;
    padding: 15px 25px;
}
.account-card .card-header .card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.account-card .card-body {
    padding: 25px;
}
.info-section {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.info-item:last-child {
    border-bottom: none;
}
.info-label {
    font-weight: 500;
    color: #555;
}
.info-value {
    color: #333;
    text-align: right;
    font-weight: 500;
}
.form-control:disabled {
    background: #f8f9fa;
    color: #666;
}
.password-requirements {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}
.address-display {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .account-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   DELIVERY ADDRESSES
   ============================================= */

.addresses-section {
    padding: 40px 0;
    min-height: 80vh;
}
.addresses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.address-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}
.address-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.address-card.default {
    border: 2px solid #667eea;
}
.default-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.address-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}
.address-details {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.address-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-add {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}
.btn-add:hover {
    transform: translateY(-2px);
    color: white;
}
.btn-danger {
    background: #e74c3c;
    color: white;
}
.btn-danger:hover {
    background: #c0392b;
}
.btn-success {
    background: #27ae60;
    color: white;
}
.btn-success:hover {
    background: #229954;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.modal-title {
    font-size: 24px;
    color: #333;
}
.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
}
.close-modal:hover {
    color: #333;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .addresses-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   QUICK ORDER
   ============================================= */

.quick-order-section {
    padding: 40px 0;
    min-height: 80vh;
}
.quick-order-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #667eea;
}
.order-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.method-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.method-header {
    background: linear-gradient(135deg, #896f53 0%, #896f53 100%);
    color: white;
    padding: 25px;
    text-align: center;
}
.method-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.method-body {
    padding: 30px;
}
.form-table {
    width: 100%;
    border-collapse: collapse;
}
.form-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e9ecef;
}
.form-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
}
.textarea-input {
    min-height: 200px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.4;
    resize: vertical;
}
.form-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}
.example-text {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}
.help-text {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .order-methods {
        grid-template-columns: 1fr;
    }
    .info-cards {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   REGISTRATION PAGE
   ============================================= */

.page-registrieren .register-section {
    padding: 60px 0;
}
.register-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}
.register-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.register-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}
.register-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row.single {
    grid-template-columns: 1fr;
}
.form-label .required {
    color: #e74c3c;
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}
.form-control.textarea {
    min-height: 120px;
    resize: vertical;
}
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}
.file-upload input[type=file] {
    position: absolute;
    left: -9999px;
}
.file-upload-label {
    display: block;
    padding: 12px 15px;
    border: 2px dashed #896f53;
    border-radius: 8px;
    text-align: center;
    color: #896f53;
    transition: all 0.3s;
}
.file-upload-label:hover {
    background: #f8f9fa;
}
.form-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #896f53;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit:hover {
    background: #6d5841;
    transform: translateY(-2px);
}
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}
.success-message h3 {
    margin-bottom: 10px;
}
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.login-link {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}
.login-link a {
    color: #896f53;
    text-decoration: none;
    font-weight: 600;
}
.login-link a:hover {
    color: #6d5841;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .register-card {
        padding: 30px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   LOGOUT PAGE
   ============================================= */

.logout-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}
.logout-card {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}
.logout-icon {
    font-size: 64px;
    color: #667eea;
    margin-bottom: 30px;
}
.logout-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}
.logout-message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.redirect-info {
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

/* =============================================
   ADMIN LOGIN
   ============================================= */

.admin-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 20px;
}
.login-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.login-logo {
    text-align: center;
    margin-bottom: 30px;
}
.login-logo h1 {
    font-size: 32px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.login-subtitle {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 30px;
}
.back-link {
    text-align: center;
    margin-top: 20px;
}
.back-link a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
}
.back-link a:hover {
    color: #2c3e50;
}


@media (max-width: 408px) {
    .hero-section {
        height: 197px;
        background: #f8f9fa;
    }
    .btn-primary{font-size:14px;width:128px;}

    
    .card-header{padding:9px;}
    
    .hero-video-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 82%;
        /*! width: auto; */
        height: auto;
    }
    
    h2{font-size:17px !important;}

    .order-grid-section {
        background: white;
        border-radius: 0px;
        padding: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: #896f53;
    color: #fff;
    padding: 20px 0;
    flex-shrink: 0;
    margin-top: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}
