/* Hauptstylesheet für AuftragsGlück - Kogao Style - MOBILE OPTIMIERT MIT SOCIAL SHARING */
/* Speichern unter: /MeineFirma/assets/css/style.css */

/* ========== Reset & Basis ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    /* Verhindert horizontales Scrollen */
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Mobile: kleinere Padding */
    width: 100%;
}

/* ========== Header mit Logo ========== */
.header-top {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -1px;
}

.logo-text .letter-a { color: #ff6b6b; }
.logo-text .letter-u { color: #4ecdc4; }
.logo-text .letter-f { color: #ffe66d; }
.logo-text .letter-t { color: #a8e6cf; }
.logo-text .letter-r { color: #ff8b94; }
.logo-text .letter-a2 { color: #ffd3b6; }
.logo-text .letter-g { color: #8fcaca; }
.logo-text .letter-s { color: #81c7db; }
.logo-text .letter-g2 { color: #b3a8d1; }
.logo-text .letter-l { color: #ffaaa5; }
.logo-text .letter-u2 { color: #8fcaca; }
.logo-text .letter-e { color: #ffe66d; }
.logo-text .letter-c { color: #a8e6cf; }
.logo-text .letter-k { color: #ff8b94; }

.tagline {
    font-size: 16px;
    color: #666;
    margin-left: 30px;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.user-icon {
    width: 40px;
    height: 40px;
    background: #87CEEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.btn-orange {
    background: #ff9800;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Touch-friendly */
    min-height: 44px;
    min-width: 44px;
    white-space: nowrap;
}

.btn-orange:hover {
    background: #f57c00;
}

/* ========== Such-Bereich ========== */
.search-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.search-container {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    min-width: 200px;
    /* Verhindert Zoom auf iOS */
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: #4A90E2;
}

/* GEÄNDERT: Blauer Border für erforderliche Felder */
.search-input:invalid,
.search-input[required]:invalid {
    border-color: #4A90E2;
}

.search-select {
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: white;
    min-width: 200px;
    cursor: pointer;
}

/* GEÄNDERT: Blauer Border für erforderliche Selects */
.search-select:invalid,
.search-select[required]:invalid {
    border-color: #4A90E2;
}

.btn-search {
    background: #4A90E2;
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    white-space: nowrap;
}

.btn-search:hover {
    background: #357ABD;
}

/* ========== Hauptinhalt Layout ========== */
.main-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.content-area {
    flex: 1;
    min-width: 0; /* Verhindert Overflow */
}

/* ========== Kategorien Sidebar ========== */
.categories-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.categories-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-section {
    margin-bottom: 25px;
}

.category-section h3 {
    color: #4A90E2;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
    /* Touch-friendly */
    min-height: 44px;
    display: flex;
    align-items: center;
}

.category-list a:hover {
    color: #4A90E2;
}

.link-all {
    color: #4A90E2;
    text-decoration: none;
    font-size: 14px;
    float: right;
}

/* ========== Listings-Bereich (AdBlocker-sicher) ========== */
.listings-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.btn-new {
    color: #4A90E2;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.btn-new:hover {
    text-decoration: underline;
}

/* ========== Galerie Anzeigen (gelber Bereich) ========== */
.gallery-placeholder {
    background: #FFD700;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.gallery-placeholder p {
    color: #666;
    font-size: 16px;
}

/* ========== Markt Cards (AdBlocker-sicher) ========== */
.markt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.markt-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
    transition: box-shadow 0.3s;
    cursor: pointer;
    /* Touch-friendly */
    min-height: 44px;
    position: relative;
}

.markt-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.markt-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.markt-titel {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.markt-kategorie {
    display: inline-block;
    background: #4A90E2;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.markt-beschreibung {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.markt-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.markt-badge {
    background: #E3F2FD;
    color: #4A90E2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.markt-ort {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.markt-datum {
    color: #888;
    font-size: 13px;
}

.markt-bilder {
    margin: 10px 0;
    display: flex;
    gap: 5px;
    overflow: hidden;
}

.markt-bilder img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.markt-link {
    color: #4A90E2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.markt-link:hover {
    text-decoration: underline;
}

/* ========== SOCIAL SHARING STYLES ========== */
.social-sharing {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.social-sharing h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

.share-btn-facebook {
    background: #1877F2;
}

.share-btn-facebook:hover {
    background: #166FE5;
    color: white;
}

.share-btn-twitter {
    background: #1DA1F2;
}

.share-btn-twitter:hover {
    background: #1A91DA;
    color: white;
}

.share-btn-whatsapp {
    background: #25D366;
}

.share-btn-whatsapp:hover {
    background: #20BD5A;
    color: white;
}

.share-btn-linkedin {
    background: #0A66C2;
}

.share-btn-linkedin:hover {
    background: #004182;
    color: white;
}

.share-btn-email {
    background: #EA4335;
}

.share-btn-email:hover {
    background: #D93025;
    color: white;
}

.share-btn-copy {
    background: #6c757d;
}

.share-btn-copy:hover {
    background: #545b62;
    color: white;
}

.share-btn-copy.copied {
    background: #28a745;
}

/* Mini Share-Buttons für Card-Ansicht */
.mini-share-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.markt-card:hover .mini-share-buttons {
    opacity: 1;
}

.mini-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-share-btn:hover {
    transform: scale(1.1);
}

.mini-share-facebook { background: #1877F2; }
.mini-share-whatsapp { background: #25D366; }
.mini-share-copy { background: #6c757d; }

/* ========== Items Grid (AdBlocker-sicher) ========== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.item-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.item-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.item-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.item-badge {
    background: #E3F2FD;
    color: #4A90E2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.item-location {
    color: #666;
    font-size: 14px;
}

.item-description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}

.item-link {
    color: #4A90E2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.item-link:hover {
    text-decoration: underline;
}

/* ========== Listing aufgeben Box ========== */
.create-listing-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.create-listing-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="40" y="60" width="120" height="100" fill="%23E3F2FD" rx="5"/><circle cx="100" cy="110" r="30" fill="%234A90E2"/><text x="100" y="190" text-anchor="middle" fill="%23666" font-size="14">ANZEIGE AUFGEBEN</text></svg>') no-repeat center;
    background-size: contain;
}

/* ========== Unternehmen Section ========== */
.company-section {
    margin-top: 30px;
}

.company-box {
    background: white;
    border-radius: 8px;
    padding: 25px;
}

/* ========== Footer ========== */
.footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-column a:hover {
    color: #4A90E2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

/* ========== Formulare ========== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px; /* Verhindert Zoom auf iOS */
    min-height: 44px; /* Touch-friendly */
}

.form-control:focus {
    outline: none;
    border-color: #4A90E2;
}

/* GEÄNDERT: Blauer Border für ungültige Felder */
.form-control:invalid,
.form-control[required]:invalid {
    border-color: #4A90E2;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* GEÄNDERT: Fehlermeldungen in Blau */
.field-error-message {
    color: #4A90E2;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

/* ========== TOAST NOTIFICATIONS FÜR SHARING ========== */
.share-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.share-toast.show {
    transform: translateX(0);
}

.share-toast.success {
    background: #28a745;
}

.share-toast.error {
    background: #4A90E2; /* GEÄNDERT: Blau statt Rot für Fehler */
}

/* ========== MOBILE OPTIMIERUNGEN ========== */

/* Tablet (iPad) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .main-layout {
        gap: 20px;
    }
    
    .markt-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* Große Smartphones (Landscape) */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    .sidebar {
        width: 100%;
        order: 2; /* Sidebar nach unten */
    }
    
    .content-area {
        order: 1; /* Content nach oben */
    }
    
    .search-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input,
    .search-select,
    .btn-search {
        width: 100%;
        min-width: auto;
    }
    
    .markt-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tagline {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .header-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .search-section {
        padding: 20px 0;
    }
    
    .listings-section {
        padding: 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Social Sharing Mobile */
    .share-buttons {
        justify-content: center;
        gap: 8px;
    }
    
    .share-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .social-sharing {
        padding: 15px;
        margin: 15px 0;
    }
    
    .mini-share-buttons {
        position: static;
        opacity: 1;
        justify-content: center;
        margin-top: 10px;
    }
    
    .share-toast {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        text-align: center;
    }
}

/* Mittlere Smartphones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .btn-orange {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .markt-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .markt-card,
    .item-card {
        padding: 15px;
    }
    
    .markt-titel {
        font-size: 16px;
    }
    
    .markt-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .item-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .listings-section {
        padding: 15px;
    }
    
    .search-section {
        padding: 15px 0;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .categories-box {
        padding: 15px;
    }
    
    .company-box {
        padding: 20px;
    }
    
    .gallery-placeholder {
        padding: 40px 15px;
    }
    
    /* Social Sharing Mobile */
    .share-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .share-btn {
        justify-content: center;
        width: 100%;
    }
    
    .social-sharing h3 {
        font-size: 16px;
        text-align: center;
    }
    
    .mini-share-buttons {
        gap: 8px;
    }
    
    .mini-share-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Kleine Smartphones */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .btn-orange {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .search-input,
    .search-select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-search {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .markt-card,
    .item-card {
        padding: 12px;
    }
    
    .markt-titel {
        font-size: 15px;
    }
    
    .markt-beschreibung,
    .item-description {
        font-size: 13px;
    }
    
    .listings-section {
        padding: 12px;
    }
    
    .categories-box {
        padding: 12px;
    }
    
    .header-top {
        padding: 10px 0;
    }
    
    .share-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .social-sharing {
        padding: 12px;
    }
}

/* Sehr kleine Geräte */
@media (max-width: 320px) {
    .logo-text {
        font-size: 20px;
    }
    
    .tagline {
        display: none; /* Auf sehr kleinen Geräten ausblenden */
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .btn-orange {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .markt-card,
    .item-card {
        padding: 10px;
    }
    
    .share-btn {
        padding: 8px;
        font-size: 11px;
        min-height: 40px;
    }
    
    .mini-share-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

/* ========== TOUCH & ACCESSIBILITY OPTIMIERUNGEN ========== */

/* Touch-friendly Links und Buttons */
@media (pointer: coarse) {
    .category-list a,
    .footer-column a,
    .markt-link,
    .item-link,
    .btn-new {
        min-height: 48px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    .btn-orange,
    .btn-search,
    .share-btn {
        min-height: 48px;
        padding: 12px 24px;
    }
    
    .search-input,
    .search-select,
    .form-control {
        min-height: 48px;
        padding: 12px 16px;
    }
    
    .mini-share-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Hover-Effekte auf Touch-Geräten reduzieren */
@media (hover: none) {
    .markt-card:hover,
    .item-card:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transform: none;
    }
    
    .share-btn:hover,
    .mini-share-btn:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Fokus-Styles für Tastaturnavigation */
.btn-orange:focus,
.btn-search:focus,
.search-input:focus,
.search-select:focus,
.form-control:focus,
.share-btn:focus,
.mini-share-btn:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* Optimierungen für Landscape-Modus auf Smartphones */
@media (max-height: 500px) and (orientation: landscape) {
    .header-top {
        padding: 8px 0;
    }
    
    .search-section {
        padding: 15px 0;
    }
    
    .gallery-placeholder {
        padding: 30px 20px;
    }
    
    .social-sharing {
        padding: 12px;
    }
    
    .share-buttons {
        gap: 6px;
    }
    
    .share-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 36px;
    }
}

/* ========== ANIMATIONEN FÜR SHARING ========== */
@keyframes shareSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.share-btn.success-animation {
    animation: shareSuccess 0.3s ease;
}

@keyframes toastSlideIn {
    from { transform: translateX(400px); }
    to { transform: translateX(0); }
}

@keyframes toastSlideOut {
    from { transform: translateX(0); }
    to { transform: translateX(400px); }
}

.share-toast.slide-in {
    animation: toastSlideIn 0.3s ease;
}

.share-toast.slide-out {
    animation: toastSlideOut 0.3s ease;
}

/* ========== PRINT STYLES (BONUS) ========== */
@media print {
    .social-sharing,
    .mini-share-buttons,
    .share-toast,
    .header-buttons,
    .btn-orange,
    .btn-search {
        display: none !important;
    }
    
    .markt-card,
    .item-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
}