﻿.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease-out;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-accept {
    background: #e63619;
    color: white;
}

.btn-accept:hover {
    background: #A62917;
}

.btn-reject {
    background: black;
    color: white;
}

.btn-reject:hover {
    background: #262626;
}

.cookie-info {
    color: #bdc3c7;
    text-decoration: underline;
    font-size: 13px;
    margin-left: 10px;
}

.cookie-info:hover {
    color: white;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }

    .cookie-text h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .cookie-text p {
        font-size: 13px;
        line-height: 1.3;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 100px;
        max-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .cookie-info {
        width: 100%;
        text-align: center;
        margin: 8px 0 0 0;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 12px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        max-width: none;
        margin: 2px 0;
    }

    .cookie-info {
        margin-top: 10px;
    }
}
