/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .footer, .btn, .social-links {
        display: none !important;
    }
    
    .hero-section {
        padding: 1rem 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ===== ACCESSIBILITY ===== */
.btn:focus,
.nav-link:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid #000000;
    }
    
    .form-control, .form-select {
        border: 2px solid #000000;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== ADDRESS SUGGESTIONS (EINSATZGEBIET) ===== */
.address-suggestions-dropdown {
    top: 100%;
    left: 0;
    border-radius: 0 0 0.75rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.address-suggestion-item {
    padding: 0.5rem 0.75rem;
}

.address-suggestion-item .address-suggest-main {
    font-size: 0.9rem;
    font-weight: 600;
}

.address-suggestion-item .address-suggest-sub {
    font-size: 0.8rem;
}

.address-suggestion-item:hover,
.address-suggestion-item:focus {
    background-color: #f8f9fa;
}

/* ===== PRODUKTE (AFFILIATE) ===== */
.product-card .product-image {
    max-height: 220px;
    object-fit: contain;
}

.affiliate-disclaimer {
    background: var(--primary-lighter);
    border: 1px solid rgba(233, 30, 99, 0.25);
    border-left: 5px solid var(--primary-color);
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    padding: 0.85rem 1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.10);
}

.no-image-placeholder {
    min-height: 180px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--text-muted);
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 576px) {
    .product-card .product-image {
        max-height: 200px;
    }
}