/* ========================================================== */
/* midiart - MASTER STYLESHEET (Final Verified Version)       */
/* ROCK SOLID EDITION - RESPONSIVE MOBILE & STICKY HEADER     */
/* ========================================================== */

/* --- 1. BASIS-LAYOUT --- */
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0; 
    padding: 0;
    background: #f4f4f4; 
    color: #320066; 
}

.wrapper { 
    display: grid; 
    grid-template-areas: 
        "h h h" 
        "n m s"; 
    /* Linke Spalte 130px, Mitte flexibel, Rechte Charts-Spalte 180px */
    grid-template-columns: 130px 1fr 180px; 
    
    /* Auf 1600px erweitert, dadurch rückt die linke Navigation weiter nach links */
    max-width: 1600px; 
    margin: 0 auto; 
    background: white; 
    box-shadow: 0 0 15px rgba(0,0,0,0.2); 
}

/* --- 2. STICKY HEADER --- */
header { 
    grid-area: h; 
    background-image: url('backhead2.jpg'); 
    background-attachment: fixed;
    padding: 0; 
    border-bottom: 3px solid #320066;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.header-top-row { 
    display: flex; 
    flex-wrap: nowrap; 
    justify-content: space-between; 
    align-items: center; 
    min-height: 90px;
    padding: 0 15px 0 0;
    gap: 15px;
}

.header-logo { 
    width: 130px; 
    height: 90px; 
    flex-shrink: 0; 
    display: flex;
    align-items: center;
}
.header-logo img { 
    width: 125px; 
    height: auto; 
    display: block; 
    border: 0; 
}

/* --- NEUES SUCHFELD (Pill-Shape & Lupen-Button) --- */
.search-section { 
    flex: 1 1 auto; 
    max-width: 550px; 
    margin: 0; 
    min-width: 150px; 
    position: relative; 
}
.search-label-row { display: flex; width: 100%; margin-bottom: 2px; }
.search-label-spacer { flex-grow: 1; }
.search-label { font-size: 9px; color: #FFFFFF; font-weight: bold; width: 80px; text-align: center; }
.search-label-btn-spacer { width: 45px; }

.search-input-group { 
    display: flex; background-color: #FFFFFF; 
    border-radius: 20px; 
    border: 2px solid #320066; overflow: hidden; height: 38px; width: 100%;
}
.search-input-group input { 
    padding: 0 15px; flex: 1 1 auto; border: 0; outline: none; font-size: 10pt; width: 100%; min-width: 50px;
}
.search-select-desktop { 
    flex: 0 0 80px; border: 0; border-left: 1px solid #ccc; outline: none; background: #f4f4f4; font-size: 9pt; padding: 0 5px; cursor: pointer; 
}
.search-submit-icon { 
    flex: 0 0 45px; border: 0; background: #320066; color: white; cursor: pointer; 
    display: flex; justify-content: center; align-items: center; transition: background 0.2s;
}
.search-submit-icon:hover { background: #1a0033; }

#search_suggest { position: absolute; top: 100%; left: 0; background-color: #FFFFFF; text-align: left; border: 1px solid #320066; border-radius: 4px; z-index: 1100; width: 100%; box-shadow: 0px 4px 12px rgba(0,0,0,0.4); max-height: 250px; overflow-y: auto; margin-top: 5px; }
.suggest_link { font-size: 11px; color: #000; padding: 6px 15px; border-bottom: 1px solid #eee; cursor: pointer; display: block; }
.suggest_link:hover, .suggest_link.active { background-color: #320066 !important; color: #FFFFFF !important; outline: none; }

/* Cockpit Rechts */
.right-cockpit { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; flex-shrink: 0; }
.lang-switch { font-size: 11px; font-weight: bold; margin-bottom: 4px; color: #FFFFFF; }
.lang-switch a { color: #FFFFFF; text-decoration: none; padding: 0 2px; }
.lang-switch a:hover { color: #FF0000; }
.nav-section { display: flex; gap: 5px; align-items: center; }

/* Rote Icons im Header */
.nav-square {
    position: relative; width: 50px; height: 50px;
    background: linear-gradient(135deg, #C00000 0%, #800000 100%);
    border: 1px solid #600000; border-radius: 4px;
    color: #FFFFFF; text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
    text-decoration: none; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; text-align: center;
    font-size: 11px; font-weight: bold; line-height: 1.05; cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3); transition: transform 0.1s;
    box-sizing: border-box; padding: 2px;
}
.nav-square:hover { transform: scale(1.05); background: #C00000; }
.nav-square svg { width: 16px; height: 16px; margin-bottom: 1px; fill: #FFFFFF; }
.cart-badge { position: absolute; top: -6px; right: -6px; background-color: #FF0000; color: #FFFFFF; font-size: 10px; font-weight: 900; padding: 2px 6px; border-radius: 10px; border: 2px solid #FFFFFF; box-shadow: 0 2px 4px rgba(0,0,0,0.4); z-index: 10; }

/* Der Hamburger-Button */
.hamburger-btn { display: none; background: none; border: none; color: white; font-size: 32px; cursor: pointer; padding: 0 5px; flex-shrink: 0; }

.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; right: 0; background-color: #fff; min-width: 210px; box-shadow: 0px 8px 16px rgba(0,0,0,0.3); z-index: 1200; border: 1px solid #C00000; max-height: 450px; overflow-y: auto; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { color: #333; padding: 8px 12px; text-decoration: none; display: block; font-size: 11px; border-bottom: 1px solid #eee; }
.dropdown-content a:hover { background-color: #FFF0F0; color: #C00000; }

/* --- 3. LINKE NAVIGATION --- */
.left-nav { 
    grid-area: n; background-color: #7DB0FF; background-image: url('back.jpg');
    background-attachment: fixed; display: flex; flex-direction: column; align-items: center; 
    width: 130px; border-right: 1px solid rgba(0,0,102,0.1); min-height: 100vh;
}

.info-box { width: 125px; margin: 3px 0 8px 0; color: #180067; font-size: 12px; line-height: 1.4; text-align: left; padding: 0 8px; box-sizing: border-box; white-space: nowrap; }
.info-highlight { color: #C6080C; font-weight: bold; font-size: 13px; display: block; margin: 2px 0; }

.nav-menu { width: 100%; display: flex; flex-direction: column; border-top: 1px solid rgba(0, 0, 102, 0.2); }
.nav-item {
    display: flex; align-items: center; background: rgba(255, 255, 255, 0.15);
    color: #000066; text-decoration: none; font-size: 13px; font-weight: 700;
    padding: 8px 6px; border-bottom: 1px solid rgba(0, 0, 102, 0.2);
    box-sizing: border-box; white-space: nowrap; transition: padding-left 0.2s, background 0.2s, color 0.2s;
}
.nav-item:hover { background: #FFFFFF; color: #0000FF; padding-left: 12px; }
.nav-icon { display: inline-block; width: 22px; margin-right: 4px; text-align: center; font-style: normal; font-size: 16px; color: #C6080C; }

.legal-box { margin-top: 15px; padding: 10px; width: 125px; box-sizing: border-box; border-top: 1px solid rgba(0, 0, 102, 0.1); }
.legal-link { display: block; color: #000066; text-decoration: none; margin-bottom: 8px; font-size: 12px; font-weight: bold; white-space: nowrap; }
.legal-link:hover { color: #C6080C; text-decoration: underline; }

/* --- 4. MITTE & CHARTS --- */
main { grid-area: m; padding: 15px 20px; min-height: 600px; overflow-x: hidden; }

aside { grid-area: s; border-left: 1px solid #ccc; padding: 5px; background: #fff; box-sizing: border-box; }
.chart-header { font-weight: bold; text-align: center; border-bottom: 1px solid #ccc; margin-bottom: 5px; padding-bottom: 5px; color: #320066; font-size: 11px; text-transform: uppercase; }

/* --- CHARTS & SIDEBAR PLAYER --- */
.play-box-red {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #C00000 0%, #800000 100%);
    border: 1px solid #600000; color: #FFFFFF; cursor: pointer;
    width: 28px; height: 24px; flex-shrink: 0; border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.play-box-red:hover { background: #C00000; }
.play-box-red.playing-now { background: #00aa00; border-color: #007700; }

.play-icon, .stop-icon { width: 14px; height: 14px; background-color: white; mask-size: cover; -webkit-mask-size: cover; }
.play-icon { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>'); }
.stop-icon { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h12v12H6z"/></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h12v12H6z"/></svg>'); }

.red-btn-square {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #C00000 0%, #800000 100%);
    border: 1px solid #600000; color: #FFFFFF; text-decoration: none; 
    height: 24px; flex-grow: 1; text-align: center;
    font-size: 10px; font-weight: bold; border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3); gap: 4px;
}
.red-btn-square:hover { background: #C00000; color: #fff; }
.red-btn-square svg { width: 14px; height: 14px; fill: white; }

/* --- Mobile Overlay Menü --- */
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2999; }
.mobile-overlay.open { display: block; }
.mobile-menu {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
    background: #f4f4f4; z-index: 3000; overflow-y: auto;
    transition: left 0.3s ease; box-shadow: 2px 0 10px rgba(0,0,0,0.3); display: flex; flex-direction: column;
}
.mobile-menu.open { left: 0; }
.mob-header { display: flex; justify-content: space-between; align-items: center; background: #320066; color: white; padding: 15px; font-size: 1.2rem; font-weight: bold; }
.mob-close { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
.mob-action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; background: white; border-bottom: 1px solid #ddd; }
.mob-action-btn { background: linear-gradient(135deg, #C00000 0%, #800000 100%); color: white; text-decoration: none; padding: 10px; text-align: center; border-radius: 4px; font-weight: bold; font-size: 0.9rem; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.mob-nav-list { display: flex; flex-direction: column; }
.mob-nav-list a { padding: 15px 20px; color: #330066; text-decoration: none; font-weight: bold; border-bottom: 1px solid #ddd; background: white; font-size: 1rem; }
.mob-nav-list a:hover { background: #f0f4ff; color: #C6080C; }

/* ========================================================== */
/* --- 5. RESPONSIVE MEDIA QUERIES (MOBILE) ---               */
/* ========================================================== */
@media (max-width: 900px) {
    .wrapper { display: flex; flex-direction: column; }
    .left-nav, aside { display: none !important; }
    
    /* Das Cockpit verschwindet */
    .right-cockpit { display: none !important; }
    
    /* Header auf eine feste Zeile zwingen */
    header { height: auto; }
    .header-top-row { height: 60px; min-height: 60px; padding: 5px 10px; gap: 5px; }
    
    /* WIR SORTIEREN DIE ELEMENTE FÜR MOBILE UM */
    .hamburger-btn { 
        display: block; 
        order: 1; /* Ganz nach links! */
    }
    
    .search-section { 
        min-width: 50px; 
        margin: 0 10px; 
        order: 2; /* In die Mitte! */
    }
    
    .header-logo { 
        width: auto; 
        height: auto; 
        order: 3; /* Ganz nach rechts! */
        justify-content: flex-end; 
    }
    .header-logo img { width: 90px; } 
    
    /* Suche: Label und Dropdown ausblenden */
    .search-label-row { display: none; } 
    .search-select-desktop { display: none; }
    .search-input-group { height: 35px; }
    
    main { padding: 10px; }
    
    /* Boxen untereinander */
    .grid-layout, .grid-layout-2-1 { grid-template-columns: 1fr; }
}

/* ========================================================== */
/* --- 6. CORPORATE IDENTITY & CONTENT KOMPONENTEN ---        */
/* ========================================================== */

h1, h2, h3 { color: #330066; margin-top: 0; }
h1 { font-size: 1.4rem; margin-bottom: 0.6rem; border-bottom: 2px solid #eee; padding-bottom: 5px; }
h2 { font-size: 1.2rem; margin-top: 10px; margin-bottom: 0.6rem; }
h3 { font-size: 1.05rem; }

a { color: #C6080C; text-decoration: none; font-weight: bold; }
a:hover { text-decoration: underline; color: #FF0000; }

.text-blue { color: #0000FF; }
.text-bold { font-weight: bold; }
.text-green { color: #28a745; font-weight: bold; }
.text-gold { color: #b8860b; font-weight: bold; }
.text-dark { color: #333333; }
.text-small { font-size: 0.85rem; color: #666666; }

.main-headline { text-align: center; font-size: 1.3rem; color: #000066; margin: 5px 0 15px 0; padding: 10px; background-color: #f0f4ff; border-radius: 4px; border-left: 5px solid #C6080C; }
.page-header { background-color: #f0f4ff; padding: 10px 15px; border-left: 4px solid #0000FF; margin-bottom: 15px; }
.page-header h1 { border: none; padding: 0; margin: 0 0 5px 0; color: #333; font-size: 1.4rem; }
.page-header h2 { font-size: 1.1rem; color: #000; font-weight: bold; margin: 0; }

.card { background: #fff; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.08); border: 1px solid #eee; margin-bottom: 10px; display: flex; flex-direction: column; }
.card-header { padding: 8px 12px; }
.card-header h3 { margin: 0; display: flex; align-items: center; }
.card-body { padding: 10px 12px; flex-grow: 1; font-size: 0.9rem; }
.card-body p { margin-bottom: 8px; margin-top: 0; }

.header-blue { border-bottom: 2px solid #007bff; background-color: #f8faff; }
.header-green { border-bottom: 2px solid #28a745; background-color: #f8fff9; }

/* Grid-Layouts */
.grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.grid-layout-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 20px; }

.header-icon { color: #C6080C; margin-right: 10px; font-size: 1.3rem; font-weight: normal; }

.with-bullet { display: block; padding-left: 0; margin-bottom: 10px; }
.with-bullet::before { content: "\2022\00a0"; color: #C6080C; font-size: 1.2rem; font-weight: bold; display: inline; }

.standard-list { list-style: none; padding: 0; margin: 5px 0 15px 0; font-size: 0.95rem; }
.standard-list li { margin-bottom: 4px; padding-left: 20px; position: relative; color: #333; }
.standard-list li::before { content: "\2714"; position: absolute; left: 0; color: #0000FF; font-weight: bold; }

.info-block { background-color: #f8faff; padding: 12px; border-radius: 4px; border-left: 4px solid #330066; margin-bottom: 15px; font-size: 0.9rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.info-block.warning { background-color: #fff3cd; border-left: 5px solid #ffc107; color: #856404; padding: 15px; }
.info-block.success { background-color: #d4edda; border-left: 5px solid #28a745; color: #155724; padding: 15px; }

/* Preistabellen */
.pricing-container { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 15px; margin-bottom: 15px; }
.pricing-card {
    flex: 1 1 300px; background: #fff; border-radius: 6px; overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); border: 1px solid #eee; display: flex; flex-direction: column;
}
.header-standard { background: linear-gradient(135deg, #28a745, #218838); color: #fff; text-align: center; }
.header-premium { background: linear-gradient(135deg, #007bff, #0056b3); color: #fff; text-align: center; }
.header-standard h3, .header-premium h3 { color: #fff; margin: 0; }

.price-list { list-style: none; padding: 8px 12px; margin: 0; background-color: #f8f9fa; border-bottom: 1px solid #eee; }
.price-list li { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dotted #ddd; font-size: 0.9rem; }
.price-list li:last-child { border-bottom: none; }
.price-highlight { font-weight: bold; color: #CC0000; }

.feature-list { list-style: none; padding: 10px 12px; margin: 0; font-size: 0.85rem; }
.feature-list li { margin-bottom: 5px; padding-left: 22px; position: relative; }
.feature-list li::before { content: '\2713'; position: absolute; left: 0; color: #28a745; font-weight: bold; font-size: 1.1rem; top: -2px; }
.premium-features li::before { color: #007bff; }

.mp3-prices { background-color: #f0f4ff; padding: 10px 12px; border-radius: 4px; margin: 15px 0; border-left: 4px solid #330066; font-size: 0.9rem; }
.price-tag-right { float: right; font-weight: bold; color: #330066; }

/* Datentabellen & Warenkorb */
.table-responsive { overflow-x: auto; margin-bottom: 15px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; text-align: left; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.data-table th, .data-table td { padding: 8px; border-bottom: 1px solid #eee; }
.data-table th { color: #fff; font-weight: bold; background-color: #330066; }
.data-table tr:hover { background-color: #f8faff; }

.mini-table { width: 100%; font-size: 0.85rem; border-collapse: collapse; }
.mini-table th, .mini-table td { padding: 3px 5px !important; text-align: center; }
.mini-table thead th { font-size: 0.75rem; text-transform: uppercase; }

.bg-black { background-color: #333 !important; }
.bg-std { background-color: #28a745 !important; }
.bg-prem { background-color: #0000FF !important; }
.bg-gold { background-color: #FFCC00 !important; color: #000 !important; }

/* Gold Banner */
.gold-banner { background: linear-gradient(135deg, #FFD700, #DFAE04); border-radius: 6px; padding: 15px; text-align: center; margin-top: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.gold-banner a { color: #000; font-size: 1.2rem; text-decoration: none; border: none; }
.gold-banner a:hover { color: #fff; }
.gold-subtitle { font-size: 1rem; font-weight: bold; color: #000; margin-top: 5px; }
.gold-action { font-size: 1rem; color: #025B86; font-weight: bold; margin-top: 10px; }

/* Formulare */
.form-container { background: #fff; padding: 15px; border-radius: 4px; border: 1px solid #eee; }
.form-group { display: flex; align-items: center; margin-bottom: 10px; font-size: 0.9rem; flex-wrap: wrap; }
.form-group label { width: 180px; font-weight: bold; flex-shrink: 0; color: #330066; margin-bottom: 5px; }
.form-group input[type="text"], .form-group input[type="password"], .form-group select { padding: 6px 8px; border: 1px solid #ccc; border-radius: 3px; font-size: 0.9rem; width: 100%; max-width: 300px; }
.form-group input:focus { outline: none; border-color: #007bff; box-shadow: 0 0 3px rgba(0,123,255,0.3); }

.checkbox-group { justify-content: flex-start; }
.checkbox-group input { margin-right: 10px; width: auto; }
.checkbox-group label { width: auto; font-weight: normal; }

/* Buttons & Paginierung */
.btn-primary, .btn-secondary, .btn-cta, .btn-danger, .action-button {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 8px 16px; font-size: 0.9rem; font-weight: bold; border-radius: 3px;
    cursor: pointer; text-decoration: none; border: none; text-align: center;
    transition: all 0.2s ease-in-out; vertical-align: middle;
}
.btn-primary { background: #330066; color: #FFFFFF; }
.btn-primary:hover { background: #1a0033; color: #fff; text-decoration: none; }
.btn-secondary { background: #e9ecef; color: #333; border: 1px solid #ccc; }
.btn-secondary:hover { background: #d3d9df; text-decoration: none; color: #000; }
.btn-cta { background: linear-gradient(135deg, #C00000 0%, #800000 100%); color: #FFFFFF; text-shadow: 1px 1px 1px rgba(0,0,0,0.5); }
.btn-cta:hover { background: #C00000; color: #fff; text-decoration: none; box-shadow: 0 2px 6px rgba(192,0,0,0.4); }
.btn-danger { background: #dc3545; color: #fff; }
.btn-danger:hover { background: #c82333; color: #fff; }

.action-button { background: #C6080C; padding: 10px 20px; font-size: 1rem; color: #FFFFFF; }
.action-button:hover { background: #FF0000; box-shadow: 0 2px 6px rgba(198, 8, 12, 0.4); color: #FFFFFF; }

.tyros-icon { 
    display: inline-block; background-color: #0055A5; color: #FFFFFF; 
    font-family: Arial, sans-serif; font-weight: 900; width: 18px; 
    height: 18px; line-height: 18px; text-align: center; border-radius: 3px; 
    font-size: 13px; cursor: default; vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.4); text-shadow: 0px 1px 1px rgba(0,0,0,0.5); 
    transition: background-color 0.2s;
}
.tyros-icon:hover { background-color: #003366; }

.abc-links a { display: inline-block; padding: 5px 10px; margin: 3px; background: #e9ecef; border-radius: 3px; text-decoration: none; color: #330066; font-family: monospace; font-size: 1rem; font-weight: bold; transition: background 0.2s; }
.abc-links a:hover { background: #0000FF; color: #FFFFFF; }

/* Seriennummern Box */
.serial-box { 
    display: inline-block; background: #f8f9fa; border: 1px solid #ccc; padding: 3px 10px; 
    border-radius: 3px; font-family: Consolas, 'Liberation Mono', Menlo, monospace; 
    font-size: 1.1rem; color: #C6080C; font-weight: bold; margin-top: 5px; letter-spacing: 1px;
}

@keyframes blinker { 50% { opacity: 0.3; } }
.playing-now { animation: blinker 1s step-end infinite !important; border-radius: 50%; box-shadow: 0 0 6px rgba(198, 8, 12, 0.8); }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.inline-block { display: inline-block; }
.flex-row { display: flex; justify-content: space-between; align-items: center; }
.clearfix::after { content: ""; clear: both; display: table; }

/* ========================================================== */
/* --- 7. MODAL / INFO-POPUP (AJAX) ---                       */
/* ========================================================== */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; justify-content: center; align-items: center; }
.modal-content { background: #fff; padding: 0; border-radius: 8px; width: 90%; max-width: 320px; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.2); animation: fadeIn 0.3s; }
.modal-close { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; color: #666; text-decoration: none; font-weight: bold; line-height: 1; }
.modal-close:hover { color: #C6080C; }
@keyframes fadeIn { from {opacity:0; transform:translateY(-20px);} to {opacity:1; transform:translateY(0);} }

@media print {
    .left-nav, header, aside, .cart-actions, button, .hide-print, .hamburger-btn { display: none !important; }
    .wrapper { display: block; box-shadow: none; }
    main { padding: 0; }
}