.cookie-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(0,0,0,0.05);
}

.cookie-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content p {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.cookie-btn.accept {
    background: #C20000;
    color: white;
    box-shadow: 0 4px 15px rgba(194, 0, 0, 0.2);
}

.cookie-btn.accept:hover {
    background: #900000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 0, 0, 0.3);
}

.cookie-btn.reject {
    background: #f5f5f5;
    color: #666;
}

.cookie-btn.reject:hover {
    background: #e0e0e0;
    color: #333;
}

@media (max-width: 480px) {
    .cookie-box {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 20px;
    }
}