
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    width: 100%;
    max-width: 1200px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.cookie-icon {
    font-size: 3rem;
    color: #c40e1d;
    background: rgba(196, 14, 29, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    animation: cookieFloat 3s ease-in-out infinite;
}

@keyframes cookieFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    font-family: 'Inter', sans-serif;
    color: #636e72;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Modern Buttons */
.btn-cookie-accept {
    background: #c40e1d;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(196, 14, 29, 0.2);
}

.btn-cookie-accept:hover {
    background: #a00b17;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 14, 29, 0.3);
}

.btn-cookie-decline {
    background: white;
    border: 2px solid #e9ecef;
    color: #636e72;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-decline:hover {
    border-color: #2d3436;
    color: #2d3436;
    background: #f8f9fa;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: left;
        padding: 25px;
    }

    .cookie-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}