/**
 * Cookie Banner Styles
 * DSGVO/TDDDG-konform - Florales Design
 */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fdfcfa 0%, #f8f6f1 50%, #f5f2eb 100%);
    color: #4a5548;
    padding: 0;
    z-index: 10000;
    box-shadow: 0 -8px 40px rgba(90, 115, 96, 0.15), 0 -2px 10px rgba(90, 115, 96, 0.08);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 1px solid rgba(90, 115, 96, 0.12);
    overflow: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Florale Dekoration */
.cookie-banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cookie-flora {
    position: absolute;
    width: 80px;
    height: 80px;
    color: #5a7360;
    opacity: 0.4;
}

.cookie-flora-left {
    left: 10px;
    bottom: -10px;
}

.cookie-flora-right {
    right: 10px;
    bottom: -10px;
}

/* Content */
.cookie-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #5a7360;
}

.cookie-banner-icon svg {
    width: 100%;
    height: 100%;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: normal;
    color: #3d4a3f;
    margin: 0 0 6px 0;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
    color: #5a6b5e;
}

.cookie-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #5a7360;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cookie-link:hover {
    color: #4a6350;
}

.cookie-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.cookie-link:hover svg {
    transform: translateX(3px);
}

/* Actions */
.cookie-banner-actions {
    flex-shrink: 0;
}

.cookie-btn-accept {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #5a7360 0%, #4a6350 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 115, 96, 0.25);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #4a6350 0%, #3d5343 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 115, 96, 0.35);
}

.cookie-btn-accept svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .cookie-banner-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-flora {
        width: 60px;
        height: 60px;
        opacity: 0.25;
    }

    .cookie-flora-left {
        left: 5px;
    }

    .cookie-flora-right {
        right: 5px;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-btn-accept {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 16px;
    }

    .cookie-flora {
        display: none;
    }
}
